cancel
Showing results for 
Search instead for 
Did you mean: 

Does anyone have an eBridge implementation that extracts separate ship address Street1 and Street2

Does anyone have an eBridge implementation that extracts separate ship address Street1 and Street2

We use eBridge to create orders in our SAP Business One backend.  Our implementation is unable to extract separate values for shipping address street1 and street2.  As I understand it, Magento provides these values in an array:  street[0] and street[1].  However, eBridge claims they are unable to process the shipping_address street value like that (as an array).  I have a hard time believing that anyone else using ebridge accepts that they can't get discrete values for street1 and street2.

 

 I found an similar question on stack exchange and the solution looks something like

 

$street = expode('\n', $shipdata['shipping_address']['street']

$street1 = $street[0];

$street2 = $street[1];

 

So, my question is, is there anyone using an ebridge implementation that has solved this problem?