1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
| <template>
| <BasicModal width="800px" :height=600 v-bind="$attrs" @register="register" :title="t('储位盘点明细列表')" @ok="handleSubmit">
| <div class="pt-3px pr-3px">
| <BasicForm @register="registerForm" :model="model" />
| </div>
| <div>
| <a-button type="primary" class="mr-4" @click="handleSelect"> {{t('搜索')}} </a-button>
| <BasicTable @register="registerTable" :dataSource="Ldtl_Data" ref="tableRef"
| :canResize="canResize" :loading="loading" :striped="striped" :bordered="border" :pagination="pagination"
| showTableSetting>
| <!-- <template #toolbar>
| <a-button type="primary" @click="handleCreate"> 新增盘点 </a-button>
| </template> -->
| </BasicTable>
|
| </div>
| </BasicModal>
| </template>
| <script lang="ts">
| import { defineComponent, ref, unref } from 'vue';
| import { BasicModal, useModalInner } from '/@/components/Modal';
| import { BasicForm, FormSchema, useForm } from '/@/components/Form/index';
| //import { getTreeList } from '/@/api/tigerapi/dept';
| import { BasicTable, TableAction, TableActionType, useTable } from '/@/components/Table';
| import { LdtlColumns } from './inventory.data';
| import { getLdtlListByPage,optionsListApiLdtlStatus,optionsListApiLdtlResult } from '/@/api/tigerapi/wms/inventory';
| import { iWMS_COUNT_MDTL } from '/@/api/tigerapi/model/warehoueseModel';
| import { useI18n } from '/@/hooks/web/useI18n';
| import{ useLocale } from '/@/locales/useLocale';
| const { getLocale }=useLocale();
| const { t } = useI18n();
| const schemas: FormSchema[] = [
| {
| field: 'ITEM_CODE',
| component: 'Input',
| label: t('物料编码'),
| colProps: {
| span: 12,
| },
| },
| {
| field: 'COUNT_NO',
| component: 'Input',
| label: t('单据编码'),
| colProps: {
| span: 12,
| },
| show:false,
| },
| {
| field: 'STATUS',
| label: t('状态'),
| component: 'ApiSelect',
| colProps: { span: 8 },
| componentProps: {
| api: optionsListApiLdtlStatus,
| resultField: 'Data',
| labelField: unref(getLocale)=='zh_CN'?'Desc':'Name',
| valueField: 'Value',
| // onChange: (e, v) => {
| // alert(e)
| // console.log('ApiSelect====>:', e, v);
| // },
| },
| },
| {
| field: 'RESULT',
| label: t('结果'),
| component: 'ApiSelect',
| colProps: { span: 8 },
| componentProps: {
| api: optionsListApiLdtlResult,
| resultField: 'Data',
| labelField: unref(getLocale)=='zh_CN'?'Desc':'Name',
| valueField: 'Value',
| // onChange: (e, v) => {
| // alert(e)
| // console.log('ApiSelect====>:', e, v);
| // },
| },
| }
| ];
| export default defineComponent({
| components: { BasicModal, BasicForm, BasicTable, TableAction },
| props: {
| userData: { type: Object },
| },
| emit: ['success', 'register'],
| setup(_, { emit }) {
| const modelRef = ref({});
| const tableRef = ref<Nullable<TableActionType>>(null);
| const canResize = ref(false);
| const loading = ref(true);
| const striped = ref(true);
| const border = ref(true);
| const pagination = ref<any>(false);
| const [
| registerForm,
| {
| setFieldsValue,
| validateFields
| // setProps
| //updateSchema,
| //validate
| },
| ] = useForm({
| labelWidth: 120,
| schemas,
| showActionButtonGroup: false,
| actionColOptions: {
| span: 24,
| },
| });
| const checkedKeys = ref<Array<string | number>>([]);
| const [registerTable, { reload }] = useTable({
| title: t('物料列表'),
| //api: getMdtlListByPage,
| columns: LdtlColumns,
| // formConfig: {
| // labelWidth: 120,
| // schemas: schemas,
| // },
|
| // useSearchForm: true,
| showTableSetting: true,
| rowKey: 'ITEM_CODE',
| rowSelection: {
| selectedRowKeys: checkedKeys,
|
| type: 'checkbox',
| // getCheckboxProps(record: Recordable) {
| // // Demo: 第一行(id为0)的选择框禁用
| // if (record.id === '0') {
| // return { disabled: true };
| // } else {
| // return { disabled: false };
| // }
| // },
| onSelect: onSelect,
| onSelectAll: onSelectAll,
| },
| //bordered: true,
| showIndexColumn: false,
| // actionColumn: {
| // width: 80,
| // title: '操作',
| // dataIndex: 'action',
| // slots: { customRender: 'action' },
| // fixed: 'right' //undefined,
| // },
| });
| const [register, { setModalProps, closeModal }] = useModalInner((data) => {
| setModalProps({ confirmLoading: false });
| data && onDataReceive(data);
| });
| var Ldtl_Data=ref([] as iWMS_COUNT_MDTL[])
| async function onDataReceive(data) {
| pagination.value = { pageSize: 6 };
| console.log('Data Received', data);
| //方式1;
| setFieldsValue({
| COUNT_NO: data.data.COUNT_NO,
| });
| Ldtl_Data.value = await getLdtlListByPage(data.data.COUNT_NO)
| if(Ldtl_Data.value!=null){
| loading.value=false
| }
| // // 方式2
| //modelRef.value = { field2: data.data, field1: data.info };
| // const treeData = await getTreeList();
| // updateSchema([
| // {
| // field: 'USER_PWD',
| // show: !unref(false),
| // },
| // {
| // field: 'ORG_CODE',
| // componentProps: { treeData },
| // },
| // ]);
| // setProps({
| // model:{ field2: data.data, field1: data.info }
| // })
| }
|
| // function handleVisibleChange(v) {
| // v && props.userData && nextTick(() => onDataReceive(props.userData));
| // }
|
| async function handleSubmit() {
| try {
|
| // var values = '';
| // values=checkedKeys.value.join(',')
| closeModal();
| emit('success', {
| isUpdate: unref(false),
| //values: { values, id: 0 },
| });
|
| } finally {
| setModalProps({ confirmLoading: false });
| }
| }
| function onSelect(record, selected) {
| if (selected) {
| checkedKeys.value = [...checkedKeys.value, record.ITEM_CODE];
| } else {
| checkedKeys.value = checkedKeys.value.filter((ITEM_CODE) => ITEM_CODE !== record.ITEM_CODE);
| }
| }
| function onSelectAll(selected, selectedRows, changeRows) {
| const changeIds = changeRows.map((item) => item.ITEM_CODE);
| if (selected) {
| checkedKeys.value = [...checkedKeys.value, ...changeIds];
| } else {
| checkedKeys.value = checkedKeys.value.filter((ITEM_CODE) => {
| return !changeIds.includes(ITEM_CODE);
| });
| }
| }
| async function handleSelect(){
| var data = await validateFields();
| Ldtl_Data.value = await getLdtlListByPage(data)
| }
|
| return {
| register,
| schemas,
| registerForm,
| model: modelRef,
| handleSubmit,
| registerTable,
| onSelect,
| onSelectAll,
| setFieldsValue,
| handleSelect,
| validateFields,
| Ldtl_Data,
| tableRef,
| pagination,
| canResize,
| loading,
| striped,
| border,
| t
| };
| },
| });
| </script>
|
|