feat: add status & opened alert in credit & vendor.

This commit is contained in:
elforjani13
2021-12-06 16:28:42 +02:00
parent 2a48d9be51
commit ac99a6ca75
25 changed files with 567 additions and 222 deletions

View File

@@ -41,7 +41,7 @@ function RefundCreditNoteForm({
// Handles the form submit.
const handleFormSubmit = (values, { setSubmitting, setFieldError }) => {
const form = {
...omit(values, ['currency_code', 'formatted_amount']),
...omit(values, ['currency_code', 'credits_remaining']),
};
// Handle request response success.

View File

@@ -31,8 +31,8 @@ function RefundCreditNoteFormProvider({ creditNoteId, dialogName, ...props }) {
// State provider.
const provider = {
creditNote: {
...pick(creditNote, ['id', 'formatted_amount', 'currency_code']),
amount: creditNote.formatted_amount,
...pick(creditNote, ['id', 'credits_remaining', 'currency_code']),
amount: creditNote.credits_remaining,
},
accounts,
dialogName,