feat: show quotation / invoice code on enter
This commit is contained in:
parent
850782a44d
commit
f41fc7656c
2 changed files with 32 additions and 10 deletions
|
|
@ -4,6 +4,8 @@ import { CreatedBy } from '../types';
|
|||
export type Invoice = {
|
||||
id: string;
|
||||
|
||||
code: string;
|
||||
|
||||
amount: number;
|
||||
|
||||
installements: QuotationFull['paySplit'];
|
||||
|
|
@ -23,6 +25,7 @@ export type InvoicePayload = {
|
|||
};
|
||||
|
||||
export type Payment = {
|
||||
code?: string;
|
||||
paymentStatus: string;
|
||||
date: Date;
|
||||
amount: number;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue