Commit 03e4f965 by tdgiang

fix bug

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