@feedmepos/mf-inventory-portal 0.0.22-dev.11 → 0.0.22-dev.15
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-D0WHopPL.js → ApprovalView-BOP6b_Yd.js} +26 -26
- package/dist/{BindingsDialog-Ddv46-I4.js → BindingsDialog-BLyRf9wO.js} +1 -1
- package/dist/{BindingsPicker-CbNehOQo.js → BindingsPicker-CNbfKeSB.js} +14 -14
- package/dist/{BindingsTable-C-z5jzGu.js → BindingsTable-CH73rDTZ.js} +1 -1
- package/dist/{ClosingTemplateView-Bs59bML_.js → ClosingTemplateView-c572PM5W.js} +23 -23
- package/dist/{FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-CGIfL24N.js → FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-CpmzTuAj.js} +8 -8
- package/dist/{IngredientsView-Bk0U9IrL.js → IngredientsView-CdE3WOqJ.js} +3 -3
- package/dist/{IntegrationView-hEv2Fe67.js → IntegrationView-B29NSwpf.js} +2 -2
- package/dist/{NumberPrecisionInput.vue_vue_type_script_setup_true_lang-ButZx6Cm.js → NumberPrecisionInput.vue_vue_type_script_setup_true_lang-CZsQjzBa.js} +1 -1
- package/dist/{PremiumBadge.vue_vue_type_script_setup_true_lang-D1WcEO5R.js → PremiumBadge.vue_vue_type_script_setup_true_lang-BwKpNPDY.js} +1 -1
- package/dist/{PurchaseOrderPrintPreview-wJLaWy-I.js → PurchaseOrderPrintPreview-mHevDWzN.js} +1 -1
- package/dist/{ReceiveRequestView-CT7_gSPj.js → ReceiveRequestView-Bl4SuM6j.js} +20 -20
- package/dist/{RecipeView-smOk18iy.js → RecipeView-BHBJlY-_.js} +3 -3
- package/dist/Standalone.vue.d.ts +2 -0
- package/dist/{StockView-CE00jzyG.js → StockView-C4z9Qi7T.js} +586 -568
- package/dist/{SupplierView-D346tx42.js → SupplierView-CXyWhB9D.js} +3 -3
- package/dist/{TransferDetails.vue_vue_type_script_setup_true_lang-ixxW-kNE.js → TransferDetails.vue_vue_type_script_setup_true_lang-C_cTUji8.js} +178 -177
- package/dist/{TransferDialog.vue_vue_type_script_setup_true_lang-Cf9TVjj7.js → TransferDialog.vue_vue_type_script_setup_true_lang-DV59BWff.js} +468 -465
- package/dist/TransferTemplateView-Dpxk9Zwt.js +1209 -0
- package/dist/{UnitView-BdEvCjCv.js → UnitView-BQlwparN.js} +4 -4
- package/dist/{WarehouseView-CtqTSV9B.js → WarehouseView-Cu7pKilf.js} +15 -15
- package/dist/{app-BbLqKVBN.js → app-CFkNddzq.js} +4902 -4838
- package/dist/app.js +1 -1
- package/dist/components/FmMinMaxInputRules.d.ts +2 -0
- package/dist/components/FmUnitInputRules.d.ts +2 -0
- package/dist/{decimal-BXH34eZD.js → decimal-D0W3dojG.js} +1 -1
- package/dist/{defineDeepModel-CN2db5nM.js → defineDeepModel-DWffbsZh.js} +4 -4
- package/dist/{format-time-from-id-mDqFHPw7.js → format-time-from-id-BZAepMJZ.js} +1 -1
- package/dist/helper/rules.d.ts +7 -1
- package/dist/helper/rules.spec.d.ts +1 -0
- package/dist/{id-to-date-CRXORa4v.js → id-to-date-BJEGh6zQ.js} +1 -1
- package/dist/{purchase-order-transaction-type-DHsIlV8_.js → purchase-order-transaction-type-CAJDFGQP.js} +53 -52
- package/dist/{supplier-DTKB6s-P.js → supplier-ChSqlZUK.js} +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{use-template-enabled-locations-2-BVp9gXZX.js → use-template-enabled-locations-2-B4M8z0b7.js} +1 -1
- package/dist/views/receive-request/components/transfer-details/TransferDetailsProps.d.ts +1 -0
- package/dist/views/receive-request/components/transfer-form/TransferForm.vue.d.ts +522 -0
- package/dist/views/receive-request/components/transfer-form/TransferFormProps.d.ts +1 -0
- package/dist/views/receive-request/composables/use-receive-request-form.d.ts +21 -0
- package/dist/views/receive-request/composables/use-receive-request-table.d.ts +21 -0
- package/dist/views/transfer-template/components/transfer-template-form/composables/use-transfer-locations.d.ts +1 -1
- package/dist/{xlsx-CZubj3Ki.js → xlsx-BH3xrhEk.js} +1 -1
- package/dist/{xlsx.util-DjhsRAqO.js → xlsx.util-DlY5MITI.js} +2 -2
- package/package.json +3 -3
- package/dist/TransferTemplateView-Cz6Hlmtm.js +0 -1262
package/dist/app.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import type { FmMinMaxInputModel } from './FmMinMaxInputProps';
|
|
2
|
+
import type { FdoDecimal } from '@feedmepos/core/entity';
|
|
2
3
|
export declare function FmMinMaxRequired(): (model?: FmMinMaxInputModel) => true | "Required";
|
|
3
4
|
/** Both `min` and `max` are inclusive */
|
|
4
5
|
export declare function FmMinMaxBoundary(min: number, max: number): (model?: FmMinMaxInputModel) => string | true;
|
|
6
|
+
export declare function FmMinMaxMultipleOf(decimal: FdoDecimal): (model?: FmMinMaxInputModel) => string | true;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { FmGroupModelValue } from './FmUnitInputProps';
|
|
2
2
|
import type { ValidationResult } from '@feedmepos/ui-library';
|
|
3
|
+
import type { FdoDecimal } from '@feedmepos/core/entity';
|
|
3
4
|
export declare function FmUnitInputAmountIsNumberRule(): (value: FmGroupModelValue) => true | "Must be a number";
|
|
4
5
|
export declare function FmUnitInputAmountAtLeastRule(minimum: number): (value: FmGroupModelValue) => string | true;
|
|
5
6
|
export declare function FmUnitInputAmountMoreThanRule(minimum: number): (value: FmGroupModelValue) => string | true;
|
|
6
7
|
export declare function FmUnitInputAmountAtMostRule(maximum: number): (value: FmGroupModelValue) => string | true;
|
|
7
8
|
export declare function FmUnitInputMaxPrecisionRule(unit: FdoInventoryUnit, applyAmountRule?: boolean): (value: any) => ValidationResult;
|
|
8
9
|
export declare function FmUnitInputMaxPrecisionRule(precision: number, applyAmountRule?: boolean): (value: any) => ValidationResult;
|
|
10
|
+
export declare function FmUnitInputAmountMultipleOf(decimal: FdoDecimal): (value: FmGroupModelValue) => ValidationResult;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { c as
|
|
1
|
+
import { c as d, ak as i } from "./app-CFkNddzq.js";
|
|
2
2
|
import { getCurrentInstance as r, reactive as m, watch as u } from "vue";
|
|
3
3
|
function b(e = "modelValue") {
|
|
4
4
|
var o, n;
|
|
5
5
|
const s = ((o = r()) == null ? void 0 : o.props) ?? {}, a = ((n = r()) == null ? void 0 : n.emit) ?? (() => {
|
|
6
|
-
}), t = m(
|
|
7
|
-
return u(t, (
|
|
8
|
-
a(c,
|
|
6
|
+
}), t = m(d(s[e] ?? {})), c = `update:${i(e)}`;
|
|
7
|
+
return u(t, (p) => {
|
|
8
|
+
a(c, p);
|
|
9
9
|
}), t;
|
|
10
10
|
}
|
|
11
11
|
export {
|
package/dist/helper/rules.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ValidationResult } from 'node_modules/@feedmepos/ui-library/dist/composables/useValidation';
|
|
2
2
|
import { type AdjustmentAmount } from './number';
|
|
3
3
|
import type { ISelectItem } from '@feedmepos/ui-library';
|
|
4
|
+
import type { FdoDecimal } from '@feedmepos/core/entity';
|
|
4
5
|
export declare function Required(): (val: string) => true | "Required";
|
|
5
6
|
export declare function isAdjustmentAmount(val: any): val is AdjustmentAmount;
|
|
6
7
|
export declare function AtLeast(amount: number | AdjustmentAmount, message?: string | ((current: number) => string)): (val: any) => string | true;
|
|
@@ -20,4 +21,9 @@ export declare function MaximumPrecision(unit: FdoInventoryUnit, measurement?: F
|
|
|
20
21
|
};
|
|
21
22
|
export declare function MaximumPrecisionLiteral(precision: number, message?: string | ((precision: number) => string)): (val: string) => string | true;
|
|
22
23
|
export declare function Unique(pool: ISelectItem[], current?: string, message?: (item: ISelectItem) => string): (value: any) => string | true;
|
|
23
|
-
export declare function MultipleOf(n: number):
|
|
24
|
+
export declare function MultipleOf(n: number): {
|
|
25
|
+
(val: any): ValidationResult;
|
|
26
|
+
};
|
|
27
|
+
export declare function MultipleOf(n: FdoDecimal): {
|
|
28
|
+
(val: any): ValidationResult;
|
|
29
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { n as G, j as C,
|
|
2
|
-
import { ref as y, h as
|
|
3
|
-
import { i as ge } from "./FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-
|
|
4
|
-
import { F as B, D as
|
|
5
|
-
import { useDialog as
|
|
6
|
-
import { f as ye, p as be } from "./format-time-from-id-
|
|
1
|
+
import { n as G, j as C, am as S, c as O, u as Q, z as ne, aa as se, K as ce, L as le, an as ie, ag as ue, x as de, b as me, a as pe } from "./app-CFkNddzq.js";
|
|
2
|
+
import { ref as y, h as I, defineComponent as fe, onMounted as he, computed as R, resolveComponent as j, openBlock as E, createElementBlock as z, createElementVNode as $, createVNode as L, createCommentVNode as ve, createBlock as K } from "vue";
|
|
3
|
+
import { i as ge } from "./FmInventoryTableToolbar.vue_vue_type_script_setup_true_lang-CpmzTuAj.js";
|
|
4
|
+
import { F as B, D as M, R as _ } from "./row-action.enum-PMKMRrZR.js";
|
|
5
|
+
import { useDialog as Y, useSnackbar as J, FmButtonVariant as q, components as H } from "@feedmepos/ui-library";
|
|
6
|
+
import { f as ye, p as be } from "./format-time-from-id-BZAepMJZ.js";
|
|
7
7
|
import { c as we } from "./TableActionableRow.vue_vue_type_script_setup_true_lang-DlNJ6kRg.js";
|
|
8
8
|
import { useCoreStore as Te, useI18n as Se } from "@feedmepos/mf-common";
|
|
9
9
|
import { defineStore as De } from "pinia";
|
|
@@ -124,7 +124,7 @@ const Ae = G((o, l) => {
|
|
|
124
124
|
}
|
|
125
125
|
};
|
|
126
126
|
}), Ce = De("transferTemplateActions", () => {
|
|
127
|
-
const o =
|
|
127
|
+
const o = xe("receive/request"), l = Y(), n = J(), e = X(), t = y({});
|
|
128
128
|
function r() {
|
|
129
129
|
t.value = {
|
|
130
130
|
mode: B.CREATE,
|
|
@@ -150,12 +150,12 @@ const Ae = G((o, l) => {
|
|
|
150
150
|
message: "Deleted template can no longer be retrieved",
|
|
151
151
|
primaryActions: {
|
|
152
152
|
text: "Delete",
|
|
153
|
-
variant:
|
|
153
|
+
variant: q.Destructive,
|
|
154
154
|
close: !0
|
|
155
155
|
},
|
|
156
156
|
secondaryActions: {
|
|
157
157
|
text: "Cancel",
|
|
158
|
-
variant:
|
|
158
|
+
variant: q.Plain,
|
|
159
159
|
close: !0
|
|
160
160
|
}
|
|
161
161
|
}).onPrimary(async () => {
|
|
@@ -194,11 +194,11 @@ const Ae = G((o, l) => {
|
|
|
194
194
|
p.value.show = g;
|
|
195
195
|
},
|
|
196
196
|
"onAction:edit"() {
|
|
197
|
-
p.value.show = !1, d(
|
|
197
|
+
p.value.show = !1, d(O(u));
|
|
198
198
|
},
|
|
199
199
|
"onAction:use"(g) {
|
|
200
200
|
const m = C(), s = m.locations.find((i) => i.doc._id === g);
|
|
201
|
-
m.selectLocation(s), p.value.show = !1, b(
|
|
201
|
+
m.selectLocation(s), p.value.show = !1, b(O(u));
|
|
202
202
|
}
|
|
203
203
|
};
|
|
204
204
|
}
|
|
@@ -220,12 +220,12 @@ const Ae = G((o, l) => {
|
|
|
220
220
|
};
|
|
221
221
|
});
|
|
222
222
|
function W(o) {
|
|
223
|
-
const { skuById: l } =
|
|
223
|
+
const { skuById: l } = Q(), n = O(o);
|
|
224
224
|
return n.purchaseOrder.items = o.purchaseOrder.items.filter((e) => l[e.sku._id]), n;
|
|
225
225
|
}
|
|
226
226
|
const $e = "use";
|
|
227
227
|
function Ne() {
|
|
228
|
-
const { t: o } = Se(), { viewTemplate: l, updateTemplate: n, deleteTemplate: e, useTemplate: t } = Ce(), r = y(new Array()), d = y(!1), f = C(), p = X(), T =
|
|
228
|
+
const { t: o } = Se(), { viewTemplate: l, updateTemplate: n, deleteTemplate: e, useTemplate: t } = Ce(), r = y(new Array()), d = y(!1), f = C(), p = X(), T = Q();
|
|
229
229
|
async function b() {
|
|
230
230
|
if (r.value = [], !!f._currentLocation) {
|
|
231
231
|
d.value = !0;
|
|
@@ -257,7 +257,7 @@ function Ne() {
|
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
259
|
function g(s, i) {
|
|
260
|
-
switch (i =
|
|
260
|
+
switch (i = O(i), s) {
|
|
261
261
|
case $e:
|
|
262
262
|
return t(i);
|
|
263
263
|
case _.Details:
|
|
@@ -297,8 +297,8 @@ function Ne() {
|
|
|
297
297
|
},
|
|
298
298
|
cell(s) {
|
|
299
299
|
const i = Number(s.getValue()) || 0;
|
|
300
|
-
return i === 0 ?
|
|
301
|
-
|
|
300
|
+
return i === 0 ? I("div", { class: "flex justify-end gap-4 items-center" }, [
|
|
301
|
+
I(
|
|
302
302
|
H.FmTooltip,
|
|
303
303
|
{},
|
|
304
304
|
{
|
|
@@ -306,7 +306,7 @@ function Ne() {
|
|
|
306
306
|
return "The template is invalid due to deleted ingredients. Please update this template.";
|
|
307
307
|
},
|
|
308
308
|
default() {
|
|
309
|
-
return
|
|
309
|
+
return I(H.FmIcon, {
|
|
310
310
|
name: "error",
|
|
311
311
|
color: "system-error-300",
|
|
312
312
|
size: "sm"
|
|
@@ -344,11 +344,11 @@ function Ne() {
|
|
|
344
344
|
id: "action",
|
|
345
345
|
cell(s) {
|
|
346
346
|
const i = s.row.original, w = [
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
347
|
+
M[_.Details],
|
|
348
|
+
M[_.Edit],
|
|
349
|
+
M[_.Delete]
|
|
350
350
|
];
|
|
351
|
-
return we(w, (
|
|
351
|
+
return we(w, (x) => g(x, i));
|
|
352
352
|
},
|
|
353
353
|
enableSorting: !1,
|
|
354
354
|
size: 40,
|
|
@@ -364,10 +364,10 @@ function Ne() {
|
|
|
364
364
|
loadTemplate: u
|
|
365
365
|
};
|
|
366
366
|
}
|
|
367
|
-
const
|
|
367
|
+
const Oe = { class: "flex flex-col bg-white p-16 fm-corner-radius-lg gap-16" }, Ue = {
|
|
368
368
|
key: 0,
|
|
369
369
|
class: "flex gap-8 fm-typo-en-body-md-400 text-fm-color-typo-warning"
|
|
370
|
-
},
|
|
370
|
+
}, ke = { class: "flex gap-12" }, Ee = /* @__PURE__ */ fe({
|
|
371
371
|
__name: "SelectTemplateDialog",
|
|
372
372
|
emits: ["close", "update:modelValue"],
|
|
373
373
|
setup(o, { emit: l }) {
|
|
@@ -375,7 +375,7 @@ const ke = { class: "flex flex-col bg-white p-16 fm-corner-radius-lg gap-16" },
|
|
|
375
375
|
he(() => {
|
|
376
376
|
t.fetchTemplates();
|
|
377
377
|
});
|
|
378
|
-
const f =
|
|
378
|
+
const f = R(() => t.loading.value), p = R(
|
|
379
379
|
() => t.templates.value.filter(
|
|
380
380
|
(m) => !m.locations || m.locations.find((s) => s.doc._id === d.currentLocation.doc._id)
|
|
381
381
|
).map((m) => ({
|
|
@@ -396,10 +396,10 @@ const ke = { class: "flex flex-col bg-white p-16 fm-corner-radius-lg gap-16" },
|
|
|
396
396
|
n("update:modelValue", e.value), b();
|
|
397
397
|
}
|
|
398
398
|
return (m, s) => {
|
|
399
|
-
const i =
|
|
400
|
-
return E(),
|
|
399
|
+
const i = j("FmIcon"), w = j("FmButton");
|
|
400
|
+
return E(), z("div", Oe, [
|
|
401
401
|
s[2] || (s[2] = $("div", { class: "h-32 text-fm-color-typo-primary fm-typo-en-title-md-600" }, "Select one template", -1)),
|
|
402
|
-
|
|
402
|
+
L(ne, {
|
|
403
403
|
"model-value": [e.value],
|
|
404
404
|
"onUpdate:modelValue": u,
|
|
405
405
|
items: p.value,
|
|
@@ -407,16 +407,16 @@ const ke = { class: "flex flex-col bg-white p-16 fm-corner-radius-lg gap-16" },
|
|
|
407
407
|
"no-shadow": "",
|
|
408
408
|
"single-select": ""
|
|
409
409
|
}, null, 8, ["model-value", "items", "loading"]),
|
|
410
|
-
!f.value && !p.value.length ? (E(),
|
|
410
|
+
!f.value && !p.value.length ? (E(), z("div", Ue, [
|
|
411
411
|
$("div", null, [
|
|
412
|
-
|
|
412
|
+
L(i, {
|
|
413
413
|
name: "warning",
|
|
414
414
|
size: "sm"
|
|
415
415
|
})
|
|
416
416
|
]),
|
|
417
417
|
s[0] || (s[0] = $("div", null, "You have not configured any templates", -1))
|
|
418
418
|
])) : ve("", !0),
|
|
419
|
-
$("div",
|
|
419
|
+
$("div", ke, [
|
|
420
420
|
s[1] || (s[1] = $("div", { class: "flex-1" }, null, -1)),
|
|
421
421
|
!f.value && !p.value.length ? (E(), K(w, {
|
|
422
422
|
key: 0,
|
|
@@ -430,7 +430,7 @@ const ke = { class: "flex flex-col bg-white p-16 fm-corner-radius-lg gap-16" },
|
|
|
430
430
|
label: "Use template",
|
|
431
431
|
onClick: g
|
|
432
432
|
}, null, 8, ["loading", "disabled"])),
|
|
433
|
-
|
|
433
|
+
L(w, {
|
|
434
434
|
label: "Close",
|
|
435
435
|
variant: "tertiary",
|
|
436
436
|
onClick: b
|
|
@@ -457,10 +457,10 @@ function Be() {
|
|
|
457
457
|
}), n;
|
|
458
458
|
}
|
|
459
459
|
const N = y();
|
|
460
|
-
function
|
|
461
|
-
const n =
|
|
460
|
+
function xe(o, l) {
|
|
461
|
+
const n = Y(), e = C(), t = me(), r = y(!1), d = J(), f = Ae(), p = y(new Array()), T = y(
|
|
462
462
|
l != null && l.startDate && (l != null && l.endDate) ? l : ge()
|
|
463
|
-
), b =
|
|
463
|
+
), b = R(() => {
|
|
464
464
|
const c = new Date(T.value.startDate), a = new Date(T.value.endDate);
|
|
465
465
|
return {
|
|
466
466
|
start: ce(c).toISOString(),
|
|
@@ -502,7 +502,7 @@ function Fe(o, l) {
|
|
|
502
502
|
function w(c) {
|
|
503
503
|
const a = {
|
|
504
504
|
mode: B.UPDATE,
|
|
505
|
-
modelValue:
|
|
505
|
+
modelValue: O(c),
|
|
506
506
|
show: !0,
|
|
507
507
|
"onUpdate:show"(h) {
|
|
508
508
|
N.value.show = h;
|
|
@@ -511,7 +511,7 @@ function Fe(o, l) {
|
|
|
511
511
|
};
|
|
512
512
|
N.value = a;
|
|
513
513
|
}
|
|
514
|
-
async function
|
|
514
|
+
async function x() {
|
|
515
515
|
p.value = [], r.value = !0;
|
|
516
516
|
try {
|
|
517
517
|
p.value = await f.getPurchaseOrders(b.value).then((h) => h.sort((v, D) => D._id.localeCompare(v._id)));
|
|
@@ -541,10 +541,10 @@ function Fe(o, l) {
|
|
|
541
541
|
r.value = !1;
|
|
542
542
|
}
|
|
543
543
|
}
|
|
544
|
-
function
|
|
544
|
+
function U() {
|
|
545
545
|
switch (o) {
|
|
546
546
|
case "receive/request":
|
|
547
|
-
return
|
|
547
|
+
return x();
|
|
548
548
|
case "approval":
|
|
549
549
|
return Z();
|
|
550
550
|
}
|
|
@@ -553,29 +553,30 @@ function Fe(o, l) {
|
|
|
553
553
|
T.value = {
|
|
554
554
|
startDate: c,
|
|
555
555
|
endDate: a
|
|
556
|
-
},
|
|
556
|
+
}, U();
|
|
557
557
|
}
|
|
558
558
|
e.watchLocation(async (c) => {
|
|
559
559
|
if (!c) {
|
|
560
560
|
p.value = [];
|
|
561
561
|
return;
|
|
562
562
|
}
|
|
563
|
-
await
|
|
563
|
+
await U();
|
|
564
564
|
});
|
|
565
|
-
const A = y(),
|
|
565
|
+
const A = y(), V = y(Math.random().toString());
|
|
566
566
|
async function te(c, a) {
|
|
567
|
-
var P,
|
|
567
|
+
var P, k;
|
|
568
568
|
const h = Math.random().toString();
|
|
569
|
-
|
|
569
|
+
V.value = h;
|
|
570
570
|
const v = o === "receive/request" ? e.currentLocation : a == null ? void 0 : a.to, D = {
|
|
571
|
+
poRequest: a,
|
|
571
572
|
purchaseOrder: c,
|
|
572
573
|
transferTo: v == null ? void 0 : v.name,
|
|
573
574
|
transferToDbName: v == null ? void 0 : v.dbName,
|
|
574
575
|
show: !0,
|
|
575
576
|
canResubmit: !1,
|
|
576
577
|
canApprove: o === "approval",
|
|
577
|
-
"onUpdate:show"(
|
|
578
|
-
A.value.show =
|
|
578
|
+
"onUpdate:show"(F) {
|
|
579
|
+
A.value.show = F;
|
|
579
580
|
}
|
|
580
581
|
};
|
|
581
582
|
if (A.value = D, !(a || c.status !== ue.enum.REQUESTING)) {
|
|
@@ -586,7 +587,7 @@ function Fe(o, l) {
|
|
|
586
587
|
} catch {
|
|
587
588
|
console.error("Error at fetching po request to check");
|
|
588
589
|
}
|
|
589
|
-
h ===
|
|
590
|
+
h === V.value && (A.value.canResubmit = !a, A.value.transferTo = (P = a == null ? void 0 : a.to) == null ? void 0 : P.name, A.value.transferToDbName = (k = a == null ? void 0 : a.to) == null ? void 0 : k.dbName);
|
|
590
591
|
}
|
|
591
592
|
}
|
|
592
593
|
async function re(c, a, h, v) {
|
|
@@ -605,7 +606,7 @@ function Fe(o, l) {
|
|
|
605
606
|
)
|
|
606
607
|
},
|
|
607
608
|
v
|
|
608
|
-
), await new Promise((
|
|
609
|
+
), await new Promise((k) => setTimeout(k, 1e3));
|
|
609
610
|
const P = C().currentLocationDBName.startsWith("restaurant_");
|
|
610
611
|
a === S.enum.confirmDraft && c.effectiveAt && P ? d.open({
|
|
611
612
|
title: "Success",
|
|
@@ -623,7 +624,7 @@ function Fe(o, l) {
|
|
|
623
624
|
type: "error"
|
|
624
625
|
}), console.error("Error when submitting PO operation", a, c, D);
|
|
625
626
|
} finally {
|
|
626
|
-
r.value = !1,
|
|
627
|
+
r.value = !1, U();
|
|
627
628
|
}
|
|
628
629
|
}
|
|
629
630
|
async function ae(c, a, h) {
|
|
@@ -649,7 +650,7 @@ function Fe(o, l) {
|
|
|
649
650
|
purchaseOrders: p,
|
|
650
651
|
purchaseRequests: u,
|
|
651
652
|
updateDateRange: ee,
|
|
652
|
-
fetchData:
|
|
653
|
+
fetchData: U,
|
|
653
654
|
loading: r,
|
|
654
655
|
transferDialogProps: N,
|
|
655
656
|
promptCreateTransferDialog: i,
|
|
@@ -663,14 +664,14 @@ function We(o, l, n) {
|
|
|
663
664
|
const e = (n == null ? void 0 : n.abbrev) ?? l.abbrev;
|
|
664
665
|
return `${pe(o, !1)} ${e}`;
|
|
665
666
|
}
|
|
666
|
-
var
|
|
667
|
+
var Fe = /* @__PURE__ */ ((o) => (o.PURCHASE = "PURCHASE", o.TRANSFER = "TRANSFER", o))(Fe || {});
|
|
667
668
|
export {
|
|
668
|
-
|
|
669
|
+
Fe as P,
|
|
669
670
|
X as a,
|
|
670
671
|
Ce as b,
|
|
671
672
|
Ne as c,
|
|
672
673
|
Ae as d,
|
|
673
674
|
_e as e,
|
|
674
675
|
We as f,
|
|
675
|
-
|
|
676
|
+
xe as u
|
|
676
677
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as S, j as u,
|
|
1
|
+
import { n as S, j as u, V as m, W as y } from "./app-CFkNddzq.js";
|
|
2
2
|
import { useCoreStore as c } from "@feedmepos/mf-common";
|
|
3
3
|
import { defineStore as b } from "pinia";
|
|
4
4
|
import { ref as l, computed as v } from "vue";
|