Skip to content

Commit

Permalink
Send parcel references to the API when placing the order.
Browse files Browse the repository at this point in the history
  • Loading branch information
tbelliard committed Mar 22, 2019
1 parent b21a306 commit e3486e9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion controllers/admin/adminshipment.php
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,11 @@ public function ajaxProcessBookOffer()
$params['parcels'][] = array('description' => $parcel->description,
'value' => $parcel->value,
'currency' => $parcel->currency,
'country_of_origin' => $parcel->country_of_origin);
'country_of_origin' => $parcel->country_of_origin,
'shipper_reference' => $parcel->shipper_reference,
'recipient_reference' => $parcel->recipient_reference,
'customer_reference' => $parcel->customer_reference
);
}

// Ad valorem insurance
Expand Down

0 comments on commit e3486e9

Please sign in to comment.