mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
fix over weight minimum charge
This commit is contained in:
-1
@@ -171,7 +171,6 @@ class CreateShippingInvoiceTransactionLogic extends AbstractControllerLogic
|
||||
});
|
||||
});
|
||||
|
||||
dd($totalContainerCbm);
|
||||
$minimum_charge = $minimum_cbm - $totalContainerCbm;
|
||||
$minimum_charge = ($minimum_charge < 0) ? 0 : $minimum_charge;
|
||||
$minimum_charge = $noMinimumCharge ? 0 : $minimum_charge;
|
||||
|
||||
@@ -47,7 +47,6 @@ class UpdateTransactionStatusLogic extends AbstractControllerLogic
|
||||
|
||||
public function logic(Request $request) : JsonResponse
|
||||
{
|
||||
dd('cancelled');
|
||||
$approvalArray = [
|
||||
'approve' => ApprovalStatus::APPROVED,
|
||||
'expire' => ApprovalStatus::EXPIRED,
|
||||
|
||||
Reference in New Issue
Block a user