@fewangsit/wangsvue-fats 1.0.0-alpha.111 → 1.0.0-alpha.112
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/package.json +1 -1
- package/stats.html +1 -1
- package/utils/role.util.d.ts +2 -0
- package/wangsvue-fats.js +108 -104
- package/wangsvue-fats.system.js +13 -13
package/utils/role.util.d.ts
CHANGED
|
@@ -42,7 +42,9 @@ export interface UserLogin {
|
|
|
42
42
|
transactionRoles: Record<TransactionAttribute, TransactionRole>;
|
|
43
43
|
systemRoles: Record<SystemRoleAttribute, SystemRole>;
|
|
44
44
|
userType: 'Admin' | 'Basic';
|
|
45
|
+
plan: 'Enterprise' | 'Basic';
|
|
45
46
|
}
|
|
47
|
+
export declare const getUserPlan: () => UserLogin['plan'];
|
|
46
48
|
export declare const getTransactionRole: (
|
|
47
49
|
name: keyof UserLogin['transactionRoles'],
|
|
48
50
|
) => TransactionRole;
|
package/wangsvue-fats.js
CHANGED
|
@@ -1159,7 +1159,10 @@ const une = (t, e = !1) => Object.keys(Xb(t, e)).map(Number), Xb = (t, e = !1) =
|
|
|
1159
1159
|
const r = i.checked && !i.partialChecked, o = e || n != "-1";
|
|
1160
1160
|
return r && o;
|
|
1161
1161
|
})
|
|
1162
|
-
),
|
|
1162
|
+
), cne = () => {
|
|
1163
|
+
const { plan: t } = JSON.parse(localStorage.getItem("user") ?? "{}");
|
|
1164
|
+
return t;
|
|
1165
|
+
}, Js = (t) => {
|
|
1163
1166
|
const { transactionRoles: e } = JSON.parse(
|
|
1164
1167
|
localStorage.getItem("user") ?? "{}"
|
|
1165
1168
|
);
|
|
@@ -1179,44 +1182,44 @@ const une = (t, e = !1) => Object.keys(Xb(t, e)).map(Number), Xb = (t, e = !1) =
|
|
|
1179
1182
|
update: !1,
|
|
1180
1183
|
delete: !1
|
|
1181
1184
|
};
|
|
1182
|
-
},
|
|
1185
|
+
}, dne = (t) => B3(t).view, fne = (t) => {
|
|
1183
1186
|
const { manager: e, staff: n, monitoringReport: i } = Js(t);
|
|
1184
1187
|
return e || n || i;
|
|
1185
|
-
},
|
|
1188
|
+
}, pne = (t) => {
|
|
1186
1189
|
const { manager: e } = Js(t);
|
|
1187
1190
|
return e;
|
|
1188
|
-
},
|
|
1191
|
+
}, hne = () => {
|
|
1189
1192
|
const { transactionRoles: t } = JSON.parse(
|
|
1190
1193
|
localStorage.getItem("user") ?? "{}"
|
|
1191
1194
|
);
|
|
1192
1195
|
return Object.entries(t).some(([, e]) => e.manager);
|
|
1193
|
-
},
|
|
1196
|
+
}, mne = () => {
|
|
1194
1197
|
const { transactionRoles: t } = JSON.parse(
|
|
1195
1198
|
localStorage.getItem("user") ?? "{}"
|
|
1196
1199
|
);
|
|
1197
1200
|
return Object.entries(t).some(
|
|
1198
1201
|
([, e]) => e.monitoringReport
|
|
1199
1202
|
);
|
|
1200
|
-
},
|
|
1203
|
+
}, gne = (t) => {
|
|
1201
1204
|
const { staff: e } = Js(t);
|
|
1202
1205
|
return e;
|
|
1203
|
-
},
|
|
1206
|
+
}, vne = (t) => {
|
|
1204
1207
|
const { monitoringReport: e } = Js(t);
|
|
1205
1208
|
return e;
|
|
1206
|
-
},
|
|
1209
|
+
}, yne = (t) => {
|
|
1207
1210
|
const { approver: e } = Js(t);
|
|
1208
1211
|
return e;
|
|
1209
|
-
},
|
|
1212
|
+
}, bne = (t, e, n) => {
|
|
1210
1213
|
const { userType: i } = JSON.parse(
|
|
1211
1214
|
localStorage.getItem("user") ?? "{}"
|
|
1212
1215
|
), { hasAccess: r } = t.meta;
|
|
1213
1216
|
(i === "Admin" || t.path.includes("handover-confirmation")) && r ? n() : Ch("/not-found");
|
|
1214
|
-
},
|
|
1217
|
+
}, Ane = (t, e) => {
|
|
1215
1218
|
window.addEventListener(
|
|
1216
1219
|
t === "group" ? "groupSidebarChanged" : "categorySidebarChanged",
|
|
1217
1220
|
e
|
|
1218
1221
|
);
|
|
1219
|
-
},
|
|
1222
|
+
}, wne = (t, e) => {
|
|
1220
1223
|
window.removeEventListener(
|
|
1221
1224
|
t === "group" ? "groupSidebarChanged" : "categorySidebarChanged",
|
|
1222
1225
|
e
|
|
@@ -1466,7 +1469,7 @@ const une = (t, e = !1) => Object.keys(Xb(t, e)).map(Number), Xb = (t, e = !1) =
|
|
|
1466
1469
|
}, z3 = (t) => (
|
|
1467
1470
|
// Use Sweden locale, which uses ISO 8601 format: https://stackoverflow.com/a/58633651/27534858
|
|
1468
1471
|
new Date(t).toLocaleString("sv")
|
|
1469
|
-
),
|
|
1472
|
+
), Sne = (t, e) => {
|
|
1470
1473
|
const n = Math.floor(
|
|
1471
1474
|
((/* @__PURE__ */ new Date()).valueOf() - new Date(t).valueOf()) / 1e3
|
|
1472
1475
|
);
|
|
@@ -3395,7 +3398,7 @@ const Ul = ({ icons: t, template: e } = {}) => {
|
|
|
3395
3398
|
currency: "USD",
|
|
3396
3399
|
symbol: "$",
|
|
3397
3400
|
locale: "en-US"
|
|
3398
|
-
},
|
|
3401
|
+
}, Cne = (t, e, n = !0) => {
|
|
3399
3402
|
const { locale: i, currency: r } = ap(e);
|
|
3400
3403
|
return t == null ? "-" : Number(t).toLocaleString(i, {
|
|
3401
3404
|
style: n ? "currency" : void 0,
|
|
@@ -3931,7 +3934,7 @@ function ka(t) {
|
|
|
3931
3934
|
return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
|
|
3932
3935
|
}, ka(t);
|
|
3933
3936
|
}
|
|
3934
|
-
var
|
|
3937
|
+
var kne = x9.extend("tooltip", {
|
|
3935
3938
|
beforeMount: function(e, n) {
|
|
3936
3939
|
var i, r = this.getTarget(e);
|
|
3937
3940
|
if (r.$_ptooltipModifiers = this.getModifiers(n), n.value) {
|
|
@@ -4129,7 +4132,7 @@ var Cne = x9.extend("tooltip", {
|
|
|
4129
4132
|
}
|
|
4130
4133
|
}
|
|
4131
4134
|
});
|
|
4132
|
-
const
|
|
4135
|
+
const One = {
|
|
4133
4136
|
mounted: async (t) => {
|
|
4134
4137
|
const e = t.tagName.toLowerCase() === "input", n = t.tagName.toLowerCase() === "button";
|
|
4135
4138
|
wt(() => {
|
|
@@ -5442,7 +5445,7 @@ function v8(t, e) {
|
|
|
5442
5445
|
errors: [...t.errors, ...e.errors]
|
|
5443
5446
|
} : t;
|
|
5444
5447
|
}
|
|
5445
|
-
const
|
|
5448
|
+
const Tne = () => {
|
|
5446
5449
|
const { values: t, handleSubmit: e, setValues: n, setFieldValue: i } = Lh();
|
|
5447
5450
|
return {
|
|
5448
5451
|
values: t,
|
|
@@ -5450,7 +5453,7 @@ const One = () => {
|
|
|
5450
5453
|
setValues: n,
|
|
5451
5454
|
setFieldValue: i
|
|
5452
5455
|
};
|
|
5453
|
-
},
|
|
5456
|
+
}, xne = (t, e, n) => un(t, e, n), fi = re(), M0 = "messages";
|
|
5454
5457
|
let ki;
|
|
5455
5458
|
const E0 = () => {
|
|
5456
5459
|
try {
|
|
@@ -5532,12 +5535,12 @@ const E0 = () => {
|
|
|
5532
5535
|
e.config.globalProperties.$i18n = t, e.config.globalProperties.$t = t.t, e.provide("i18n", t);
|
|
5533
5536
|
}
|
|
5534
5537
|
};
|
|
5535
|
-
}, w8 = (t) => (ki = t, A8()),
|
|
5538
|
+
}, w8 = (t) => (ki = t, A8()), Mne = w8(_6), S8 = (t, e) => {
|
|
5536
5539
|
e.forEach((n) => {
|
|
5537
5540
|
const i = t.document.createElement("link");
|
|
5538
5541
|
i.setAttribute("rel", "stylesheet"), i.setAttribute("type", "text/css"), i.setAttribute("href", n), t.document.head.appendChild(i);
|
|
5539
5542
|
});
|
|
5540
|
-
},
|
|
5543
|
+
}, Ene = {
|
|
5541
5544
|
install(t, e = {}) {
|
|
5542
5545
|
t.config.globalProperties.$htmlToPaper = (n, i, r = () => {
|
|
5543
5546
|
}) => {
|
|
@@ -10096,7 +10099,7 @@ const co = /* @__PURE__ */ Ce({
|
|
|
10096
10099
|
}, oT = {
|
|
10097
10100
|
key: 1,
|
|
10098
10101
|
class: "flex gap-1 justify-end items-center"
|
|
10099
|
-
}, sT = { class: "text-general-800 font-normal text-xs" },
|
|
10102
|
+
}, sT = { class: "text-general-800 font-normal text-xs" }, Rne = /* @__PURE__ */ Ce({
|
|
10100
10103
|
__name: "ApproverInfo",
|
|
10101
10104
|
props: {
|
|
10102
10105
|
approvals: {},
|
|
@@ -10205,7 +10208,7 @@ const co = /* @__PURE__ */ Ce({
|
|
|
10205
10208
|
], 64);
|
|
10206
10209
|
};
|
|
10207
10210
|
}
|
|
10208
|
-
}), aT = { key: 0 },
|
|
10211
|
+
}), aT = { key: 0 }, Nne = /* @__PURE__ */ Ce({
|
|
10209
10212
|
__name: "BadgeGroup",
|
|
10210
10213
|
props: {
|
|
10211
10214
|
labels: {},
|
|
@@ -11705,7 +11708,7 @@ const aA = (t, e) => {
|
|
|
11705
11708
|
], 16, PT);
|
|
11706
11709
|
};
|
|
11707
11710
|
}
|
|
11708
|
-
}), RT = ["href", "title", "onClick"], NT = ["textContent"],
|
|
11711
|
+
}), RT = ["href", "title", "onClick"], NT = ["textContent"], Bne = /* @__PURE__ */ Ce({
|
|
11709
11712
|
__name: "Breadcrumb",
|
|
11710
11713
|
props: {
|
|
11711
11714
|
menus: {}
|
|
@@ -14017,7 +14020,7 @@ const wx = /* @__PURE__ */ Ce({
|
|
|
14017
14020
|
]);
|
|
14018
14021
|
};
|
|
14019
14022
|
}
|
|
14020
|
-
}),
|
|
14023
|
+
}), Vne = /* @__PURE__ */ Ce({
|
|
14021
14024
|
__name: "ButtonCopy",
|
|
14022
14025
|
props: {
|
|
14023
14026
|
text: {}
|
|
@@ -14073,7 +14076,7 @@ const wx = /* @__PURE__ */ Ce({
|
|
|
14073
14076
|
}, Cx = {
|
|
14074
14077
|
key: 0,
|
|
14075
14078
|
class: "inherit text-xs"
|
|
14076
|
-
},
|
|
14079
|
+
}, $ne = /* @__PURE__ */ Ce({
|
|
14077
14080
|
__name: "ButtonDownload",
|
|
14078
14081
|
props: {
|
|
14079
14082
|
fileName: {},
|
|
@@ -17372,7 +17375,7 @@ const Gh = /* @__PURE__ */ Ce({
|
|
|
17372
17375
|
]), 1032, ["visible", "allow-empty-selection", "auto-select-all", "disable-keys", "disable-node-all", "exact-disable-key", "exact-disable-keys", "excluded-keys", "fetch-tree", "flatten-disposable-node", "header", "hidden", "keys", "params", "readonly", "selection-mode", "show-disposable-groups", "type"]))
|
|
17373
17376
|
], 64));
|
|
17374
17377
|
}
|
|
17375
|
-
}),
|
|
17378
|
+
}), zne = /* @__PURE__ */ Ce({
|
|
17376
17379
|
__name: "ButtonSync",
|
|
17377
17380
|
props: {
|
|
17378
17381
|
withoutScanBtn: { type: Boolean }
|
|
@@ -17478,7 +17481,7 @@ const Gh = /* @__PURE__ */ Ce({
|
|
|
17478
17481
|
_: 1
|
|
17479
17482
|
}, 16));
|
|
17480
17483
|
}
|
|
17481
|
-
}),
|
|
17484
|
+
}), Fne = /* @__PURE__ */ Ce({
|
|
17482
17485
|
__name: "ButtonToggle",
|
|
17483
17486
|
setup(t) {
|
|
17484
17487
|
return (e, n) => (g(), I(CA));
|
|
@@ -24597,7 +24600,7 @@ const Au = "Checking availability...", Qs = /* @__PURE__ */ Ce({
|
|
|
24597
24600
|
_: 3
|
|
24598
24601
|
}, 8, ["info", "label", "label-class", "mandatory"]));
|
|
24599
24602
|
}
|
|
24600
|
-
}), _L = { class: "'!mt-0 font-light text-xs text-general-500'" }, QL = 1048576,
|
|
24603
|
+
}), _L = { class: "'!mt-0 font-light text-xs text-general-500'" }, QL = 1048576, Hne = /* @__PURE__ */ Ce({
|
|
24601
24604
|
__name: "FileUpload",
|
|
24602
24605
|
props: /* @__PURE__ */ vn({
|
|
24603
24606
|
accept: {},
|
|
@@ -27405,7 +27408,7 @@ const P1 = [
|
|
|
27405
27408
|
}, 8, ["visible", "header"])
|
|
27406
27409
|
], 64));
|
|
27407
27410
|
}
|
|
27408
|
-
}), OR = ["id", "disabled", "placeholder"],
|
|
27411
|
+
}), OR = ["id", "disabled", "placeholder"], jne = /* @__PURE__ */ Ce({
|
|
27409
27412
|
__name: "InputBadge",
|
|
27410
27413
|
props: {
|
|
27411
27414
|
type: { default: "text" },
|
|
@@ -27807,7 +27810,7 @@ const P1 = [
|
|
|
27807
27810
|
} : void 0
|
|
27808
27811
|
]), 1032, ["info", "label", "mandatory", "tooltip-pos"]));
|
|
27809
27812
|
}
|
|
27810
|
-
}),
|
|
27813
|
+
}), Une = /* @__PURE__ */ Ce({
|
|
27811
27814
|
__name: "InputCurrency",
|
|
27812
27815
|
props: {
|
|
27813
27816
|
modelValue: {},
|
|
@@ -27926,7 +27929,7 @@ const P1 = [
|
|
|
27926
27929
|
_: 1
|
|
27927
27930
|
}, 16, ["modelValue", "input-id", "input-number-class", "locale"]));
|
|
27928
27931
|
}
|
|
27929
|
-
}),
|
|
27932
|
+
}), Kne = /* @__PURE__ */ Ce({
|
|
27930
27933
|
__name: "InputEmail",
|
|
27931
27934
|
props: {
|
|
27932
27935
|
allowedCharacters: {},
|
|
@@ -27969,7 +27972,7 @@ const P1 = [
|
|
|
27969
27972
|
"validate-on-blur": ""
|
|
27970
27973
|
}), null, 16));
|
|
27971
27974
|
}
|
|
27972
|
-
}),
|
|
27975
|
+
}), Wne = /* @__PURE__ */ Ce({
|
|
27973
27976
|
__name: "InputOtp",
|
|
27974
27977
|
props: {
|
|
27975
27978
|
disabled: { type: Boolean },
|
|
@@ -28483,7 +28486,7 @@ function VR(t, e, n, i, r, o) {
|
|
|
28483
28486
|
}, 8, ["appendTo"])], 16);
|
|
28484
28487
|
}
|
|
28485
28488
|
N2.render = VR;
|
|
28486
|
-
const $R = ["onClick"], zR = ["onClick"],
|
|
28489
|
+
const $R = ["onClick"], zR = ["onClick"], Xne = /* @__PURE__ */ Ce({
|
|
28487
28490
|
__name: "InputPassword",
|
|
28488
28491
|
props: {
|
|
28489
28492
|
modelValue: {},
|
|
@@ -29028,7 +29031,7 @@ function kj() {
|
|
|
29028
29031
|
const Oj = {
|
|
29029
29032
|
class: "grid grid-cols-[max-content,auto] w-full",
|
|
29030
29033
|
"data-wv-section": "phone-number-input-wrapper"
|
|
29031
|
-
}, Tj = { class: "flex gap-2" }, xj = ["src"],
|
|
29034
|
+
}, Tj = { class: "flex gap-2" }, xj = ["src"], Zne = /* @__PURE__ */ Ce({
|
|
29032
29035
|
__name: "InputPhoneNumber",
|
|
29033
29036
|
props: {
|
|
29034
29037
|
modelValue: {},
|
|
@@ -29351,7 +29354,7 @@ const Oj = {
|
|
|
29351
29354
|
} : void 0
|
|
29352
29355
|
]), 1040));
|
|
29353
29356
|
}
|
|
29354
|
-
}),
|
|
29357
|
+
}), Gne = /* @__PURE__ */ Ce({
|
|
29355
29358
|
__name: "LiteDropdown",
|
|
29356
29359
|
props: /* @__PURE__ */ vn({
|
|
29357
29360
|
modelValue: { type: [String, Number, Boolean, Object] },
|
|
@@ -29490,7 +29493,7 @@ const Oj = {
|
|
|
29490
29493
|
], 8, Ij);
|
|
29491
29494
|
};
|
|
29492
29495
|
}
|
|
29493
|
-
}),
|
|
29496
|
+
}), qne = /* @__PURE__ */ Ce({
|
|
29494
29497
|
__name: "LanguageSwitcher",
|
|
29495
29498
|
setup(t) {
|
|
29496
29499
|
pt(async () => {
|
|
@@ -29569,7 +29572,7 @@ const Oj = {
|
|
|
29569
29572
|
_: 1
|
|
29570
29573
|
}, 8, ["modelValue", "loading", "options"]));
|
|
29571
29574
|
}
|
|
29572
|
-
}),
|
|
29575
|
+
}), Jne = /* @__PURE__ */ Ce({
|
|
29573
29576
|
__name: "Loading",
|
|
29574
29577
|
setup(t) {
|
|
29575
29578
|
const { loading: e, message: n } = _i();
|
|
@@ -31390,7 +31393,7 @@ const dU = /* @__PURE__ */ Ce({
|
|
|
31390
31393
|
_: 3
|
|
31391
31394
|
}, 8, ["info", "label", "mandatory", "show-optional-text"]));
|
|
31392
31395
|
}
|
|
31393
|
-
}),
|
|
31396
|
+
}), Yne = /* @__PURE__ */ Ce({
|
|
31394
31397
|
__name: "Paginator",
|
|
31395
31398
|
props: /* @__PURE__ */ vn({
|
|
31396
31399
|
totalRecords: {},
|
|
@@ -31433,7 +31436,7 @@ const dU = /* @__PURE__ */ Ce({
|
|
|
31433
31436
|
_: 1
|
|
31434
31437
|
}, 16, ["rows", "template", "total-records"]));
|
|
31435
31438
|
}
|
|
31436
|
-
}),
|
|
31439
|
+
}), _ne = /* @__PURE__ */ Ce({
|
|
31437
31440
|
__name: "TabMenu",
|
|
31438
31441
|
props: {
|
|
31439
31442
|
menu: {},
|
|
@@ -52327,7 +52330,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
52327
52330
|
}, xQ = {
|
|
52328
52331
|
key: 1,
|
|
52329
52332
|
class: "grid grid-rows-[max-content,auto] gap-1"
|
|
52330
|
-
}, MQ = { class: "font-semibold whitespace-nowrap" },
|
|
52333
|
+
}, MQ = { class: "font-semibold whitespace-nowrap" }, eie = /* @__PURE__ */ Ce({
|
|
52331
52334
|
__name: "Timeline",
|
|
52332
52335
|
props: {
|
|
52333
52336
|
value: {},
|
|
@@ -52576,7 +52579,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
52576
52579
|
]);
|
|
52577
52580
|
};
|
|
52578
52581
|
}
|
|
52579
|
-
}),
|
|
52582
|
+
}), tie = /* @__PURE__ */ Ce({
|
|
52580
52583
|
__name: "ButtonAddByScan",
|
|
52581
52584
|
props: {
|
|
52582
52585
|
modelValue: {},
|
|
@@ -53194,7 +53197,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
53194
53197
|
}), nee = {
|
|
53195
53198
|
key: 0,
|
|
53196
53199
|
class: "flex gap-1 items-center"
|
|
53197
|
-
}, iee = { class: "text-primary-500 text-xs font-medium" },
|
|
53200
|
+
}, iee = { class: "text-primary-500 text-xs font-medium" }, nie = /* @__PURE__ */ Ce({
|
|
53198
53201
|
__name: "ButtonSelectUser",
|
|
53199
53202
|
props: {
|
|
53200
53203
|
fetchFunction: { type: Function },
|
|
@@ -53282,7 +53285,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
53282
53285
|
], 64);
|
|
53283
53286
|
};
|
|
53284
53287
|
}
|
|
53285
|
-
}),
|
|
53288
|
+
}), iie = /* @__PURE__ */ Ce({
|
|
53286
53289
|
__name: "ButtonViewLog",
|
|
53287
53290
|
props: {
|
|
53288
53291
|
showLog: { type: Boolean }
|
|
@@ -53307,7 +53310,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
53307
53310
|
key: 3,
|
|
53308
53311
|
class: "text-general-800 font-medium",
|
|
53309
53312
|
"data-ts-section": "confirmbody"
|
|
53310
|
-
},
|
|
53313
|
+
}, rie = /* @__PURE__ */ Ce({
|
|
53311
53314
|
__name: "DialogLinkedAsset",
|
|
53312
53315
|
props: {
|
|
53313
53316
|
header: {},
|
|
@@ -53443,7 +53446,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
53443
53446
|
} : void 0
|
|
53444
53447
|
]), 1040, ["confirm-label", "show-icon"]));
|
|
53445
53448
|
}
|
|
53446
|
-
}),
|
|
53449
|
+
}), oie = /* @__PURE__ */ Ce({
|
|
53447
53450
|
__name: "UserWithIcon",
|
|
53448
53451
|
props: {
|
|
53449
53452
|
user: {}
|
|
@@ -53455,7 +53458,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
53455
53458
|
"user-name-field": "fullName"
|
|
53456
53459
|
}, null, 8, ["user"]));
|
|
53457
53460
|
}
|
|
53458
|
-
}), uee = { class: "w-full" },
|
|
53461
|
+
}), uee = { class: "w-full" }, sie = /* @__PURE__ */ Ce({
|
|
53459
53462
|
__name: "InputSearch",
|
|
53460
53463
|
emits: ["search"],
|
|
53461
53464
|
setup(t, { emit: e }) {
|
|
@@ -53504,7 +53507,7 @@ const E_ = /* @__PURE__ */ Ce({
|
|
|
53504
53507
|
}), cee = {
|
|
53505
53508
|
class: "flex gap-1 items-center text-placeholder",
|
|
53506
53509
|
"data-section-name": "transaction-role-lists"
|
|
53507
|
-
},
|
|
53510
|
+
}, aie = /* @__PURE__ */ Ce({
|
|
53508
53511
|
__name: "TransactionRoles",
|
|
53509
53512
|
props: {
|
|
53510
53513
|
asset: {},
|
|
@@ -55291,7 +55294,7 @@ const Vb = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABXCAYAAACAw4LhAA
|
|
|
55291
55294
|
background-size: 120%;
|
|
55292
55295
|
}
|
|
55293
55296
|
}
|
|
55294
|
-
`, Ste = "Q*2D1AB4",
|
|
55297
|
+
`, Ste = "Q*2D1AB4", lie = /* @__PURE__ */ Ce({
|
|
55295
55298
|
__name: "DialogPrintQR",
|
|
55296
55299
|
props: {
|
|
55297
55300
|
visible: { type: Boolean }
|
|
@@ -55637,7 +55640,7 @@ const Vb = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABXCAYAAACAw4LhAA
|
|
|
55637
55640
|
], xte = { class: "flex flex-col gap-2" }, Mte = {
|
|
55638
55641
|
class: "flex items-center gap-1",
|
|
55639
55642
|
"data-ts-section": "dialog-asset-name-detail-action-group"
|
|
55640
|
-
}, Ete = { class: "flex items-center gap-3 text-body-medium mr-auto" }, Ite = { class: "font-bold" },
|
|
55643
|
+
}, Ete = { class: "flex items-center gap-3 text-body-medium mr-auto" }, Ite = { class: "font-bold" }, uie = /* @__PURE__ */ Ce({
|
|
55641
55644
|
__name: "DialogAssetNameDetail",
|
|
55642
55645
|
props: {
|
|
55643
55646
|
header: { default: "Asset Name Detail" },
|
|
@@ -55855,7 +55858,7 @@ const Vb = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABXCAYAAACAw4LhAA
|
|
|
55855
55858
|
}, Vte = { class: "flex" }, $te = {
|
|
55856
55859
|
key: 0,
|
|
55857
55860
|
class: "flex mr-1"
|
|
55858
|
-
},
|
|
55861
|
+
}, cie = /* @__PURE__ */ Ce({
|
|
55859
55862
|
__name: "DialogReportDamage",
|
|
55860
55863
|
props: {
|
|
55861
55864
|
id: {},
|
|
@@ -56068,7 +56071,7 @@ const Vb = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABXCAYAAACAw4LhAA
|
|
|
56068
56071
|
}, null, 8, ["id", "visible"])
|
|
56069
56072
|
], 64));
|
|
56070
56073
|
}
|
|
56071
|
-
}), zte = { class: "font-bold" }, Fte = { class: "flex flex-col gap-3" },
|
|
56074
|
+
}), zte = { class: "font-bold" }, Fte = { class: "flex flex-col gap-3" }, die = /* @__PURE__ */ Ce({
|
|
56072
56075
|
__name: "DialogReportMissing",
|
|
56073
56076
|
props: {
|
|
56074
56077
|
id: {},
|
|
@@ -56609,7 +56612,7 @@ const Vb = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABXCAYAAACAw4LhAA
|
|
|
56609
56612
|
}, Gte = {
|
|
56610
56613
|
class: "text-general-800 font-bold text-base leading-[21.86px] tracking-[0.02em]",
|
|
56611
56614
|
"data-ts-section": "pagetitle"
|
|
56612
|
-
},
|
|
56615
|
+
}, fie = /* @__PURE__ */ Ce({
|
|
56613
56616
|
__name: "DisposalReport",
|
|
56614
56617
|
props: {
|
|
56615
56618
|
router: {},
|
|
@@ -56830,115 +56833,116 @@ const Vb = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABXCAYAAACAw4LhAA
|
|
|
56830
56833
|
locale: Qte,
|
|
56831
56834
|
defaultProps: _te,
|
|
56832
56835
|
useToastConfig: p0
|
|
56833
|
-
},
|
|
56836
|
+
}, pie = V7(ene);
|
|
56834
56837
|
export {
|
|
56835
|
-
|
|
56838
|
+
Rne as ApproverInfo,
|
|
56836
56839
|
_m as AssetInfo,
|
|
56837
56840
|
_t as Badge,
|
|
56838
|
-
|
|
56841
|
+
Nne as BadgeGroup,
|
|
56839
56842
|
DT as BaseTree,
|
|
56840
|
-
|
|
56843
|
+
Bne as Breadcrumb,
|
|
56841
56844
|
je as Button,
|
|
56842
|
-
|
|
56845
|
+
tie as ButtonAddByScan,
|
|
56843
56846
|
wx as ButtonBulkAction,
|
|
56844
|
-
|
|
56845
|
-
|
|
56847
|
+
Vne as ButtonCopy,
|
|
56848
|
+
$ne as ButtonDownload,
|
|
56846
56849
|
Xh as ButtonFilter,
|
|
56847
56850
|
Tx as ButtonRadio,
|
|
56848
56851
|
ac as ButtonScan,
|
|
56849
56852
|
Gh as ButtonSearch,
|
|
56850
56853
|
VM as ButtonSearchByScan,
|
|
56851
56854
|
YM as ButtonSelectTree,
|
|
56852
|
-
|
|
56853
|
-
|
|
56854
|
-
|
|
56855
|
-
|
|
56855
|
+
nie as ButtonSelectUser,
|
|
56856
|
+
zne as ButtonSync,
|
|
56857
|
+
Fne as ButtonToggle,
|
|
56858
|
+
iie as ButtonViewLog,
|
|
56856
56859
|
RE as Calendar,
|
|
56857
56860
|
zE as Card,
|
|
56858
56861
|
Io as Checkbox,
|
|
56859
56862
|
_h as DataTable,
|
|
56860
56863
|
co as Dialog,
|
|
56861
|
-
|
|
56864
|
+
uie as DialogAssetNameDetail,
|
|
56862
56865
|
Ei as DialogConfirm,
|
|
56863
56866
|
Qh as DialogForm,
|
|
56864
|
-
|
|
56865
|
-
|
|
56866
|
-
|
|
56867
|
-
|
|
56867
|
+
rie as DialogLinkedAsset,
|
|
56868
|
+
lie as DialogPrintQR,
|
|
56869
|
+
cie as DialogReportDamage,
|
|
56870
|
+
die as DialogReportMissing,
|
|
56868
56871
|
Lte as DialogReportTag,
|
|
56869
56872
|
qM as DialogSelectTree,
|
|
56870
56873
|
tee as DialogSelectUser,
|
|
56871
|
-
|
|
56874
|
+
fie as DisposalReport,
|
|
56872
56875
|
ul as Dropdown,
|
|
56873
|
-
|
|
56876
|
+
Hne as FileUpload,
|
|
56874
56877
|
Qm as FilterContainer,
|
|
56875
|
-
|
|
56878
|
+
One as Focus,
|
|
56876
56879
|
i2 as Form,
|
|
56877
56880
|
De as Icon,
|
|
56878
56881
|
Ko as Image,
|
|
56879
56882
|
kR as ImageCompressor,
|
|
56880
56883
|
Xx as InlineMessage,
|
|
56881
|
-
|
|
56882
|
-
|
|
56883
|
-
|
|
56884
|
+
jne as InputBadge,
|
|
56885
|
+
Une as InputCurrency,
|
|
56886
|
+
Kne as InputEmail,
|
|
56884
56887
|
D2 as InputNumber,
|
|
56885
|
-
|
|
56886
|
-
|
|
56887
|
-
|
|
56888
|
+
Wne as InputOtp,
|
|
56889
|
+
Xne as InputPassword,
|
|
56890
|
+
Zne as InputPhoneNumber,
|
|
56888
56891
|
Ej as InputRangeNumber,
|
|
56889
|
-
|
|
56892
|
+
sie as InputSearch,
|
|
56890
56893
|
Qs as InputText,
|
|
56891
56894
|
N1 as InputURL,
|
|
56892
56895
|
vR as InvisibleField,
|
|
56893
|
-
|
|
56894
|
-
|
|
56895
|
-
|
|
56896
|
+
qne as LanguageSwitcher,
|
|
56897
|
+
Gne as LiteDropdown,
|
|
56898
|
+
Jne as Loading,
|
|
56896
56899
|
jh as Menu,
|
|
56897
56900
|
dU as MultiSelect,
|
|
56898
56901
|
dd as OverlayPanel,
|
|
56899
|
-
|
|
56900
|
-
|
|
56902
|
+
Yne as Paginator,
|
|
56903
|
+
_ne as TabMenu,
|
|
56901
56904
|
hU as TagType,
|
|
56902
56905
|
gd as Textarea,
|
|
56903
|
-
|
|
56906
|
+
eie as Timeline,
|
|
56904
56907
|
Os as Toast,
|
|
56905
56908
|
lne as ToastService,
|
|
56906
56909
|
CA as ToggleSwitch,
|
|
56907
|
-
|
|
56908
|
-
|
|
56910
|
+
kne as Tooltip,
|
|
56911
|
+
aie as TransactionRoles,
|
|
56909
56912
|
UM as Tree,
|
|
56910
56913
|
Ol as UserName,
|
|
56911
|
-
|
|
56912
|
-
|
|
56913
|
-
|
|
56914
|
-
|
|
56914
|
+
oie as UserWithIcon,
|
|
56915
|
+
Ene as VueHtmlToPaper,
|
|
56916
|
+
pie as WangsVue,
|
|
56917
|
+
bne as checkRouteAccess,
|
|
56915
56918
|
w8 as createI18nWithExtension,
|
|
56916
56919
|
We as eventBus,
|
|
56917
56920
|
ane as extendEventBus,
|
|
56918
56921
|
Xb as filterNodeKeys,
|
|
56919
56922
|
qb as flattenTreeNodeChildren,
|
|
56920
|
-
|
|
56923
|
+
Cne as formatCurrency,
|
|
56921
56924
|
Qu as formatDate,
|
|
56922
|
-
|
|
56925
|
+
Sne as formatDateReadable,
|
|
56923
56926
|
F3 as getStatusSeverity,
|
|
56924
56927
|
B3 as getSystemRole,
|
|
56925
56928
|
Js as getTransactionRole,
|
|
56926
|
-
|
|
56927
|
-
hne as
|
|
56928
|
-
|
|
56929
|
-
|
|
56930
|
-
|
|
56931
|
-
|
|
56932
|
-
|
|
56933
|
-
dne as
|
|
56934
|
-
|
|
56929
|
+
cne as getUserPlan,
|
|
56930
|
+
hne as hasAnyManagerRole,
|
|
56931
|
+
mne as hasAnyMonitoringReportRole,
|
|
56932
|
+
yne as hasApprovalRole,
|
|
56933
|
+
pne as hasManagerRole,
|
|
56934
|
+
vne as hasMonitoringReportRole,
|
|
56935
|
+
gne as hasStaffRole,
|
|
56936
|
+
dne as hasSystemRole,
|
|
56937
|
+
fne as hasTransactionRole,
|
|
56938
|
+
Mne as i18n,
|
|
56935
56939
|
xg as isEmptyObject,
|
|
56936
|
-
|
|
56940
|
+
Ane as listenSidebarChanges,
|
|
56937
56941
|
c3 as mitt,
|
|
56938
56942
|
une as parseNodeKeys,
|
|
56939
|
-
|
|
56940
|
-
|
|
56941
|
-
|
|
56943
|
+
wne as unListenSidebarChanges,
|
|
56944
|
+
xne as useField,
|
|
56945
|
+
Tne as useForm,
|
|
56942
56946
|
Kl as useI18n,
|
|
56943
56947
|
_i as useLoadingStore,
|
|
56944
56948
|
Yi as useToast
|