feat: add remark
This commit is contained in:
parent
fa244a6e82
commit
7f19b22dbb
2 changed files with 5 additions and 0 deletions
|
|
@ -64,6 +64,7 @@ type CreditNoteCreate = {
|
|||
quotationId: string;
|
||||
reason?: string;
|
||||
detail?: string;
|
||||
remark?: string;
|
||||
paybackType?: CreditNotePaybackType;
|
||||
paybackBank?: string;
|
||||
paybackAccount?: string;
|
||||
|
|
@ -74,6 +75,7 @@ type CreditNoteUpdate = {
|
|||
quotationId: string;
|
||||
reason?: string;
|
||||
detail?: string;
|
||||
remark?: string;
|
||||
paybackType?: CreditNotePaybackType;
|
||||
paybackBank?: string;
|
||||
paybackAccount?: string;
|
||||
|
|
@ -363,6 +365,7 @@ export class CreditNoteController extends Controller {
|
|||
data: {
|
||||
reason: body.reason,
|
||||
detail: body.detail,
|
||||
remark: body.remark,
|
||||
paybackType: body.paybackType,
|
||||
paybackBank: body.paybackBank,
|
||||
paybackAccount: body.paybackAccount,
|
||||
|
|
@ -479,6 +482,7 @@ export class CreditNoteController extends Controller {
|
|||
data: {
|
||||
reason: body.reason,
|
||||
detail: body.detail,
|
||||
remark: body.remark,
|
||||
paybackType: body.paybackType,
|
||||
paybackBank: body.paybackBank,
|
||||
paybackAccount: body.paybackAccount,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue