taxtank-core 0.30.60 → 0.30.62

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.
@@ -1527,7 +1527,7 @@ class ServiceProduct extends ServiceProduct$1 {
1527
1527
  return this.status === ServiceProductStatusEnum.ARCHIVED;
1528
1528
  }
1529
1529
  }
1530
- ServiceProduct.quantity = 3;
1530
+ ServiceProduct.quantity = 4;
1531
1531
  // const TestEnum = {
1532
1532
  // 4: 4,
1533
1533
  // 5: 7,
@@ -7160,23 +7160,6 @@ class HoldingSaleCollection extends ExportableCollection {
7160
7160
  }),
7161
7161
  ]);
7162
7162
  }
7163
- /**
7164
- * sorting holding-sale table in sgt-report by name field
7165
- */
7166
- sortByTypeName(holdingsById) {
7167
- this.sort((a, b) => {
7168
- const typeNameA = holdingsById.get(a.holding.id).type.name;
7169
- const typeNameB = holdingsById.get(b.holding.id).type.name;
7170
- switch (true) {
7171
- case typeNameA < typeNameB:
7172
- return -1;
7173
- case typeNameA > typeNameB:
7174
- return 1;
7175
- default:
7176
- return 0;
7177
- }
7178
- });
7179
- }
7180
7163
  }
7181
7164
 
7182
7165
  class HoldingTypeCollection extends Collection {