@feedmepos/mf-inventory-portal 0.0.22-dev.2 → 0.0.22-dev.4

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.
Files changed (42) hide show
  1. package/dist/App.vue.d.ts +2 -0
  2. package/dist/{ApprovalView-D7WEr35k.js → ApprovalView-xF73Z1jN.js} +19 -19
  3. package/dist/{BindingsDialog-C-3uO6pD.js → BindingsDialog-CCSAxGT4.js} +1 -1
  4. package/dist/{BindingsPicker-B3tGisCE.js → BindingsPicker-ErFH0uEQ.js} +1 -1
  5. package/dist/{BindingsTable-CPtiH3vj.js → BindingsTable-D8ffJgIJ.js} +1 -1
  6. package/dist/ClosingTemplateView-DdZlX1ug.js +1030 -0
  7. package/dist/{FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-ohHZLOuR.js → FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-ZYtBNoaE.js} +13 -15
  8. package/dist/{IngredientsView-D-EKGLq9.js → IngredientsView-DnwwQJTN.js} +5 -6
  9. package/dist/{IntegrationView-BVAO_vch.js → IntegrationView-54yz2EqS.js} +2 -2
  10. package/dist/{NumberPrecisionInput.vue_vue_type_script_setup_true_lang-CJYmB7Ct.js → NumberPrecisionInput.vue_vue_type_script_setup_true_lang-CKvKlCk-.js} +1 -1
  11. package/dist/{PremiumBadge.vue_vue_type_script_setup_true_lang-BxkM-SOw.js → PremiumBadge.vue_vue_type_script_setup_true_lang-Bom_KvXW.js} +1 -1
  12. package/dist/{PurchaseOrderPrintPreview-CP-mK62z.js → PurchaseOrderPrintPreview-pcpWSfl4.js} +1 -1
  13. package/dist/{ReceiveRequestView-x8WTvuDk.js → ReceiveRequestView-D5HXMY4Z.js} +15 -16
  14. package/dist/{RecipeView-BysIWI1W.js → RecipeView-BHkTgm5H.js} +3 -3
  15. package/dist/{StockView-SyWxT4Ee.js → StockView-iczCFYxn.js} +8 -9
  16. package/dist/{SupplierView-a0HAZJau.js → SupplierView-TYCkPXan.js} +3 -3
  17. package/dist/{TransferDetails.vue_vue_type_script_setup_true_lang-ckp8gcT_.js → TransferDetails.vue_vue_type_script_setup_true_lang-EN3JgHKF.js} +4 -4
  18. package/dist/{TransferDialog.vue_vue_type_script_setup_true_lang-BSvpuWY9.js → TransferDialog.vue_vue_type_script_setup_true_lang-DC0Ss5hi.js} +5 -5
  19. package/dist/{TransferTemplateView-BGi6zd6d.js → TransferTemplateView-Bbvpuys7.js} +45 -165
  20. package/dist/{UnitView-B3c7W5lw.js → UnitView-B9yE4-rc.js} +4 -4
  21. package/dist/{WarehouseView-DDV-yslF.js → WarehouseView-DUtVLTjb.js} +16 -16
  22. package/dist/api/closing-template.d.ts +14 -0
  23. package/dist/{app-DURkcZal.js → app-w8TOQVZc.js} +1288 -1221
  24. package/dist/app.js +3 -3
  25. package/dist/{decimal-BGJlFDm8.js → decimal-C4q7UMfr.js} +1 -1
  26. package/dist/{defineDeepModel-pATZSiCT.js → defineDeepModel-BOApqV24.js} +1 -1
  27. package/dist/extensions/promises.d.ts +14 -0
  28. package/dist/{format-time-from-id-BCAuJEq2.js → format-time-from-id-Cafjo8fn.js} +1 -1
  29. package/dist/helper/date2.d.ts +1 -0
  30. package/dist/{id-to-date-CVHmTOJk.js → id-to-date-CtSHSVJF.js} +1 -1
  31. package/dist/{purchase-order-transaction-type-DvSpCSXr.js → purchase-order-transaction-type-CIC5h-6x.js} +10 -10
  32. package/dist/style.css +1 -1
  33. package/dist/{supplier-DmBbGAwf.js → supplier-CM-vZ4bQ.js} +1 -1
  34. package/dist/tsconfig.app.tsbuildinfo +1 -1
  35. package/dist/{use-template-enabled-locations-BiuOdu1M.js → use-template-enabled-locations-Bm00vEzC.js} +1 -1
  36. package/dist/views/closing-template/components/closing-template-publish/ClosingTemplatePublish.vue.d.ts +6 -0
  37. package/dist/views/closing-template/composables/use-closing-template-table.d.ts +65 -1
  38. package/dist/{xlsx-1DLm6bBD.js → xlsx-BggStaH1.js} +1 -1
  39. package/dist/{xlsx.util-DLtch7r5.js → xlsx.util-CqlYZLKW.js} +2 -2
  40. package/package.json +1 -1
  41. package/dist/ClosingTemplateView-Df0lgpjS.js +0 -928
  42. package/dist/array-ClJzD_Lt.js +0 -30
@@ -1,30 +0,0 @@
1
- Array.prototype.computeFirst = function(e) {
2
- const t = this.length;
3
- for (let n = 0; n < t; n++) {
4
- const r = this.at(n), i = e(r, n, this);
5
- if (i != null)
6
- return i;
7
- }
8
- };
9
- Array.prototype.computeLast = function(e) {
10
- const t = this.length - 1;
11
- for (let n = t; n >= 0; n--) {
12
- const r = this.at(n), i = e(r, n, this);
13
- if (i != null)
14
- return i;
15
- }
16
- };
17
- Array.prototype.insert = function(e, t) {
18
- if (t < this.length) {
19
- const n = this.splice(t, this.length);
20
- return this[t] = e, n.forEach((r) => this.push(r)), this;
21
- }
22
- return this[t] = e, this;
23
- };
24
- Array.prototype.chunk = function* (e) {
25
- let t = [...this];
26
- for (; t.length; ) {
27
- const n = t.slice(0, e);
28
- t = t.slice(e), yield n;
29
- }
30
- };