Commit a26d5168 by tdgiang

upadte build

parent 0ac19812
//const root = 'http://petrolpay.tasvietnam.vn:9985/api' //const root = 'http://petrolpay.tasvietnam.vn:9985/api'
//const root = 'https://apigw.petropos.vn/api' //const root = 'https://apigw.petropos.vn/api'
//const root = 'http://dcvf.tasvietnam.vn:9986/api' //const root = 'http://dcvf.tasvietnam.vn:9986/api'
//const root = 'https://apigw-v2.petropos.vn/api' const root = 'https://apigw-v2.petropos.vn/api'
//v2 //v2
//const root = 'https://apitest-v2.petropos.vn/api' //const root = 'https://apitest-v2.petropos.vn/api'
//v3 //v3
const root = 'https://apitest.petropos.vn/api' //const root = 'https://apitest.petropos.vn/api'
//const root = 'http://petropos-api.tasvietnam.vn/api' //const root = 'http://petropos-api.tasvietnam.vn/api'
......
...@@ -362,7 +362,8 @@ ...@@ -362,7 +362,8 @@
"ERROR_OTP_IS_EXPIRED":"OTP đã hết hạn", "ERROR_OTP_IS_EXPIRED":"OTP đã hết hạn",
"ERROR_QUEUE_CODE_EXIST":"Mã Queue đã tồn tại", "ERROR_QUEUE_CODE_EXIST":"Mã Queue đã tồn tại",
"ERROR_NAME_PACKAGE_IS_EXITS":"Tên gói đã tồn tại", "ERROR_NAME_PACKAGE_IS_EXITS":"Tên gói đã tồn tại",
"ERROR_NAME_FUNCTION_IS_EXITS":"Tên chức năng đã tồn tại" "ERROR_NAME_FUNCTION_IS_EXITS":"Tên chức năng đã tồn tại",
"ERROR_USER_GROUP_EXISTS_DATA":"Nhóm quyền đã có dữ liệu"
} }
...@@ -353,16 +353,12 @@ const SimpleForm = (props) => { ...@@ -353,16 +353,12 @@ const SimpleForm = (props) => {
<Grid xs={6} sm={6} item> <Grid xs={6} sm={6} item>
<SelectValidator <SelectValidator
variant={'outlined'} variant={'outlined'}
label={'Đơn vị cung cấp *'} label={'Đơn vị cung cấp'}
className="mb-4 w-full" className="mb-4 w-full"
value={supplier_code || ''} value={supplier_code || ''}
displayEmpty displayEmpty
name="supplier_code" name="supplier_code"
onChange={handleChange} onChange={handleChange}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
> >
{listDrop.map((e) => ( {listDrop.map((e) => (
<MenuItem value={e.id}> <MenuItem value={e.id}>
...@@ -378,15 +374,11 @@ const SimpleForm = (props) => { ...@@ -378,15 +374,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Mã số thuế hoá đơn *" label="Mã số thuế hoá đơn"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_tax_code" name="hddt_tax_code"
value={hddt_tax_code || ''} value={hddt_tax_code || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -396,15 +388,11 @@ const SimpleForm = (props) => { ...@@ -396,15 +388,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Tài khoản hoá đơn *" label="Tài khoản hoá đơn"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_username" name="hddt_username"
value={hddt_username || ''} value={hddt_username || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -414,15 +402,11 @@ const SimpleForm = (props) => { ...@@ -414,15 +402,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Mật khẩu hoá đơn *" label="Mật khẩu hoá đơn"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_password" name="hddt_password"
value={hddt_password || ''} value={hddt_password || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -432,15 +416,11 @@ const SimpleForm = (props) => { ...@@ -432,15 +416,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Chữ ký hoá đơn *" label="Chữ ký hoá đơn"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_character" name="hddt_character"
value={hddt_character || ''} value={hddt_character || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -450,15 +430,11 @@ const SimpleForm = (props) => { ...@@ -450,15 +430,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Loại chữ ký số *" label="Loại chữ ký số"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_sign_code" name="hddt_sign_code"
value={hddt_sign_code || ''} value={hddt_sign_code || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -468,15 +444,11 @@ const SimpleForm = (props) => { ...@@ -468,15 +444,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Tài khoản Admin hoá đơn điện tử *" label="Tài khoản Admin hoá đơn điện tử"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_account" name="hddt_account"
value={hddt_account || ''} value={hddt_account || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -486,15 +458,11 @@ const SimpleForm = (props) => { ...@@ -486,15 +458,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Mật khẩu Admin hoá đơn điện tử *" label="Mật khẩu Admin hoá đơn điện tử"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_acpass" name="hddt_acpass"
value={hddt_acpass || ''} value={hddt_acpass || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -504,15 +472,11 @@ const SimpleForm = (props) => { ...@@ -504,15 +472,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Đường dẫn api *" label="Đường dẫn api"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="hddt_base_url" name="hddt_base_url"
value={hddt_base_url || ''} value={hddt_base_url || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -522,15 +486,11 @@ const SimpleForm = (props) => { ...@@ -522,15 +486,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Mẫu hoá đơn *" label="Mẫu hoá đơn"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="inv_pattern" name="inv_pattern"
value={inv_pattern || ''} value={inv_pattern || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -540,15 +500,11 @@ const SimpleForm = (props) => { ...@@ -540,15 +500,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Ký hiệu hoá đơn *" label="Ký hiệu hoá đơn"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="inv_serial" name="inv_serial"
value={inv_serial || ''} value={inv_serial || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
...@@ -582,16 +538,11 @@ const SimpleForm = (props) => { ...@@ -582,16 +538,11 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Độ trễ phát hành hoá đơn *" label="Độ trễ phát hành hoá đơn"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="publish_invoce_time" name="publish_invoce_time"
value={publish_invoce_time || ''} value={publish_invoce_time || ''}
validators={['required', 'isNumber']}
errorMessages={[
'Không được để trống trường này',
'Trường này bắt buộc phải nhập số',
]}
/> />
</Grid> </Grid>
) : null} ) : null}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment