Skip to content

Commit

Permalink
Merge pull request #11973 from transcom/B-18480
Browse files Browse the repository at this point in the history
B-18480
  • Loading branch information
deandreJones authored Feb 9, 2024
2 parents d34dafa + 0d79a83 commit 72cc4e4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/pages/Office/ReviewBillableWeight/ReviewBillableWeight.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,16 @@ export default function ReviewBillableWeight() {
departedDate={selectedShipment.actualPickupDate}
pickupAddress={selectedShipment.pickupAddress}
destinationAddress={selectedShipment.destinationAddress}
estimatedWeight={selectedShipment.primeEstimatedWeight}
primeActualWeight={selectedShipment.primeActualWeight}
estimatedWeight={
selectedShipment.shipmentType !== SHIPMENT_OPTIONS.PPM
? selectedShipment.primeEstimatedWeight
: selectedShipment.ppmShipment.estimatedWeight
}
primeActualWeight={
selectedShipment.shipmentType !== SHIPMENT_OPTIONS.PPM
? selectedShipment.primeActualWeight
: weightRequested
}
originalWeight={selectedShipment.primeActualWeight}
adjustedWeight={selectedShipment.billableWeightCap}
reweighRemarks={selectedShipment?.reweigh?.verificationReason}
Expand Down

0 comments on commit 72cc4e4

Please sign in to comment.