feat: add more field
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
This commit is contained in:
parent
5278f4952e
commit
35fd79634a
6 changed files with 133 additions and 39 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue