Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jiloysss committed Feb 6, 2019
1 parent b3ba7b0 commit 547c87a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/store/PosStore/ShiftStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ export const Shift = types
return self.total_sales;
},
get totalNetSales() {
let totalNetSales = (self.total_sales - self.total_discounts) - self.commissions;
let totalNetSales =
self.total_sales - self.total_discounts - self.commissions;
return totalNetSales;
},
get computeShort() {
Expand Down

0 comments on commit 547c87a

Please sign in to comment.