feat: add remark field to credit note form and payload
This commit is contained in:
parent
283c08ae2e
commit
7d1f32a5cb
2 changed files with 18 additions and 13 deletions
|
|
@ -5,6 +5,7 @@ import { CreatedBy } from '../types';
|
|||
export type CreditNotePayload = {
|
||||
quotationId: string;
|
||||
requestWorkId: string[];
|
||||
remark?: string;
|
||||
reason: string;
|
||||
detail: string;
|
||||
paybackType: 'BankTransfer' | 'Cash';
|
||||
|
|
@ -21,6 +22,7 @@ export type CreditNote = {
|
|||
quotationId: string;
|
||||
quotation: QuotationFull;
|
||||
requestWork: RequestWork[];
|
||||
remark?: string;
|
||||
reason: string;
|
||||
detail: string;
|
||||
paybackType: 'BankTransfer' | 'Cash';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue