billing fix up

This commit is contained in:
omair saleh
2022-09-20 16:46:03 +08:00
parent 37c3f95eda
commit e0356599bb
2 changed files with 2 additions and 2 deletions
@@ -217,7 +217,7 @@ class CreateShippingInvoiceTransactionLogic extends AbstractControllerLogic
);
$this->createsTransactionDetail->execute($invoice_transaction, $object_detail);
dd($over_weight_cbm);
if ($over_weight_cbm > 0) {
$object_detail = new TransactionDetailObject(
'OVER_WEIGHT_CHARGES',
@@ -8,7 +8,7 @@ final class TransactionDetailType {
public const OVER_WEIGHT_CHARGES = 'Overweight Charges';
public const MIN_CBM_CHARGES = 'Overweight Charges';
public const MIN_CBM_CHARGES = 'Minimum Charge for 0.3 CBM Per Container';
public const CUSTOM_CHARGES = 'Custom charges';
}