From 5ed84c1ee9740bedfa9a6fb79b44c812123032e2 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Wed, 29 Jun 2022 11:07:05 +0800 Subject: [PATCH] update air shipment product list --- .../ListAirShipmentPriceLogic.php | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php b/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php index 8a15dc5c..7cb86fee 100644 --- a/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php +++ b/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php @@ -136,6 +136,39 @@ class ListAirShipmentPriceLogic extends AbstractControllerLogic 'tax' => '', ]) ], + [ + 'details' => json_encode([ + 'name' => 'TV 30" - 36"', + 'pricePerKg' => 28, + 'pricePerPcs' => '', + 'isProhibited' => '', + 'hasGram' => 'true', + 'hasDimensionCharges' => true, + 'tax' => 500, + ]) + ], + [ + 'details' => json_encode([ + 'name' => 'TV 37" - 42"', + 'pricePerKg' => 28, + 'pricePerPcs' => '', + 'isProhibited' => '', + 'hasGram' => 'true', + 'hasDimensionCharges' => true, + 'tax' => 1000, + ]) + ], + [ + 'details' => json_encode([ + 'name' => 'TV 43"+"', + 'pricePerKg' => 28, + 'pricePerPcs' => '', + 'isProhibited' => '', + 'hasGram' => 'true', + 'hasDimensionCharges' => true, + 'tax' => 1500, + ]) + ] ); return $this->collectionResponse(AirShipmentItemPriceResource::collection($price));