Created
August 26, 2014 10:28
-
-
Save ArveSystad/f9d92f346bc97a58127f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| foreach (Shipment shipment in form.Shipments) | |
| { | |
| List<LineItem> items = GetSplitShipmentLineItems(shipment); | |
| // Calculate sales and shipping taxes per items | |
| foreach (LineItem item in items) | |
| [...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment