Skip to content

Commit a72e5b3

Browse files
committed
updates
1 parent ed2c989 commit a72e5b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/clear_books/actions/create-purchase-document/create-purchase-document.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ export default {
6363
const lineItems = [];
6464
for (let i = 1; i <= this.numLineItems; i++) {
6565
lineItems.push({
66-
unitPrice: this[`line_items_${i}_unit_price`],
67-
quantity: this[`line_items_${i}_quantity`],
68-
description: this[`line_items_${i}_description`],
66+
unitPrice: this[`line_item_${i}_unit_price`],
67+
quantity: this[`line_item_${i}_quantity`],
68+
description: this[`line_item_${i}_description`],
6969
});
7070
}
7171

0 commit comments

Comments
 (0)