You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/accounting/index.html
+125-8Lines changed: 125 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3519,10 +3519,22 @@
3519
3519
},
3520
3520
"QuantityOnHand" : {
3521
3521
"type" : "number",
3522
-
"description" : "The quantity of the item on hand",
3522
+
"description" : "The quantity of the item on hand. This will be 0 if `QuantityOnBackOrder` is greater than 0.",
3523
3523
"format" : "double",
3524
3524
"x-is-money" : true
3525
3525
},
3526
+
"QuantityAvailable" : {
3527
+
"type" : "number",
3528
+
"description" : "The quantity of the item available. This is equal to `QuantityOnHand` - `QuantityOnBackOrder`. This value will be negative if `QuantityOnBackOrder` is greater than 0.",
3529
+
"format" : "double",
3530
+
"readOnly" : true
3531
+
},
3532
+
"QuantityOnBackOrder" : {
3533
+
"type" : "number",
3534
+
"description" : "The quantity of the item on backorder. This will be 0 if `QuantityOnHand` is greater than 0.",
3535
+
"format" : "double",
3536
+
"readOnly" : true
3537
+
},
3526
3538
"UpdatedDateUTC" : {
3527
3539
"type" : "string",
3528
3540
"description" : "Last modified date in UTC format",
Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
12380
+
</div>
12381
+
</div>
12382
+
</div>
12383
+
</div>
12384
+
</td>
12352
12385
</tr>
12353
12386
12354
12387
</table>
@@ -21503,9 +21536,10 @@ <h3>Usage and SDK Samples</h3>
Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
41338
+
</div>
41339
+
</div>
41340
+
</div>
41341
+
</div>
41342
+
</td>
41247
41343
</tr>
41248
41344
41249
41345
</table>
@@ -42942,6 +43038,7 @@ <h3>Usage and SDK Samples</h3>
42942
43038
const summarizeErrors = true;
42943
43039
const unitdp = 4;
42944
43040
const idempotencyKey = 'KEY_VALUE';
43041
+
const allowBackorders = true;
42945
43042
const dateValue = '2020-10-10'
42946
43043
const dueDateValue = '2020-10-28'
42947
43044
@@ -42973,7 +43070,7 @@ <h3>Usage and SDK Samples</h3>
Allows an invoice to be created even when one or more line items contain tracked inventory where the invoice quantity would cause the available quantity to go negative
0 commit comments