Commit 03e4f965 by tdgiang

fix bug

parent 9d88a399
...@@ -360,6 +360,9 @@ ...@@ -360,6 +360,9 @@
"ERROR_MERCHAN_STORE_CODE":"Mã cây xăng đã tồn tại", "ERROR_MERCHAN_STORE_CODE":"Mã cây xăng đã tồn tại",
"ERROR_IMAGE_NOT_VALID":"Ảnh không đúng dịnh dạng", "ERROR_IMAGE_NOT_VALID":"Ảnh không đúng dịnh dạng",
"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_FUNCTION_IS_EXITS":"Tên chức năng đã tồn tại"
} }
...@@ -43,12 +43,13 @@ const SimpleForm = (props) => { ...@@ -43,12 +43,13 @@ const SimpleForm = (props) => {
status: 1, status: 1,
outstand: 1, outstand: 1,
func_id_add: listChecked, func_id_add: listChecked,
price: newValue.price != '' ? null : newValue.price,
}) })
props.hideLoading() props.hideLoading()
if (res.data.code == 200) { if (res.data.code == 200) {
history.push('/package') history.push('/package')
if (res.data.code == 200) { if (res.data.code == 200) {
toast.success('Tạo chức năng gói thành công!', { toast.success('Thêm mới gói thành công!', {
theme: 'colored', theme: 'colored',
}) })
} }
...@@ -125,19 +126,18 @@ const SimpleForm = (props) => { ...@@ -125,19 +126,18 @@ const SimpleForm = (props) => {
]} ]}
/> />
</Grid> </Grid>
<Grid item lg={6} md={6} sm={12} xs={12}> <Grid item lg={6} md={6} sm={12} xs={12}>
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Đơn giá *" label="Đơn giá"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="price" name="price"
value={toPriceVnd(price) || ''} value={toPriceVndInput(price) || ''}
validators={['required']} validators={['isNumber']}
errorMessages={[ errorMessages={['Trường này phải nhập số ']}
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
<Grid row container item xs={12} sm={12}> <Grid row container item xs={12} sm={12}>
......
...@@ -65,12 +65,13 @@ const SimpleForm = (props) => { ...@@ -65,12 +65,13 @@ const SimpleForm = (props) => {
const res = await updatePackage({ const res = await updatePackage({
...newValue, ...newValue,
func_id_add: listChecked, func_id_add: listChecked,
price: newValue.price != '' ? null : newValue.price,
}) })
props.hideLoading() props.hideLoading()
if (res.data.code == 200) { if (res.data.code == 200) {
history.push('/package') history.push('/package')
if (res.data.code == 200) { if (res.data.code == 200) {
toast.success('Cập nhật chức năng thành công!', { toast.success('Cập nhật gói thành công!', {
theme: 'colored', theme: 'colored',
}) })
} }
...@@ -151,15 +152,13 @@ const SimpleForm = (props) => { ...@@ -151,15 +152,13 @@ const SimpleForm = (props) => {
<TextValidator <TextValidator
variant="outlined" variant="outlined"
className="mb-4 w-full" className="mb-4 w-full"
label="Đơn giá *" label="Đơn giá"
onChange={handleChange} onChange={handleChange}
type="text" type="text"
name="price" name="price"
value={toPriceVnd(price) || ''} value={toPriceVndInput(price) || ''}
validators={['required']} validators={['isNumber']}
errorMessages={[ errorMessages={['Trường này phải nhập số ']}
'Không được để trống trường này',
]}
/> />
</Grid> </Grid>
<Grid row container item xs={12} sm={12}> <Grid row container item xs={12} sm={12}>
......
...@@ -218,8 +218,8 @@ function TableList(props) { ...@@ -218,8 +218,8 @@ function TableList(props) {
onClick={() => { onClick={() => {
setSelected({ setSelected({
...row, ...row,
title: 'Xóa chức năng', title: 'Xóa sản phẩm',
content: `Bạn có muốn xóa chức năng ${row.func_name} hay không?`, content: `Bạn có muốn xóa sản phẩm ${row.cons_name} hay không?`,
}) })
setOpen(true) setOpen(true)
}} }}
......
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