1. Create a new Invoice.
2. Call $invoice->invoiceId.
3. You get a string such as (var_dump output below):
string(6) "324319"
The problem with this is that the correct format is:
string(11) "00000324319"
This is evident if you attempt to call $invoice->get('324319') - it will fail
because no such invoice exists. Whereas, $invoice->get('00000324319') works.
Original issue reported on code.google.com by jspit...@gmail.com on 28 Dec 2013 at 10:30
Original issue reported on code.google.com by
jspit...@gmail.com
on 28 Dec 2013 at 10:30