feat: add basic form customer

This commit is contained in:
Methapon2001 2024-08-05 15:09:36 +07:00
parent 0a745885ee
commit 6bb4256dec
8 changed files with 408 additions and 80 deletions

View file

@ -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',
},
},
};