feat: add basic form customer
This commit is contained in:
parent
0a745885ee
commit
6bb4256dec
8 changed files with 408 additions and 80 deletions
|
|
@ -12,6 +12,7 @@ import otherDocument from './other-document';
|
|||
import productService from './product-service';
|
||||
import alertDialog from './alert-dialog';
|
||||
import bank from './bank';
|
||||
|
||||
export default {
|
||||
ok: 'Confirm',
|
||||
agree: 'Ok',
|
||||
|
|
@ -87,4 +88,28 @@ export default {
|
|||
...productService,
|
||||
...alertDialog,
|
||||
...bank,
|
||||
|
||||
form: {
|
||||
title: {
|
||||
create: 'Create {name}',
|
||||
edit: 'Edit {name}',
|
||||
},
|
||||
error: {
|
||||
required: 'This field is required.',
|
||||
invalid: 'Invalid value.',
|
||||
invalidCustomeMessage: 'Invalid value. {msg}',
|
||||
},
|
||||
},
|
||||
customer: {
|
||||
form: {
|
||||
group: {
|
||||
basicInfo: 'Basic Information',
|
||||
},
|
||||
registeredBranch: 'Registered Branch',
|
||||
customerName: 'Company Name',
|
||||
customerNameEN: 'Company Name (EN)',
|
||||
personName: 'Customer Name',
|
||||
taxIdentificationNumber: 'Tax Identification Number',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue