xyvcard-asset 0.0.22 → 0.0.24
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/{assign-DS84uCHm.mjs → assign-D4YB344H.mjs} +1 -1
- package/dist/{edit-CuEUJBMa.mjs → edit-Bwq5Vg9D.mjs} +1 -1
- package/dist/{edit--yj0Iybx.mjs → edit-D3zlqt11.mjs} +1 -1
- package/dist/{edit-BV3P-kiT.mjs → edit-DxvSeH5Y.mjs} +1 -1
- package/dist/{edit-BaWrwFgf.mjs → edit-yvYhMo5N.mjs} +1 -1
- package/dist/{edit.vue_vue_type_script_setup_true_lang-CSvQU9EU.mjs → edit.vue_vue_type_script_setup_true_lang-CA2vVvh7.mjs} +1 -1
- package/dist/{edit.vue_vue_type_script_setup_true_lang-NJMVf1bn.mjs → edit.vue_vue_type_script_setup_true_lang-CK2dpk1z.mjs} +1 -1
- package/dist/{edit.vue_vue_type_script_setup_true_lang-JZ4KujwQ.mjs → edit.vue_vue_type_script_setup_true_lang-D59t05Ec.mjs} +2 -2
- package/dist/{edit.vue_vue_type_script_setup_true_lang-BA4yxgQj.mjs → edit.vue_vue_type_script_setup_true_lang-DnzT146Q.mjs} +1 -1
- package/dist/{index-Dyo7je0Z.mjs → index-4gYJADQ3.mjs} +18 -3
- package/dist/{index-U9RubJnZ.mjs → index-BOS2gtjd.mjs} +1 -1
- package/dist/index-BmxQiLjm.mjs +287 -0
- package/dist/{index-DunHcdgk.mjs → index-Bx1vPk7S.mjs} +2 -2
- package/dist/{index-CyDCZO1f.mjs → index-CQE1DdOZ.mjs} +26 -23
- package/dist/{index-rSyUfdXn.mjs → index-CVU2G5rZ.mjs} +1 -1
- package/dist/{index-BcxOe2-n.mjs → index-DZAvRhPJ.mjs} +1 -1
- package/dist/index-Di8LMzmd.mjs +335 -0
- package/dist/{index-Br-xX9gN.mjs → index-DmX4B8mf.mjs} +2 -2
- package/dist/{index-C9hmVQif.mjs → index-DxQzN9_F.mjs} +2 -2
- package/dist/{index-CoeHKpWi.mjs → index-eTof-sqF.mjs} +1 -1
- package/dist/{index-DFm7gtx_.mjs → index-e_AlnW3A.mjs} +4 -4
- package/dist/{index-CGds22-2.mjs → index-eassrLOa.mjs} +1 -0
- package/dist/{index-Bvn3U9pm.mjs → index-hCldWS2K.mjs} +5 -5
- package/dist/{index-DycM8yjC.mjs → index-vfIgwaoQ.mjs} +23 -20
- package/dist/index.mjs +6 -3
- package/dts/api/asset/asset-inventory-record/index.d.ts +2 -1
- package/dts/api/asset/asset-inventory-record/types.d.ts +8 -1
- package/dts/lang/asset/zh-cn.d.ts +3 -0
- package/package.json +1 -1
- package/dist/index-Bb_sQScO.mjs +0 -169
- package/dist/index-hGjsHCRF.mjs +0 -320
@@ -0,0 +1,335 @@
|
|
1
|
+
import { defineComponent as G, ref as I, computed as J, onBeforeMount as O, resolveComponent as d, openBlock as V, createElementBlock as W, createVNode as o, withCtx as e, createTextVNode as i, toDisplayString as l, unref as _, createBlock as X, isRef as Z, createCommentVNode as x, createElementVNode as u } from "vue";
|
2
|
+
import { useUserStore as g, clearEmpty as y, request as h, useTableHooks as ee, routerUtil as te } from "jmash-core";
|
3
|
+
import { useI18n as ae } from "vue-i18n";
|
4
|
+
import { useRouter as le, useRoute as oe } from "vue-router";
|
5
|
+
import { q as ne, D as P, a as se } from "./index-eassrLOa.mjs";
|
6
|
+
import { c as re } from "./common-CshrwPyx.mjs";
|
7
|
+
class ie {
|
8
|
+
getKey(n) {
|
9
|
+
return {
|
10
|
+
recordId: n.recordId
|
11
|
+
};
|
12
|
+
}
|
13
|
+
// 查询翻页信息资产折旧记录
|
14
|
+
findPage(n) {
|
15
|
+
const m = g().user.tenant;
|
16
|
+
return y(n), h({
|
17
|
+
url: "/v1/asset/depreciation_record/page/" + m,
|
18
|
+
method: "get",
|
19
|
+
params: n
|
20
|
+
});
|
21
|
+
}
|
22
|
+
// 查询列表信息资产折旧记录
|
23
|
+
findList(n) {
|
24
|
+
const m = g().user.tenant;
|
25
|
+
return y(n), h({
|
26
|
+
url: "/v1/asset/depreciation_record/list/" + m,
|
27
|
+
method: "get",
|
28
|
+
params: n
|
29
|
+
});
|
30
|
+
}
|
31
|
+
// 查询资产折旧记录
|
32
|
+
findById(n) {
|
33
|
+
const m = g().user.tenant;
|
34
|
+
return y(n), h({
|
35
|
+
url: "/v1/asset/depreciation_record/id/" + m + "/" + n.recordId,
|
36
|
+
method: "get"
|
37
|
+
});
|
38
|
+
}
|
39
|
+
// 导出资产折旧记录Excel文件
|
40
|
+
exportExcel(n) {
|
41
|
+
const m = g().user.tenant;
|
42
|
+
y(n);
|
43
|
+
const v = ne.stringify(n, {
|
44
|
+
arrayFormat: "brackets",
|
45
|
+
allowDots: !0
|
46
|
+
});
|
47
|
+
return h({
|
48
|
+
url: "/v1/asset/depreciation_record/" + m + "/depreciation_records.xlsx?" + v,
|
49
|
+
method: "get",
|
50
|
+
responseType: "blob"
|
51
|
+
});
|
52
|
+
}
|
53
|
+
}
|
54
|
+
const C = new ie(), ue = { class: "app-container" }, de = { class: "cell-item" }, ce = { class: "cell-item" }, pe = { class: "cell-item" }, me = { class: "cell-item" }, fe = { class: "cell-item" }, _e = { class: "cell-item" }, ve = { class: "cell-item" }, be = { class: "cell-item" }, ge = { class: "cell-item" }, ye = { class: "cell-item" }, he = {
|
55
|
+
class: "search-container",
|
56
|
+
style: { border: "none" }
|
57
|
+
}, Ve = /* @__PURE__ */ G({
|
58
|
+
__name: "index",
|
59
|
+
setup(w) {
|
60
|
+
const { t: n } = ae(), m = le(), v = oe();
|
61
|
+
P.assetSortDictEnum.useEnumValues();
|
62
|
+
const s = I({
|
63
|
+
curPage: 1,
|
64
|
+
pageSize: 10,
|
65
|
+
assetId: v.query.assetId
|
66
|
+
}), r = I({}), Y = J(() => {
|
67
|
+
const t = r.value.oldMoney ?? 0, a = parseFloat(
|
68
|
+
r.value.totalDepreciation ?? "0"
|
69
|
+
), f = t - a;
|
70
|
+
return parseFloat(f.toFixed(2));
|
71
|
+
}), {
|
72
|
+
tableHooks: z,
|
73
|
+
multipleTableRef: E,
|
74
|
+
queryFormRef: B,
|
75
|
+
listLoading: M,
|
76
|
+
tableData: $,
|
77
|
+
total: b
|
78
|
+
} = ee(n, C, s);
|
79
|
+
let q = I([
|
80
|
+
// 折旧年月
|
81
|
+
{
|
82
|
+
label: "depreciationRecord.year",
|
83
|
+
prop: "years",
|
84
|
+
sortable: "custom",
|
85
|
+
isColumn: !0
|
86
|
+
},
|
87
|
+
// 月折旧额
|
88
|
+
{
|
89
|
+
label: "depreciationRecord.depreciationMoney",
|
90
|
+
prop: "depreciationMoney",
|
91
|
+
sortable: "custom",
|
92
|
+
isColumn: !0
|
93
|
+
}
|
94
|
+
]);
|
95
|
+
function F(t) {
|
96
|
+
s.value.year = re(t).getYear();
|
97
|
+
}
|
98
|
+
function L() {
|
99
|
+
te.closeTagView(v.fullPath, m, !1);
|
100
|
+
}
|
101
|
+
O(() => {
|
102
|
+
const t = v.query.assetId;
|
103
|
+
t ? (se.findById({ assetId: t }).then(({ data: a }) => {
|
104
|
+
r.value = a;
|
105
|
+
}), k({ assetId: t })) : $.value = [];
|
106
|
+
});
|
107
|
+
function k(t) {
|
108
|
+
C.findPage({ ...t }).then(({ data: { results: a, curPage: f, pageSize: D, totalSize: R } }) => {
|
109
|
+
a && ($.value = a, s.value.curPage = f, s.value.pageSize = D, b.value = R);
|
110
|
+
});
|
111
|
+
}
|
112
|
+
function T() {
|
113
|
+
k({ ...s.value });
|
114
|
+
}
|
115
|
+
function U() {
|
116
|
+
s.value.selectYear = "", k({
|
117
|
+
curPage: 1,
|
118
|
+
pageSize: 10,
|
119
|
+
assetId: v.query.assetId
|
120
|
+
});
|
121
|
+
}
|
122
|
+
return (t, a) => {
|
123
|
+
const f = d("el-button"), D = d("el-col"), R = d("el-row"), c = d("el-descriptions-item"), j = d("el-descriptions"), A = d("el-date-picker"), S = d("el-form-item"), N = d("el-form"), H = d("jmash-table"), Q = d("jmash-pagination"), K = d("el-card");
|
124
|
+
return V(), W("div", ue, [
|
125
|
+
o(K, {
|
126
|
+
shadow: "never",
|
127
|
+
class: "table-container"
|
128
|
+
}, {
|
129
|
+
header: e(() => [
|
130
|
+
o(R, { justify: "space-between" }, {
|
131
|
+
default: e(() => [
|
132
|
+
o(D, { span: 12 }, {
|
133
|
+
default: e(() => [
|
134
|
+
o(f, {
|
135
|
+
type: "primary",
|
136
|
+
onClick: L
|
137
|
+
}, {
|
138
|
+
default: e(() => [
|
139
|
+
i(l(t.$t("common.back")), 1)
|
140
|
+
]),
|
141
|
+
_: 1
|
142
|
+
})
|
143
|
+
]),
|
144
|
+
_: 1
|
145
|
+
})
|
146
|
+
]),
|
147
|
+
_: 1
|
148
|
+
})
|
149
|
+
]),
|
150
|
+
footer: e(() => [
|
151
|
+
_(b) > 0 ? (V(), X(Q, {
|
152
|
+
key: 0,
|
153
|
+
total: _(b),
|
154
|
+
"onUpdate:total": a[3] || (a[3] = (p) => Z(b) ? b.value = p : null),
|
155
|
+
"current-page": s.value.curPage,
|
156
|
+
"onUpdate:currentPage": a[4] || (a[4] = (p) => s.value.curPage = p),
|
157
|
+
"page-size": s.value.pageSize,
|
158
|
+
"onUpdate:pageSize": a[5] || (a[5] = (p) => s.value.pageSize = p),
|
159
|
+
onPagination: a[6] || (a[6] = (p) => _(z).getList())
|
160
|
+
}, null, 8, ["total", "current-page", "page-size"])) : x("", !0)
|
161
|
+
]),
|
162
|
+
default: e(() => [
|
163
|
+
a[7] || (a[7] = u("div", { class: "title-content" }, "资产信息", -1)),
|
164
|
+
o(j, {
|
165
|
+
class: "margin-top",
|
166
|
+
column: 2,
|
167
|
+
border: ""
|
168
|
+
}, {
|
169
|
+
default: e(() => [
|
170
|
+
o(c, null, {
|
171
|
+
label: e(() => [
|
172
|
+
u("div", de, l(t.$t("asset.name")), 1)
|
173
|
+
]),
|
174
|
+
default: e(() => [
|
175
|
+
i(" " + l(r.value.name), 1)
|
176
|
+
]),
|
177
|
+
_: 1
|
178
|
+
}),
|
179
|
+
o(c, null, {
|
180
|
+
label: e(() => [
|
181
|
+
u("div", ce, l(t.$t("asset.code")), 1)
|
182
|
+
]),
|
183
|
+
default: e(() => [
|
184
|
+
i(" " + l(r.value.code), 1)
|
185
|
+
]),
|
186
|
+
_: 1
|
187
|
+
}),
|
188
|
+
o(c, null, {
|
189
|
+
label: e(() => [
|
190
|
+
u("div", pe, l(t.$t("asset.number")) + "/" + l(t.$t("asset.unit")), 1)
|
191
|
+
]),
|
192
|
+
default: e(() => [
|
193
|
+
i(" " + l(r.value.number) + "/" + l(r.value.unit), 1)
|
194
|
+
]),
|
195
|
+
_: 1
|
196
|
+
}),
|
197
|
+
o(c, null, {
|
198
|
+
label: e(() => [
|
199
|
+
u("div", me, l(t.$t("asset.buyDate")), 1)
|
200
|
+
]),
|
201
|
+
default: e(() => [
|
202
|
+
i(" " + l(r.value.buyDate), 1)
|
203
|
+
]),
|
204
|
+
_: 1
|
205
|
+
}),
|
206
|
+
o(c, null, {
|
207
|
+
label: e(() => [
|
208
|
+
u("div", fe, l(t.$t("asset.assetSort")), 1)
|
209
|
+
]),
|
210
|
+
default: e(() => [
|
211
|
+
i(" " + l(_(P).assetSortDictEnum.getEnumValue(
|
212
|
+
r.value.assetSort
|
213
|
+
)), 1)
|
214
|
+
]),
|
215
|
+
_: 1
|
216
|
+
}),
|
217
|
+
o(c, null, {
|
218
|
+
label: e(() => [
|
219
|
+
u("div", _e, l(t.$t("asset.useLimit")), 1)
|
220
|
+
]),
|
221
|
+
default: e(() => [
|
222
|
+
i(" " + l(r.value.useLimit), 1)
|
223
|
+
]),
|
224
|
+
_: 1
|
225
|
+
}),
|
226
|
+
o(c, null, {
|
227
|
+
label: e(() => [
|
228
|
+
u("div", ve, l(t.$t("asset.oldMoney")), 1)
|
229
|
+
]),
|
230
|
+
default: e(() => [
|
231
|
+
i(" " + l(r.value.oldMoney), 1)
|
232
|
+
]),
|
233
|
+
_: 1
|
234
|
+
}),
|
235
|
+
o(c, null, {
|
236
|
+
label: e(() => [
|
237
|
+
u("div", be, l(t.$t("asset.netSalvage")), 1)
|
238
|
+
]),
|
239
|
+
default: e(() => [
|
240
|
+
i(" " + l(r.value.netSalvage), 1)
|
241
|
+
]),
|
242
|
+
_: 1
|
243
|
+
}),
|
244
|
+
o(c, null, {
|
245
|
+
label: e(() => [
|
246
|
+
u("div", ge, l(t.$t("depreciationRecord.netAssetValue")), 1)
|
247
|
+
]),
|
248
|
+
default: e(() => [
|
249
|
+
i(" " + l(Y.value), 1)
|
250
|
+
]),
|
251
|
+
_: 1
|
252
|
+
}),
|
253
|
+
o(c, null, {
|
254
|
+
label: e(() => [
|
255
|
+
u("div", ye, l(t.$t("depreciationRecord.totalDepreciation")), 1)
|
256
|
+
]),
|
257
|
+
default: e(() => [
|
258
|
+
i(" " + l(r.value.totalDepreciation), 1)
|
259
|
+
]),
|
260
|
+
_: 1
|
261
|
+
})
|
262
|
+
]),
|
263
|
+
_: 1
|
264
|
+
}),
|
265
|
+
a[8] || (a[8] = u("div", { class: "title-content" }, "折旧记录", -1)),
|
266
|
+
u("div", he, [
|
267
|
+
o(N, {
|
268
|
+
ref_key: "queryFormRef",
|
269
|
+
ref: B,
|
270
|
+
model: s.value,
|
271
|
+
inline: !0
|
272
|
+
}, {
|
273
|
+
default: e(() => [
|
274
|
+
o(S, {
|
275
|
+
label: t.$t("depreciationRecord.years"),
|
276
|
+
prop: "selectYear"
|
277
|
+
}, {
|
278
|
+
default: e(() => [
|
279
|
+
o(A, {
|
280
|
+
modelValue: s.value.selectYear,
|
281
|
+
"onUpdate:modelValue": a[0] || (a[0] = (p) => s.value.selectYear = p),
|
282
|
+
type: "year",
|
283
|
+
format: "YYYY",
|
284
|
+
placeholder: t.$t("depreciationRecord.yearPlaceholder"),
|
285
|
+
onChange: F
|
286
|
+
}, null, 8, ["modelValue", "placeholder"])
|
287
|
+
]),
|
288
|
+
_: 1
|
289
|
+
}, 8, ["label"]),
|
290
|
+
o(S, { class: "search-btn" }, {
|
291
|
+
default: e(() => [
|
292
|
+
o(f, {
|
293
|
+
type: "primary",
|
294
|
+
onClick: a[1] || (a[1] = (p) => T())
|
295
|
+
}, {
|
296
|
+
default: e(() => [
|
297
|
+
i(l(t.$t("common.search")), 1)
|
298
|
+
]),
|
299
|
+
_: 1
|
300
|
+
}),
|
301
|
+
o(f, {
|
302
|
+
onClick: a[2] || (a[2] = (p) => U())
|
303
|
+
}, {
|
304
|
+
default: e(() => [
|
305
|
+
i(l(t.$t("common.reset")), 1)
|
306
|
+
]),
|
307
|
+
_: 1
|
308
|
+
})
|
309
|
+
]),
|
310
|
+
_: 1
|
311
|
+
})
|
312
|
+
]),
|
313
|
+
_: 1
|
314
|
+
}, 8, ["model"])
|
315
|
+
]),
|
316
|
+
o(H, {
|
317
|
+
ref_key: "multipleTableRef",
|
318
|
+
ref: E,
|
319
|
+
class: "table-top",
|
320
|
+
"row-key": "assetId",
|
321
|
+
"is-selection": !1,
|
322
|
+
"list-loading": _(M),
|
323
|
+
data: _($),
|
324
|
+
"table-label": _(q)
|
325
|
+
}, null, 8, ["list-loading", "data", "table-label"])
|
326
|
+
]),
|
327
|
+
_: 1
|
328
|
+
})
|
329
|
+
]);
|
330
|
+
};
|
331
|
+
}
|
332
|
+
});
|
333
|
+
export {
|
334
|
+
Ve as default
|
335
|
+
};
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { defineComponent as le, ref as _, reactive as R, resolveComponent as i, resolveDirective as ae, openBlock as d, createElementBlock as S, createElementVNode as m, createVNode as o, withCtx as l, unref as s, toDisplayString as r, Fragment as oe, renderList as se, createBlock as I, withKeys as L, createTextVNode as g, withDirectives as $, isRef as z, createCommentVNode as j } from "vue";
|
2
|
-
import { D as p, b as ne, S as ie } from "./index-
|
2
|
+
import { D as p, b as ne, S as ie } from "./index-eassrLOa.mjs";
|
3
3
|
import { useI18n as re } from "vue-i18n";
|
4
|
-
import { _ as ue } from "./edit.vue_vue_type_script_setup_true_lang-
|
4
|
+
import { _ as ue } from "./edit.vue_vue_type_script_setup_true_lang-CK2dpk1z.mjs";
|
5
5
|
import { useTableHooks as de } from "jmash-core";
|
6
6
|
const me = { class: "app-container" }, pe = { class: "search-container" }, ce = ["onClick"], ve = ["onClick"], Ie = /* @__PURE__ */ le({
|
7
7
|
__name: "index",
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { defineComponent as M, ref as y, onBeforeMount as j, resolveComponent as c, openBlock as v, createElementBlock as k, createVNode as s, withCtx as e, createTextVNode as n, toDisplayString as t, unref as r, createBlock as h, isRef as K, createCommentVNode as b, createElementVNode as l } from "vue";
|
2
2
|
import { useRouter as U, useRoute as O } from "vue-router";
|
3
|
-
import { D as p, a as A, C as H } from "./index-
|
3
|
+
import { D as p, a as A, C as H } from "./index-eassrLOa.mjs";
|
4
4
|
import { useTableHooks as Q, routerUtil as F } from "jmash-core";
|
5
5
|
import { useI18n as G } from "vue-i18n";
|
6
|
-
import { a as C } from "./index-
|
6
|
+
import { a as C } from "./index-CVU2G5rZ.mjs";
|
7
7
|
const J = { class: "app-container" }, W = { class: "cell-item" }, X = { class: "cell-item" }, Y = { class: "cell-item" }, Z = { class: "cell-item" }, x = { class: "cell-item" }, ee = { class: "cell-item" }, te = { class: "cell-item" }, le = { class: "cell-item" }, ae = { class: "cell-item" }, se = { class: "cell-item" }, oe = { class: "cell-item" }, ne = { class: "cell-item" }, ie = { class: "cell-item" }, ue = {
|
8
8
|
key: 1,
|
9
9
|
class: "title-content"
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { defineComponent as W, ref as b, resolveComponent as n, resolveDirective as X, openBlock as f, createElementBlock as I, createElementVNode as u, createVNode as l, withCtx as o, unref as s, withKeys as w, toDisplayString as p, Fragment as Z, renderList as x, createBlock as A, createTextVNode as R, isRef as k, createCommentVNode as ee, withDirectives as te } from "vue";
|
2
|
-
import { D as _, s as le } from "./index-
|
2
|
+
import { D as _, s as le } from "./index-eassrLOa.mjs";
|
3
3
|
import { useI18n as oe } from "vue-i18n";
|
4
4
|
import { s as ae } from "./index-BwbnYpa1.mjs";
|
5
5
|
import { useTableHooks as re } from "jmash-core";
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { defineComponent as X, getCurrentInstance as Z, ref as v, reactive as ee, resolveComponent as r, resolveDirective as te, openBlock as p, createElementBlock as P, createElementVNode as d, createVNode as o, withCtx as l, unref as s, withKeys as _, toDisplayString as i, createBlock as N, createTextVNode as V, withDirectives as T, isRef as Q, createCommentVNode as z } from "vue";
|
2
2
|
import { useI18n as le } from "vue-i18n";
|
3
|
-
import { a as ae } from "./index-
|
3
|
+
import { a as ae } from "./index-CVU2G5rZ.mjs";
|
4
4
|
import { useTableHooks as oe } from "jmash-core";
|
5
|
-
import { D as m, S as se } from "./index-
|
6
|
-
import { _ as ne } from "./edit.vue_vue_type_script_setup_true_lang-
|
5
|
+
import { D as m, S as se } from "./index-eassrLOa.mjs";
|
6
|
+
import { _ as ne } from "./edit.vue_vue_type_script_setup_true_lang-D59t05Ec.mjs";
|
7
7
|
const re = { class: "app-container" }, ue = { class: "search-container" }, ie = ["onClick"], ye = /* @__PURE__ */ X({
|
8
8
|
__name: "index",
|
9
9
|
setup(de) {
|
@@ -279,7 +279,7 @@ const re = { class: "app-container" }, ue = { class: "search-container" }, ie =
|
|
279
279
|
T((p(), N(S, {
|
280
280
|
plain: "",
|
281
281
|
type: "primary",
|
282
|
-
onClick: t[10] || (t[10] = (e) => s(u).handleExport(s(g)("
|
282
|
+
onClick: t[10] || (t[10] = (e) => s(u).handleExport(s(g)("assetDetail.name")))
|
283
283
|
}, {
|
284
284
|
default: l(() => [
|
285
285
|
V(i(a.$t("common.export")), 1)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import { defineComponent as ne, ref as f, reactive as z, resolveComponent as d, resolveDirective as ue, openBlock as r, createElementBlock as _, createElementVNode as h, createVNode as s, withCtx as l, withKeys as N, unref as o, createTextVNode as m, toDisplayString as u, withDirectives as c, createBlock as b, isRef as A, createCommentVNode as w } from "vue";
|
2
2
|
import { useI18n as re } from "vue-i18n";
|
3
|
-
import { _ as ie } from "./edit.vue_vue_type_script_setup_true_lang-
|
4
|
-
import de from "./assign-
|
5
|
-
import { a as me, D as V } from "./index-
|
3
|
+
import { _ as ie } from "./edit.vue_vue_type_script_setup_true_lang-DnzT146Q.mjs";
|
4
|
+
import de from "./assign-D4YB344H.mjs";
|
5
|
+
import { a as me, D as V } from "./index-eassrLOa.mjs";
|
6
6
|
import { useTableHooks as pe } from "jmash-core";
|
7
7
|
import { useRouter as fe } from "vue-router";
|
8
8
|
const ce = { class: "app-container" }, be = { class: "search-container" }, ye = ["onClick"], ve = ["onClick"], ge = ["onClick"], we = ["onClick"], De = /* @__PURE__ */ ne({
|
@@ -297,7 +297,7 @@ const ce = { class: "app-container" }, be = { class: "search-container" }, ye =
|
|
297
297
|
c((r(), b(g, {
|
298
298
|
plain: "",
|
299
299
|
type: "primary",
|
300
|
-
onClick: t[10] || (t[10] = (e) => o(n).handleExport(o(y)("asset.
|
300
|
+
onClick: t[10] || (t[10] = (e) => o(n).handleExport(o(y)("asset.name")))
|
301
301
|
}, {
|
302
302
|
default: l(() => [
|
303
303
|
m(u(a.$t("common.export")), 1)
|
@@ -411,7 +411,7 @@ const ce = { class: "app-container" }, be = { class: "search-container" }, ye =
|
|
411
411
|
key: 1,
|
412
412
|
"upload-visible": C.value,
|
413
413
|
"template-title": a.$t("sysUser.templateDownload"),
|
414
|
-
onTemplateDown: t[17] || (t[17] = (e) => o(n).downloadTemplate(o(y)("asset.
|
414
|
+
onTemplateDown: t[17] || (t[17] = (e) => o(n).downloadTemplate(o(y)("asset.name"))),
|
415
415
|
onImportEvents: Z,
|
416
416
|
onUploadClosed: Y
|
417
417
|
}, null, 8, ["upload-visible", "template-title"])) : w("", !0),
|
@@ -1,21 +1,24 @@
|
|
1
|
-
import { defineComponent as H, getCurrentInstance as G, ref as b, resolveComponent as s, resolveDirective as J, openBlock as _, createElementBlock as
|
1
|
+
import { defineComponent as H, getCurrentInstance as G, ref as b, resolveComponent as s, resolveDirective as J, openBlock as _, createElementBlock as S, createElementVNode as d, createVNode as n, withCtx as o, unref as r, withKeys as R, createTextVNode as w, toDisplayString as u, isRef as V, createBlock as W, createCommentVNode as X, withDirectives as Z } from "vue";
|
2
2
|
import { useTableHooks as x } from "jmash-core";
|
3
3
|
import { useI18n as ee } from "vue-i18n";
|
4
4
|
import { c as k } from "./common-CshrwPyx.mjs";
|
5
|
-
import { i as te } from "./index-
|
6
|
-
import { D as y } from "./index-
|
5
|
+
import { i as te } from "./index-4gYJADQ3.mjs";
|
6
|
+
import { D as y } from "./index-eassrLOa.mjs";
|
7
7
|
import { useRouter as oe } from "vue-router";
|
8
8
|
const ne = { class: "app-container" }, le = { class: "search-container" }, ae = ["onClick"], ye = /* @__PURE__ */ H({
|
9
9
|
__name: "index",
|
10
10
|
setup(re) {
|
11
11
|
const { proxy: D } = G(), T = oe(), { t: C } = ee();
|
12
12
|
y.unionOrgBizLayDict.useValues();
|
13
|
-
const a = b({
|
13
|
+
const a = b({
|
14
|
+
curPage: 1,
|
15
|
+
pageSize: 10
|
16
|
+
}), {
|
14
17
|
tableHooks: i,
|
15
18
|
multipleTableRef: $,
|
16
19
|
queryFormRef: I,
|
17
|
-
listLoading:
|
18
|
-
tableData:
|
20
|
+
listLoading: P,
|
21
|
+
tableData: j,
|
19
22
|
total: f
|
20
23
|
} = x(C, te, a);
|
21
24
|
let p = b([
|
@@ -93,8 +96,8 @@ const ne = { class: "app-container" }, le = { class: "search-container" }, ae =
|
|
93
96
|
});
|
94
97
|
}
|
95
98
|
return i.getList(), (l, t) => {
|
96
|
-
const L = s("el-tree-select"), v = s("el-form-item"), m = s("el-col"), Q = s("el-input"), B = s("jmash-select"), g = s("el-row"), E = s("el-date-picker"), h = s("el-button"), q = s("el-form"),
|
97
|
-
return _(),
|
99
|
+
const L = s("el-tree-select"), v = s("el-form-item"), m = s("el-col"), Q = s("el-input"), B = s("jmash-select"), g = s("el-row"), E = s("el-date-picker"), h = s("el-button"), q = s("el-form"), F = s("jmash-column-select"), K = s("jmash-table"), M = s("jmash-pagination"), O = s("el-card"), A = J("hasPerm");
|
100
|
+
return _(), S("div", ne, [
|
98
101
|
d("div", le, [
|
99
102
|
n(q, {
|
100
103
|
ref_key: "queryFormRef",
|
@@ -186,8 +189,8 @@ const ne = { class: "app-container" }, le = { class: "search-container" }, ae =
|
|
186
189
|
"onUpdate:modelValue": t[6] || (t[6] = (e) => c.value = e),
|
187
190
|
class: "dropdown-left",
|
188
191
|
type: "daterange",
|
189
|
-
"start-placeholder": l.$t("
|
190
|
-
"end-placeholder": l.$t("
|
192
|
+
"start-placeholder": l.$t("inventoryRecord.startDate"),
|
193
|
+
"end-placeholder": l.$t("inventoryRecord.endDate"),
|
191
194
|
format: "YYYY-MM-DD",
|
192
195
|
onChange: z
|
193
196
|
}, null, 8, ["modelValue", "start-placeholder", "end-placeholder"])
|
@@ -230,7 +233,7 @@ const ne = { class: "app-container" }, le = { class: "search-container" }, ae =
|
|
230
233
|
}, 8, ["model"]),
|
231
234
|
t[13] || (t[13] = d("div", { class: "clear" }, null, -1))
|
232
235
|
]),
|
233
|
-
n(
|
236
|
+
n(O, {
|
234
237
|
shadow: "never",
|
235
238
|
class: "table-container"
|
236
239
|
}, {
|
@@ -245,9 +248,9 @@ const ne = { class: "app-container" }, le = { class: "search-container" }, ae =
|
|
245
248
|
class: "container-float"
|
246
249
|
}, {
|
247
250
|
default: o(() => [
|
248
|
-
n(
|
251
|
+
n(F, {
|
249
252
|
modelValue: r(p),
|
250
|
-
"onUpdate:modelValue": t[8] || (t[8] = (e) =>
|
253
|
+
"onUpdate:modelValue": t[8] || (t[8] = (e) => V(p) ? p.value = e : p = e),
|
251
254
|
"label-name": "asset/asset-inventory-record"
|
252
255
|
}, null, 8, ["modelValue"])
|
253
256
|
]),
|
@@ -258,10 +261,10 @@ const ne = { class: "app-container" }, le = { class: "search-container" }, ae =
|
|
258
261
|
})
|
259
262
|
]),
|
260
263
|
footer: o(() => [
|
261
|
-
r(f) > 0 ? (_(), W(
|
264
|
+
r(f) > 0 ? (_(), W(M, {
|
262
265
|
key: 0,
|
263
266
|
total: r(f),
|
264
|
-
"onUpdate:total": t[9] || (t[9] = (e) =>
|
267
|
+
"onUpdate:total": t[9] || (t[9] = (e) => V(f) ? f.value = e : null),
|
265
268
|
"current-page": a.value.curPage,
|
266
269
|
"onUpdate:currentPage": t[10] || (t[10] = (e) => a.value.curPage = e),
|
267
270
|
"page-size": a.value.pageSize,
|
@@ -270,13 +273,13 @@ const ne = { class: "app-container" }, le = { class: "search-container" }, ae =
|
|
270
273
|
}, null, 8, ["total", "current-page", "page-size"])) : X("", !0)
|
271
274
|
]),
|
272
275
|
default: o(() => [
|
273
|
-
n(
|
276
|
+
n(K, {
|
274
277
|
ref_key: "multipleTableRef",
|
275
278
|
ref: $,
|
276
279
|
class: "table-top",
|
277
280
|
"row-key": "inventoryId",
|
278
|
-
"list-loading": r(
|
279
|
-
data: r(
|
281
|
+
"list-loading": r(P),
|
282
|
+
data: r(j),
|
280
283
|
"table-label": r(p),
|
281
284
|
onSelectionChange: U
|
282
285
|
}, {
|
@@ -302,13 +305,13 @@ const ne = { class: "app-container" }, le = { class: "search-container" }, ae =
|
|
302
305
|
d("span", null, u(e.data.row.inventoryNote), 1)
|
303
306
|
]),
|
304
307
|
operation: o((e) => [
|
305
|
-
Z((_(),
|
308
|
+
Z((_(), S("span", {
|
306
309
|
class: "el-button-color",
|
307
310
|
onClick: (se) => Y(e.data.row)
|
308
311
|
}, [
|
309
312
|
w(u(l.$t("common.view")), 1)
|
310
313
|
], 8, ae)), [
|
311
|
-
[
|
314
|
+
[A, ["asset:inventory_record:view"]]
|
312
315
|
])
|
313
316
|
]),
|
314
317
|
_: 1
|
package/dist/index.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Layout as ks, addViteMenus as Ss, addDynamicRoute as Ms, i18n as Ds } from "jmash-core";
|
2
|
-
const Ys = () => import("./index-
|
2
|
+
const Ys = () => import("./index-BOS2gtjd.mjs"), Os = () => import("./index-DZAvRhPJ.mjs"), Ts = () => import("./index-DxQzN9_F.mjs"), bs = () => import("./index-BmxQiLjm.mjs"), xs = () => import("./index-Di8LMzmd.mjs"), Rs = [
|
3
3
|
{
|
4
4
|
path: "/rawasset",
|
5
5
|
component: ks,
|
@@ -178,6 +178,7 @@ const Ys = () => import("./index-U9RubJnZ.mjs"), Os = () => import("./index-BcxO
|
|
178
178
|
},
|
179
179
|
// 盘点记录
|
180
180
|
inventoryRecord: {
|
181
|
+
name: "盘点记录",
|
181
182
|
siteName: "场地名称",
|
182
183
|
inventoryTime: "盘点时间",
|
183
184
|
userName: "盘点人",
|
@@ -189,7 +190,9 @@ const Ys = () => import("./index-U9RubJnZ.mjs"), Os = () => import("./index-BcxO
|
|
189
190
|
deviceCode: "资产编码",
|
190
191
|
// placeholder
|
191
192
|
orgIdPlaceholder: "请选择所属工会",
|
192
|
-
siteNamePlaceholder: "请输入场地名称"
|
193
|
+
siteNamePlaceholder: "请输入场地名称",
|
194
|
+
startDate: "开始时间",
|
195
|
+
endDate: "结束时间"
|
193
196
|
},
|
194
197
|
// 资产明细
|
195
198
|
assetDetail: {
|
@@ -2822,7 +2825,7 @@ const In = {
|
|
2822
2825
|
}
|
2823
2826
|
};
|
2824
2827
|
}
|
2825
|
-
}, Cn = /* @__PURE__ */ Object.assign({ "./views/asset/asset-asset-detail/edit.vue": () => import("./edit-
|
2828
|
+
}, Cn = /* @__PURE__ */ Object.assign({ "./views/asset/asset-asset-detail/edit.vue": () => import("./edit-yvYhMo5N.mjs"), "./views/asset/asset-asset-detail/index.vue": () => import("./index-e_AlnW3A.mjs"), "./views/asset/asset-asset/assign.vue": () => import("./assign-D4YB344H.mjs"), "./views/asset/asset-asset/edit.vue": () => import("./edit-Bwq5Vg9D.mjs"), "./views/asset/asset-asset/index.vue": () => import("./index-hCldWS2K.mjs"), "./views/asset/asset-asset/info/index.vue": () => import("./index-DxQzN9_F.mjs"), "./views/asset/asset-depreciation-record/index.vue": () => import("./index-CQE1DdOZ.mjs"), "./views/asset/asset-depreciation-record/info/index.vue": () => import("./index-Di8LMzmd.mjs"), "./views/asset/asset-inventory-record/index.vue": () => import("./index-vfIgwaoQ.mjs"), "./views/asset/asset-inventory-record/info/index.vue": () => import("./index-BmxQiLjm.mjs"), "./views/asset/asset-service-appt-record/index.vue": () => import("./index-eTof-sqF.mjs"), "./views/asset/asset-service-appt-record/info/index.vue": () => import("./index-DZAvRhPJ.mjs"), "./views/asset/asset-site-service/edit.vue": () => import("./edit-D3zlqt11.mjs"), "./views/asset/asset-site-service/index.vue": () => import("./index-DmX4B8mf.mjs"), "./views/asset/asset-site/edit.vue": () => import("./edit-DxvSeH5Y.mjs"), "./views/asset/asset-site/index.vue": () => import("./index-Bx1vPk7S.mjs"), "./views/asset/asset-site/info/index.vue": () => import("./index-BOS2gtjd.mjs") }), Un = {
|
2826
2829
|
install(e) {
|
2827
2830
|
e.use(In), Ss(Cn, 7), Ms(Rs), Ws(Ds);
|
2828
2831
|
}
|
@@ -1,10 +1,11 @@
|
|
1
1
|
import type { AxiosPromise } from "axios";
|
2
|
-
import type { InventoryRecordApi, InventoryRecordReq, InventoryRecordModel, InventoryRecordPage, InventoryRecordKey } from "./types";
|
2
|
+
import type { InventoryRecordApi, InventoryRecordReq, InventoryRecordModel, InventoryRecordPage, InventoryRecordKey, InventoryRecordExportReq } from "./types";
|
3
3
|
declare class InventoryRecordApiImpl implements InventoryRecordApi {
|
4
4
|
getKey(model: InventoryRecordModel): InventoryRecordKey;
|
5
5
|
findPage(query?: InventoryRecordReq): AxiosPromise<InventoryRecordPage>;
|
6
6
|
findInfoAssetPage(query?: InventoryRecordKey): AxiosPromise<InventoryRecordPage>;
|
7
7
|
findById(query: InventoryRecordKey): AxiosPromise<InventoryRecordModel>;
|
8
|
+
exportExcel(queryParams: InventoryRecordExportReq): AxiosPromise;
|
8
9
|
}
|
9
10
|
declare const inventoryRecordApi: InventoryRecordApiImpl;
|
10
11
|
export { inventoryRecordApi };
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { EntityApi, EntityReq, EntityModel, EntityList, EntityPage, EntityTotal, EntityKey, EntityKeyList, EntityCreateReq, EntityUpdateReq } from "jmash-core";
|
1
|
+
import type { EntityApi, EntityReq, EntityModel, EntityList, EntityPage, EntityTotal, EntityKey, EntityKeyList, EntityCreateReq, EntityUpdateReq, EntityExportReq } from "jmash-core";
|
2
2
|
export interface InventoryRecordApi extends EntityApi {
|
3
3
|
}
|
4
4
|
export interface InventoryRecordReq extends EntityReq {
|
@@ -9,6 +9,7 @@ export interface InventoryRecordReq extends EntityReq {
|
|
9
9
|
inventoryEndTime?: string;
|
10
10
|
inventoryStatus?: string;
|
11
11
|
hasInventoryStatus?: boolean;
|
12
|
+
inventoryId?: string;
|
12
13
|
}
|
13
14
|
export interface InventoryRecordModel extends EntityModel {
|
14
15
|
inventoryId?: string;
|
@@ -61,3 +62,9 @@ export interface InventoryRecordUpdateReq extends EntityUpdateReq {
|
|
61
62
|
inventoryStatus?: string;
|
62
63
|
}
|
63
64
|
export type InventoryRecordFormReq = InventoryRecordCreateReq | InventoryRecordUpdateReq;
|
65
|
+
export interface InventoryRecordExportReq extends EntityExportReq {
|
66
|
+
tenant: string;
|
67
|
+
title?: string;
|
68
|
+
fileName?: string;
|
69
|
+
req: InventoryRecordReq;
|
70
|
+
}
|
@@ -105,6 +105,7 @@ declare const _default: {
|
|
105
105
|
statusInfo: string;
|
106
106
|
};
|
107
107
|
inventoryRecord: {
|
108
|
+
name: string;
|
108
109
|
siteName: string;
|
109
110
|
inventoryTime: string;
|
110
111
|
userName: string;
|
@@ -115,6 +116,8 @@ declare const _default: {
|
|
115
116
|
deviceCode: string;
|
116
117
|
orgIdPlaceholder: string;
|
117
118
|
siteNamePlaceholder: string;
|
119
|
+
startDate: string;
|
120
|
+
endDate: string;
|
118
121
|
};
|
119
122
|
assetDetail: {
|
120
123
|
orgId: string;
|