Skip to content

Commit

Permalink
chore: edit total quantity label
Browse files Browse the repository at this point in the history
  • Loading branch information
nextchamp-saqib authored Nov 25, 2021
1 parent 52c61d8 commit 19c62a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erpnext/selling/page/point_of_sale/pos_item_cart.js
Original file line number Diff line number Diff line change
Expand Up @@ -500,11 +500,11 @@ erpnext.PointOfSale.ItemCart = class {
});

this.$totals_section.find('.item-qty-total-container').html(
`<div>${__('Total Item Qty')}</div><div>${total_item_qty}</div>`
`<div>${__('Total Quantity')}</div><div>${total_item_qty}</div>`
);

this.$numpad_section.find('.numpad-item-qty-total').html(
`<div>${__('Total Item Qty')}: <span>${total_item_qty}</span></div>`
`<div>${__('Total Quantity')}: <span>${total_item_qty}</span></div>`
);
}

Expand Down

0 comments on commit 19c62a2

Please sign in to comment.