mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 15:25:46 +00:00
refactor(FE): Remove CN and PPN columns and bold receivables
This commit is contained in:
@@ -470,7 +470,11 @@ const CustomerPaymentTab = () => {
|
||||
cell: (props) => {
|
||||
const value = props.row.original.accounts_receivable;
|
||||
return (
|
||||
<div className={`text-right ${value < 0 ? 'text-error' : ''}`}>
|
||||
<div
|
||||
className={`text-right font-semibold ${
|
||||
value < 0 ? 'text-error' : ''
|
||||
}`}
|
||||
>
|
||||
{formatCurrency(value)}
|
||||
</div>
|
||||
);
|
||||
@@ -728,7 +732,6 @@ const CustomerPaymentTab = () => {
|
||||
total_initial_amount: 0,
|
||||
total_credit_note: 0,
|
||||
total_final_amount: 0,
|
||||
total_ppn: 0,
|
||||
total_grand_amount: 0,
|
||||
total_payment: 0,
|
||||
total_accounts_receivable: 0,
|
||||
|
||||
Reference in New Issue
Block a user