@feedmepos/mf-inventory-portal 0.0.19-dev.15 → 0.0.19-dev.17
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.
- package/dist/{ApprovalView-CRHU3Bv0.js → ApprovalView-YVJ8rI2M.js} +5 -5
- package/dist/{BindingsDialog-ChIRg0d3.js → BindingsDialog-C7ZO5bXe.js} +9 -9
- package/dist/{BindingsPicker-BJAbeiDf.js → BindingsPicker-BDsVbM3L.js} +1 -1
- package/dist/{BindingsTable-5MxWD_qa.js → BindingsTable-BiVQ4mvK.js} +1 -1
- package/dist/FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-vuSl8LVG.js +308 -0
- package/dist/{IngredientsView-qXrDtzSK.js → IngredientsView-CKDZsR2e.js} +5 -5
- package/dist/{IntegrationView-D6yFqod1.js → IntegrationView-DQZeJKul.js} +2 -2
- package/dist/{NumberPrecisionInput.vue_vue_type_script_setup_true_lang-DGurlvYg.js → NumberPrecisionInput.vue_vue_type_script_setup_true_lang-DDcFEUcz.js} +1 -1
- package/dist/{PremiumBadge.vue_vue_type_script_setup_true_lang-2Ady4pB4.js → PremiumBadge.vue_vue_type_script_setup_true_lang-6plo8rnV.js} +1 -1
- package/dist/{PurchaseOrderPrintPreview-BWwjMRqb.js → PurchaseOrderPrintPreview-Df-gYZFA.js} +1 -1
- package/dist/{ReceiveRequestView-C94SWDaj.js → ReceiveRequestView-CxW1ONAk.js} +8 -8
- package/dist/{RecipeView-CG9H_ZOo.js → RecipeView-B8eIaR2f.js} +4 -4
- package/dist/{StockView-BdXGfDNl.js → StockView-CqgqPyvI.js} +8 -8
- package/dist/SupplierView-CPHQT1Hn.js +817 -0
- package/dist/{TransferDetails.vue_vue_type_script_setup_true_lang-DktBkwCx.js → TransferDetails.vue_vue_type_script_setup_true_lang-CBmoU3pN.js} +4 -4
- package/dist/TransferDialog.vue_vue_type_script_setup_true_lang-DV6IxKMM.js +1435 -0
- package/dist/TransferTemplateView-BR2-tTiQ.js +1290 -0
- package/dist/{UnitView-Dx2vWJXi.js → UnitView-vUCf46QM.js} +5 -5
- package/dist/{WarehouseView-UkmUZnqH.js → WarehouseView-B3D5kkAU.js} +3 -3
- package/dist/api/purchase-order-template.d.ts +4 -0
- package/dist/api/supplier.d.ts +6 -4
- package/dist/{app-BLzTa0Ut.js → app-Ds9lsiAo.js} +5542 -5522
- package/dist/app.js +1 -1
- package/dist/{array-AvWd53LI.js → array-ClJzD_Lt.js} +3 -3
- package/dist/components/ChangeLocationComponent.vue.d.ts +14 -11
- package/dist/components/FmInventoryTableToolbar.vue.d.ts +0 -2
- package/dist/components/FmMultiselectDialogProps.d.ts +1 -0
- package/dist/{decimal-DLYVb_I_.js → decimal-BZJuYjv-.js} +1 -1
- package/dist/format-unit-display-Dw4iQUDG.js +707 -0
- package/dist/{id-to-date-CKplrnj_.js → id-to-date-CLG4t5Zp.js} +1 -1
- package/dist/layout/SingleColumnLayout.vue.d.ts +1 -0
- package/dist/{layout-B9sdKjL9.js → layout-b03Lvqhx.js} +1 -1
- package/dist/stores/feature.d.ts +1 -0
- package/dist/stores/location.d.ts +1 -0
- package/dist/stores/supplier.d.ts +9 -9
- package/dist/supplier-C9OQNEl0.js +69 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/views/supplier/components/SupplierDialogProps.d.ts +0 -1
- package/dist/views/transfer-template/composables/use-transfer-template-table.d.ts +583 -1
- package/dist/{xlsx-C3AV6UrJ.js → xlsx-B5RUBjKV.js} +1209 -1209
- package/dist/{xlsx.util-slrhXhsk.js → xlsx.util-H2UkpLte.js} +4 -4
- package/package.json +3 -3
- package/dist/FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-D0j4VOis.js +0 -306
- package/dist/SupplierView-ClL2oc8K.js +0 -813
- package/dist/TransferDialog.vue_vue_type_script_setup_true_lang-BE95F9r1.js +0 -1437
- package/dist/TransferTemplateView-BXrNS8pg.js +0 -1279
- package/dist/format-unit-display-D_Z4TNZd.js +0 -668
- package/dist/supplier-BZ6HZcYB.js +0 -60
package/dist/app.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Array.prototype.computeFirst = function(e) {
|
|
2
2
|
const t = this.length;
|
|
3
3
|
for (let n = 0; n < t; n++) {
|
|
4
|
-
const
|
|
4
|
+
const r = this.at(n), i = e(r, n, this);
|
|
5
5
|
if (i != null)
|
|
6
6
|
return i;
|
|
7
7
|
}
|
|
@@ -9,7 +9,7 @@ Array.prototype.computeFirst = function(e) {
|
|
|
9
9
|
Array.prototype.computeLast = function(e) {
|
|
10
10
|
const t = this.length - 1;
|
|
11
11
|
for (let n = t; n >= 0; n--) {
|
|
12
|
-
const
|
|
12
|
+
const r = this.at(n), i = e(r, n, this);
|
|
13
13
|
if (i != null)
|
|
14
14
|
return i;
|
|
15
15
|
}
|
|
@@ -17,7 +17,7 @@ Array.prototype.computeLast = function(e) {
|
|
|
17
17
|
Array.prototype.insert = function(e, t) {
|
|
18
18
|
if (t < this.length) {
|
|
19
19
|
const n = this.splice(t, this.length);
|
|
20
|
-
return this[t] = e, n.forEach((
|
|
20
|
+
return this[t] = e, n.forEach((r) => this.push(r)), this;
|
|
21
21
|
}
|
|
22
22
|
return this[t] = e, this;
|
|
23
23
|
};
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
-
usingBusiness: import("vue").PropType<boolean>;
|
|
8
|
-
showBusiness: {
|
|
9
|
-
type: import("vue").PropType<boolean>;
|
|
10
|
-
};
|
|
11
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
showBusiness?: boolean | undefined;
|
|
3
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
showBusiness?: boolean | undefined;
|
|
5
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
6
|
export default _default;
|
|
7
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
8
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
9
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
10
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
11
|
+
} : {
|
|
12
|
+
type: import('vue').PropType<T[K]>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -16,7 +16,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
16
16
|
startDate: string;
|
|
17
17
|
endDate: string;
|
|
18
18
|
}>;
|
|
19
|
-
usingBusiness: import("vue").PropType<boolean>;
|
|
20
19
|
dateRangeQuery: {
|
|
21
20
|
type: import("vue").PropType<boolean>;
|
|
22
21
|
};
|
|
@@ -41,7 +40,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
41
40
|
startDate: string;
|
|
42
41
|
endDate: string;
|
|
43
42
|
}>;
|
|
44
|
-
usingBusiness: import("vue").PropType<boolean>;
|
|
45
43
|
dateRangeQuery: {
|
|
46
44
|
type: import("vue").PropType<boolean>;
|
|
47
45
|
};
|