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
query: "select * from Account where Classification = 'Liability' AND AccountSubType = 'AccountsPayable'",
24
+
},
25
+
});
26
+
returnqueryResponse.Account.map(({
27
+
Id, Name,
28
+
})=>({
29
+
value: Id,
30
+
label: Name,
31
+
}));
32
+
},
24
33
},
25
34
vendorRefValue: {
26
35
propDefinition: [
@@ -102,7 +111,7 @@ export default {
102
111
props.lineItems={
103
112
type: "string[]",
104
113
label: "Line Items",
105
-
description: "Line items of a purchase order. Set DetailType to `ItemBasedExpenseLineDetail` or `AccountBasedExpenseLineDetail`. Example: `{ \"DetailType\": \"ItemBasedExpenseLineDetail\", \"Amount\": 100.0, \"ItemBasedExpenseLineDetail\": { \"ItemRef\": { \"name\": \"Services\", \"value\": \"1\" } } }` [See the documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/purchaseorder#create-a-purchaseorder) for more information.",
114
+
description: "Line items of a purchase order. DetailType is `ItemBasedExpenseLineDetail`. Example: `{ \"DetailType\": \"ItemBasedExpenseLineDetail\", \"Amount\": 100.0, \"ItemBasedExpenseLineDetail\": { \"ItemRef\": { \"name\": \"Services\", \"value\": \"1\" } } }` [See the documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/purchaseorder#create-a-purchaseorder) for more information.",
thrownewConfigurationError(`Line Item at index ${index+1} has invalid DetailType '${line.DetailType}'. Must be 'ItemBasedExpenseLineDetail' or 'AccountBasedExpenseLineDetail'`);
0 commit comments