We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed2c989 commit a72e5b3Copy full SHA for a72e5b3
components/clear_books/actions/create-purchase-document/create-purchase-document.mjs
@@ -63,9 +63,9 @@ export default {
63
const lineItems = [];
64
for (let i = 1; i <= this.numLineItems; i++) {
65
lineItems.push({
66
- unitPrice: this[`line_items_${i}_unit_price`],
67
- quantity: this[`line_items_${i}_quantity`],
68
- description: this[`line_items_${i}_description`],
+ unitPrice: this[`line_item_${i}_unit_price`],
+ quantity: this[`line_item_${i}_quantity`],
+ description: this[`line_item_${i}_description`],
69
});
70
}
71
0 commit comments