Commit d4e780bb by tdgiang

update code

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