feat: show quotation / invoice code on enter

This commit is contained in:
Methapon Metanipat 2024-11-07 15:32:57 +07:00
parent 850782a44d
commit f41fc7656c
2 changed files with 32 additions and 10 deletions

View file

@ -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;