Commit d4e780bb by tdgiang

update code

parent 58add8ae
......@@ -27,32 +27,26 @@ const SimpleForm = (props) => {
const handleSubmit = async (event) => {
const newValue = trimObject(state)
console.log('newValue', newValue)
console.log('isStore', isStore)
console.log('invoice', invoice)
console.log('payment', payment)
//props.showLoading()
props.showLoading()
const res = await createMerchant({
...newValue,
is_admin_store: true,
is_connect_hddt: true,
is_connect_qr: true,
is_admin_store: isStore,
is_connect_hddt: invoice,
is_connect_qr: payment,
})
//props.hideLoading()
console.log('res', res)
// if (res.data.code == 200) {
// history.push('/merchant')
// if (res.data.code == 200) {
// toast.success('Tạo pháp nhân thành công!', {
// theme: 'colored',
// })
// }
// } else {
// toast.error(t(res.data.error), {
// theme: 'colored',
// })
// }
props.hideLoading()
if (res.data.code == 200) {
history.push('/merchant')
if (res.data.code == 200) {
toast.success('Tạo pháp nhân thành công!', {
theme: 'colored',
})
}
} else {
toast.error(t(res.data.error), {
theme: 'colored',
})
}
}
const handleChange = (event) => {
......@@ -64,7 +58,7 @@ const SimpleForm = (props) => {
}
const {
merchan_name,
merchant_name,
tax_code,
address,
email,
......@@ -105,8 +99,8 @@ const SimpleForm = (props) => {
label="Tên pháp nhân *"
onChange={handleChange}
type="text"
name="merchan_name"
value={merchan_name || ''}
name="merchant_name"
value={merchant_name || ''}
validators={['required']}
errorMessages={[
'Không được để trống trường này',
......
......@@ -30,7 +30,7 @@ const ToolNotificate = (props) => {
const handeChangeActive = async (id, status_id) => {
props.showLoading()
const res = await changeStatusMerchant({ id, status_id })
const res = await changeStatusMerchant({ idGuid: id, status_id })
props.hideLoading()
if (res.data.code == 200) {
getData()
......
......@@ -210,14 +210,14 @@ function TableList(props) {
</Select>
</TableCell>
<TableCell>
{checkRole(user, '/function/delete') ? (
{checkRole(user, '/merchant/delete') ? (
<Tooltip title="Xoá">
<IconButton
onClick={() => {
setSelected({
...row,
title: 'Xóa chức năng',
content: `Bạn có muốn xóa chức năng ${row.name} hay không?`,
title: 'Xóa pháp nhân',
content: `Bạn có muốn xóa pháp nhân ${row.merchant_name} hay không?`,
})
setOpen(true)
}}
......@@ -230,13 +230,13 @@ function TableList(props) {
</IconButton>
</Tooltip>
) : null}
{checkRole(user, '/function/update') ? (
{checkRole(user, '/merchant/update') ? (
<Tooltip title="Cập nhật">
<IconButton
onClick={() => {
history.push({
pathname:
'/function/update',
'/merchant/update',
state: row.id,
})
}}
......
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