asv-hlps 1.4.62 → 1.4.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ const unitPriceByClientCat = (product, client, speUnitPrice = 0, addDiscount = f
8
8
  return speUnitPrice;
9
9
  }
10
10
  // const store = await getCustomRepository(ProductStoreRepository).getOneStoreByParams({storeName: 'cpa', productId: product.id})
11
- if (product.stores[0].discountRate && addDiscount) {
11
+ if ((product === null || product === void 0 ? void 0 : product.stores[0].discountRate) && addDiscount) {
12
12
  return Math.ceil(product.stores[0].salePrice) - Math.ceil((0, utils_1.calculPercent)(product.stores[0].salePrice, product.stores[0].discountRate));
13
13
  }
14
14
  const clientCoef = !client ? 1 : (0, user_1.userCoef)(client);
@@ -10,6 +10,9 @@ const getNbProductsOnSale = (sale) => {
10
10
  exports.getNbProductsOnSale = getNbProductsOnSale;
11
11
  const getTotalTvaOnSale = (sale, dlvr = false) => {
12
12
  return sale.saleProducts.reduce((prev, curr) => {
13
+ if (curr.unitPrice === 0) {
14
+ return 0;
15
+ }
13
16
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : (0, product_1.unitPriceByClientCat)(curr.product, sale.client, curr.speUnitPrice);
14
17
  return !dlvr
15
18
  ? Math.ceil(prev + unitPrice * (+curr.tva / 100) * +curr.qtityOdr)
@@ -21,6 +24,9 @@ const getTotalTvaOnSale = (sale, dlvr = false) => {
21
24
  exports.getTotalTvaOnSale = getTotalTvaOnSale;
22
25
  const getSubTotalAmountOnSale = (sale, dlvr = false) => {
23
26
  return sale.saleProducts.reduce((prev, curr) => {
27
+ if (curr.unitPrice === 0) {
28
+ return 0;
29
+ }
24
30
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : (0, product_1.unitPriceByClientCat)(curr.product, sale.client, curr.speUnitPrice);
25
31
  return !dlvr ? Math.ceil(prev + unitPrice * +curr.qtityOdr) : Math.ceil(prev + unitPrice * +curr.qtityDlvr);
26
32
  }, 0);
@@ -28,6 +34,9 @@ const getSubTotalAmountOnSale = (sale, dlvr = false) => {
28
34
  exports.getSubTotalAmountOnSale = getSubTotalAmountOnSale;
29
35
  const getSubTotalAmountBackOnSale = (sale) => {
30
36
  return sale.saleProducts.reduce((prev, curr) => {
37
+ if (curr.unitPrice === 0) {
38
+ return 0;
39
+ }
31
40
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : (0, product_1.unitPriceByClientCat)(curr.product, sale.client, curr.speUnitPrice);
32
41
  return Math.ceil(prev + unitPrice * +curr.qtityBack);
33
42
  }, 0);
@@ -35,6 +44,9 @@ const getSubTotalAmountBackOnSale = (sale) => {
35
44
  exports.getSubTotalAmountBackOnSale = getSubTotalAmountBackOnSale;
36
45
  const getTotalAmountWithoutTvaOnSale = (sale, dlvr = false) => {
37
46
  return sale.saleProducts.reduce((prev, curr) => {
47
+ if (curr.unitPrice === 0) {
48
+ return 0;
49
+ }
38
50
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : (0, product_1.unitPriceByClientCat)(curr.product, sale.client, curr.speUnitPrice);
39
51
  return !dlvr ? Math.ceil(prev + unitPrice * +curr.qtityOdr) : Math.ceil(prev + unitPrice * +curr.qtityDlvr);
40
52
  }, 0);
@@ -42,6 +54,9 @@ const getTotalAmountWithoutTvaOnSale = (sale, dlvr = false) => {
42
54
  exports.getTotalAmountWithoutTvaOnSale = getTotalAmountWithoutTvaOnSale;
43
55
  const getTotalAmountWithoutTvaBackOnSale = (sale) => {
44
56
  return sale.saleProducts.reduce((prev, curr) => {
57
+ if (curr.unitPrice === 0) {
58
+ return 0;
59
+ }
45
60
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : (0, product_1.unitPriceByClientCat)(curr.product, sale.client, curr.speUnitPrice);
46
61
  return Math.ceil(prev + unitPrice * +curr.qtityBack);
47
62
  }, 0);
@@ -49,6 +64,9 @@ const getTotalAmountWithoutTvaBackOnSale = (sale) => {
49
64
  exports.getTotalAmountWithoutTvaBackOnSale = getTotalAmountWithoutTvaBackOnSale;
50
65
  const getTotalTvaOnSaleOnSale = (sale, dlvr = false) => {
51
66
  return sale.saleProducts.reduce((prev, curr) => {
67
+ if (curr.unitPrice === 0) {
68
+ return 0;
69
+ }
52
70
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : (0, product_1.unitPriceByClientCat)(curr.product, sale.client, curr.speUnitPrice);
53
71
  return !dlvr
54
72
  ? Math.ceil(prev + unitPrice * (+curr.product.tva / 100) * +curr.qtityOdr)
@@ -58,6 +76,9 @@ const getTotalTvaOnSaleOnSale = (sale, dlvr = false) => {
58
76
  exports.getTotalTvaOnSaleOnSale = getTotalTvaOnSaleOnSale;
59
77
  const getTotalTvaBackOnSale = (sale) => {
60
78
  return sale.saleProducts.reduce((prev, curr) => {
79
+ if (curr.unitPrice === 0) {
80
+ return 0;
81
+ }
61
82
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : (0, product_1.unitPriceByClientCat)(curr.product, sale.client, curr.speUnitPrice);
62
83
  return Math.ceil(prev + unitPrice * (+curr.product.tva / 100) * +curr.qtityBack);
63
84
  }, 0);
@@ -5,7 +5,7 @@ export const unitPriceByClientCat = (product, client, speUnitPrice = 0, addDisco
5
5
  return speUnitPrice;
6
6
  }
7
7
  // const store = await getCustomRepository(ProductStoreRepository).getOneStoreByParams({storeName: 'cpa', productId: product.id})
8
- if (product.stores[0].discountRate && addDiscount) {
8
+ if ((product === null || product === void 0 ? void 0 : product.stores[0].discountRate) && addDiscount) {
9
9
  return Math.ceil(product.stores[0].salePrice) - Math.ceil(calculPercent(product.stores[0].salePrice, product.stores[0].discountRate));
10
10
  }
11
11
  const clientCoef = !client ? 1 : userCoef(client);
@@ -6,6 +6,9 @@ export const getNbProductsOnSale = (sale) => {
6
6
  };
7
7
  export const getTotalTvaOnSale = (sale, dlvr = false) => {
8
8
  return sale.saleProducts.reduce((prev, curr) => {
9
+ if (curr.unitPrice === 0) {
10
+ return 0;
11
+ }
9
12
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : unitPriceByClientCat(curr.product, sale.client, curr.speUnitPrice);
10
13
  return !dlvr
11
14
  ? Math.ceil(prev + unitPrice * (+curr.tva / 100) * +curr.qtityOdr)
@@ -16,30 +19,45 @@ export const getTotalTvaOnSale = (sale, dlvr = false) => {
16
19
  };
17
20
  export const getSubTotalAmountOnSale = (sale, dlvr = false) => {
18
21
  return sale.saleProducts.reduce((prev, curr) => {
22
+ if (curr.unitPrice === 0) {
23
+ return 0;
24
+ }
19
25
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : unitPriceByClientCat(curr.product, sale.client, curr.speUnitPrice);
20
26
  return !dlvr ? Math.ceil(prev + unitPrice * +curr.qtityOdr) : Math.ceil(prev + unitPrice * +curr.qtityDlvr);
21
27
  }, 0);
22
28
  };
23
29
  export const getSubTotalAmountBackOnSale = (sale) => {
24
30
  return sale.saleProducts.reduce((prev, curr) => {
31
+ if (curr.unitPrice === 0) {
32
+ return 0;
33
+ }
25
34
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : unitPriceByClientCat(curr.product, sale.client, curr.speUnitPrice);
26
35
  return Math.ceil(prev + unitPrice * +curr.qtityBack);
27
36
  }, 0);
28
37
  };
29
38
  export const getTotalAmountWithoutTvaOnSale = (sale, dlvr = false) => {
30
39
  return sale.saleProducts.reduce((prev, curr) => {
40
+ if (curr.unitPrice === 0) {
41
+ return 0;
42
+ }
31
43
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : unitPriceByClientCat(curr.product, sale.client, curr.speUnitPrice);
32
44
  return !dlvr ? Math.ceil(prev + unitPrice * +curr.qtityOdr) : Math.ceil(prev + unitPrice * +curr.qtityDlvr);
33
45
  }, 0);
34
46
  };
35
47
  export const getTotalAmountWithoutTvaBackOnSale = (sale) => {
36
48
  return sale.saleProducts.reduce((prev, curr) => {
49
+ if (curr.unitPrice === 0) {
50
+ return 0;
51
+ }
37
52
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : unitPriceByClientCat(curr.product, sale.client, curr.speUnitPrice);
38
53
  return Math.ceil(prev + unitPrice * +curr.qtityBack);
39
54
  }, 0);
40
55
  };
41
56
  export const getTotalTvaOnSaleOnSale = (sale, dlvr = false) => {
42
57
  return sale.saleProducts.reduce((prev, curr) => {
58
+ if (curr.unitPrice === 0) {
59
+ return 0;
60
+ }
43
61
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : unitPriceByClientCat(curr.product, sale.client, curr.speUnitPrice);
44
62
  return !dlvr
45
63
  ? Math.ceil(prev + unitPrice * (+curr.product.tva / 100) * +curr.qtityOdr)
@@ -48,6 +66,9 @@ export const getTotalTvaOnSaleOnSale = (sale, dlvr = false) => {
48
66
  };
49
67
  export const getTotalTvaBackOnSale = (sale) => {
50
68
  return sale.saleProducts.reduce((prev, curr) => {
69
+ if (curr.unitPrice === 0) {
70
+ return 0;
71
+ }
51
72
  const unitPrice = curr.unitPrice > 0 ? curr.unitPrice : unitPriceByClientCat(curr.product, sale.client, curr.speUnitPrice);
52
73
  return Math.ceil(prev + unitPrice * (+curr.product.tva / 100) * +curr.qtityBack);
53
74
  }, 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps",
3
- "version": "1.4.62",
3
+ "version": "1.4.63",
4
4
  "description": "helpers",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",