Skip to content

Commit

Permalink
AD.CUST_BOR_ORDER_ID length fix
Browse files Browse the repository at this point in the history
  • Loading branch information
veneliniliev committed Jul 14, 2021
1 parent 5656d17 commit 32ebcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SaleRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ private function generateAdCustBorOrderId()
$orderString = str_ireplace(';', '', $orderString);

return [
'AD.CUST_BOR_ORDER_ID' => mb_substr($orderString, 0, 16),
'AD.CUST_BOR_ORDER_ID' => mb_substr($orderString, 0, 22),
'ADDENDUM' => 'AD,TD',
];
}
Expand Down

0 comments on commit 32ebcbd

Please sign in to comment.