feat: add more field
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s

This commit is contained in:
Methapon2001 2025-03-06 17:33:09 +07:00
parent 5278f4952e
commit 35fd79634a
6 changed files with 133 additions and 39 deletions

View file

@ -5,8 +5,10 @@ import { CustomerBranch } from '../customer';
import { PaymentDataStatus } from '../payment/types';
export type ReportQuotation = {
customerBranch: CustomerBranch;
updatedAt: Date | null;
createdAt: Date | null;
amount: number;
status: QuotationStatus;
code: string;
};
@ -20,7 +22,9 @@ export enum Status {
// use with Invoice and Receipt
export type Report = {
customerBranch: CustomerBranch;
createdAt: Date | null;
amount: number;
status: Status;
code: string;
};