fix: get membership
This commit is contained in:
parent
a4ba756dbc
commit
2d87c65bbc
|
@ -65,7 +65,7 @@ export const SupplierComponent = observer((props) => {
|
||||||
width: "5%",
|
width: "5%",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Saldo",
|
title: "Saldo di Supplier",
|
||||||
dataIndex: ["coa", "amount"],
|
dataIndex: ["coa", "amount"],
|
||||||
key: ["coa", "amount"],
|
key: ["coa", "amount"],
|
||||||
width: "20%",
|
width: "20%",
|
||||||
|
@ -75,6 +75,17 @@ export const SupplierComponent = observer((props) => {
|
||||||
currency: "IDR",
|
currency: "IDR",
|
||||||
}).format(text)
|
}).format(text)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Saldo di System",
|
||||||
|
dataIndex: ["coa_undistribute", "amount"],
|
||||||
|
key: ["coa_undistribute", "amount"],
|
||||||
|
width: "20%",
|
||||||
|
render: (text, record) =>
|
||||||
|
new Intl.NumberFormat("id-ID", {
|
||||||
|
style: "currency",
|
||||||
|
currency: "IDR",
|
||||||
|
}).format(text)
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Status",
|
title: "Status",
|
||||||
dataIndex: "status",
|
dataIndex: "status",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user