Commit 1a1a8d7190f2b0c2bc192baac37d24119a99f180
1 parent
0e55b12a
1. 新增配置模块
2. 新增入库单
Showing
82 changed files
with
6465 additions
and
18 deletions
Too many changes to show.
To preserve performance only 61 of 82 files are displayed.
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/AddressList.vue
0 → 100644
1 | +<template> | |
2 | + <a-card :bordered="false"> | |
3 | + <!-- 查询区域 --> | |
4 | + <div class="table-page-search-wrapper"> | |
5 | + <a-form layout="inline" @keyup.enter.native="searchQuery"> | |
6 | + <a-row :gutter="24"> | |
7 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
8 | + <a-form-item label="编码"> | |
9 | + <a-input placeholder="请输入编码" v-model="queryParam.code"></a-input> | |
10 | + </a-form-item> | |
11 | + </a-col> | |
12 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
13 | + <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> | |
14 | + <a-button type="primary" @click="searchQuery" icon="search">查询</a-button> | |
15 | + <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> | |
16 | + <a @click="handleToggleSearch" style="margin-left: 8px"> | |
17 | + {{ toggleSearchStatus ? '收起' : '展开' }} | |
18 | + <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> | |
19 | + </a> | |
20 | + </span> | |
21 | + </a-col> | |
22 | + </a-row> | |
23 | + </a-form> | |
24 | + </div> | |
25 | + <!-- 查询区域-END --> | |
26 | + | |
27 | + <!-- 操作按钮区域 --> | |
28 | + <div class="table-operator"> | |
29 | + <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |
30 | + <a-button type="primary" icon="download" @click="handleExportXls('接口地址')">导出</a-button> | |
31 | + <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |
32 | + <a-button type="primary" icon="import">导入</a-button> | |
33 | + </a-upload> | |
34 | + <!-- 高级查询区域 --> | |
35 | + <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> | |
36 | + <a-dropdown v-if="selectedRowKeys.length > 0"> | |
37 | + <a-menu slot="overlay"> | |
38 | + <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> | |
39 | + </a-menu> | |
40 | + <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> | |
41 | + </a-dropdown> | |
42 | + </div> | |
43 | + | |
44 | + <!-- table区域-begin --> | |
45 | + <div> | |
46 | + <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |
47 | + <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |
48 | + <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |
49 | + </div> | |
50 | + | |
51 | + <a-table | |
52 | + ref="table" | |
53 | + size="middle" | |
54 | + :scroll="{x:true}" | |
55 | + bordered | |
56 | + rowKey="id" | |
57 | + :columns="columns" | |
58 | + :dataSource="dataSource" | |
59 | + :pagination="ipagination" | |
60 | + :loading="loading" | |
61 | + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" | |
62 | + class="j-table-force-nowrap" | |
63 | + @change="handleTableChange"> | |
64 | + | |
65 | + <template slot="htmlSlot" slot-scope="text"> | |
66 | + <div v-html="text"></div> | |
67 | + </template> | |
68 | + <template slot="imgSlot" slot-scope="text"> | |
69 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |
70 | + <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |
71 | + </template> | |
72 | + <template slot="fileSlot" slot-scope="text"> | |
73 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |
74 | + <a-button | |
75 | + v-else | |
76 | + :ghost="true" | |
77 | + type="primary" | |
78 | + icon="download" | |
79 | + size="small" | |
80 | + @click="downloadFile(text)"> | |
81 | + 下载 | |
82 | + </a-button> | |
83 | + </template> | |
84 | + | |
85 | + <span slot="action" slot-scope="text, record"> | |
86 | + <a @click="handleEdit(record)">编辑</a> | |
87 | + | |
88 | + <a-divider type="vertical" /> | |
89 | + <a-dropdown> | |
90 | + <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> | |
91 | + <a-menu slot="overlay"> | |
92 | + <a-menu-item> | |
93 | + <a @click="handleDetail(record)">详情</a> | |
94 | + </a-menu-item> | |
95 | + <a-menu-item> | |
96 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
97 | + <a>删除</a> | |
98 | + </a-popconfirm> | |
99 | + </a-menu-item> | |
100 | + </a-menu> | |
101 | + </a-dropdown> | |
102 | + </span> | |
103 | + | |
104 | + </a-table> | |
105 | + </div> | |
106 | + | |
107 | + <address-modal ref="modalForm" @ok="modalFormOk"></address-modal> | |
108 | + </a-card> | |
109 | +</template> | |
110 | + | |
111 | +<script> | |
112 | + | |
113 | + import '@/assets/less/TableExpand.less' | |
114 | + import { mixinDevice } from '@/utils/mixin' | |
115 | + import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |
116 | + import AddressModal from './modules/AddressModal' | |
117 | + | |
118 | + export default { | |
119 | + name: 'AddressList', | |
120 | + mixins:[JeecgListMixin, mixinDevice], | |
121 | + components: { | |
122 | + AddressModal | |
123 | + }, | |
124 | + data () { | |
125 | + return { | |
126 | + description: '接口地址管理页面', | |
127 | + // 表头 | |
128 | + columns: [ | |
129 | + { | |
130 | + title: '#', | |
131 | + dataIndex: '', | |
132 | + key:'rowIndex', | |
133 | + width:60, | |
134 | + align:"center", | |
135 | + customRender:function (t,r,index) { | |
136 | + return parseInt(index)+1; | |
137 | + } | |
138 | + }, | |
139 | + { | |
140 | + title:'编码', | |
141 | + align:"center", | |
142 | + dataIndex: 'code' | |
143 | + }, | |
144 | + { | |
145 | + title:'库区', | |
146 | + align:"center", | |
147 | + dataIndex: 'zoneCode' | |
148 | + }, | |
149 | + { | |
150 | + title:'接口地址', | |
151 | + align:"center", | |
152 | + dataIndex: 'url' | |
153 | + }, | |
154 | + { | |
155 | + title:'创建人', | |
156 | + align:"center", | |
157 | + dataIndex: 'createBy' | |
158 | + }, | |
159 | + { | |
160 | + title:'创建日期', | |
161 | + align:"center", | |
162 | + dataIndex: 'createTime' | |
163 | + }, | |
164 | + { | |
165 | + title:'更新人', | |
166 | + align:"center", | |
167 | + dataIndex: 'updateBy' | |
168 | + }, | |
169 | + { | |
170 | + title:'更新日期', | |
171 | + align:"center", | |
172 | + dataIndex: 'updateTime' | |
173 | + }, | |
174 | + { | |
175 | + title: '操作', | |
176 | + dataIndex: 'action', | |
177 | + align:"center", | |
178 | + fixed:"right", | |
179 | + width:147, | |
180 | + scopedSlots: { customRender: 'action' } | |
181 | + } | |
182 | + ], | |
183 | + url: { | |
184 | + list: "/config/address/list", | |
185 | + delete: "/config/address/delete", | |
186 | + deleteBatch: "/config/address/deleteBatch", | |
187 | + exportXlsUrl: "/config/address/exportXls", | |
188 | + importExcelUrl: "config/address/importExcel", | |
189 | + | |
190 | + }, | |
191 | + dictOptions:{}, | |
192 | + superFieldList:[], | |
193 | + } | |
194 | + }, | |
195 | + created() { | |
196 | + this.getSuperFieldList(); | |
197 | + }, | |
198 | + computed: { | |
199 | + importExcelUrl: function(){ | |
200 | + return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; | |
201 | + }, | |
202 | + }, | |
203 | + methods: { | |
204 | + initDictConfig(){ | |
205 | + }, | |
206 | + getSuperFieldList(){ | |
207 | + let fieldList=[]; | |
208 | + fieldList.push({type:'string',value:'code',text:'编码',dictCode:''}) | |
209 | + fieldList.push({type:'string',value:'zoneCode',text:'库区',dictCode:''}) | |
210 | + fieldList.push({type:'string',value:'url',text:'接口地址',dictCode:''}) | |
211 | + fieldList.push({type:'string',value:'createBy',text:'创建人',dictCode:''}) | |
212 | + fieldList.push({type:'datetime',value:'createTime',text:'创建日期'}) | |
213 | + fieldList.push({type:'string',value:'updateBy',text:'更新人',dictCode:''}) | |
214 | + fieldList.push({type:'datetime',value:'updateTime',text:'更新日期'}) | |
215 | + this.superFieldList = fieldList | |
216 | + } | |
217 | + } | |
218 | + } | |
219 | +</script> | |
220 | +<style scoped> | |
221 | + @import '~@assets/less/common.less'; | |
222 | +</style> | |
0 | 223 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/CycleCountPreferenceList.vue
0 → 100644
1 | +<template> | |
2 | + <a-card :bordered="false"> | |
3 | + <!-- 查询区域 --> | |
4 | + <div class="table-page-search-wrapper"> | |
5 | + <a-form layout="inline" @keyup.enter.native="searchQuery"> | |
6 | + <a-row :gutter="24"> | |
7 | + </a-row> | |
8 | + </a-form> | |
9 | + </div> | |
10 | + <!-- 查询区域-END --> | |
11 | + | |
12 | + <!-- 操作按钮区域 --> | |
13 | + <div class="table-operator"> | |
14 | + <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |
15 | + <a-button type="primary" icon="download" @click="handleExportXls('盘点首选项')">导出</a-button> | |
16 | + <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |
17 | + <a-button type="primary" icon="import">导入</a-button> | |
18 | + </a-upload> | |
19 | + <!-- 高级查询区域 --> | |
20 | + <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> | |
21 | + <a-dropdown v-if="selectedRowKeys.length > 0"> | |
22 | + <a-menu slot="overlay"> | |
23 | + <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> | |
24 | + </a-menu> | |
25 | + <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> | |
26 | + </a-dropdown> | |
27 | + </div> | |
28 | + | |
29 | + <!-- table区域-begin --> | |
30 | + <div> | |
31 | + <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |
32 | + <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |
33 | + <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |
34 | + </div> | |
35 | + | |
36 | + <a-table | |
37 | + ref="table" | |
38 | + size="middle" | |
39 | + :scroll="{x:true}" | |
40 | + bordered | |
41 | + rowKey="id" | |
42 | + :columns="columns" | |
43 | + :dataSource="dataSource" | |
44 | + :pagination="ipagination" | |
45 | + :loading="loading" | |
46 | + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" | |
47 | + class="j-table-force-nowrap" | |
48 | + @change="handleTableChange"> | |
49 | + | |
50 | + <template slot="htmlSlot" slot-scope="text"> | |
51 | + <div v-html="text"></div> | |
52 | + </template> | |
53 | + <template slot="imgSlot" slot-scope="text"> | |
54 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |
55 | + <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |
56 | + </template> | |
57 | + <template slot="fileSlot" slot-scope="text"> | |
58 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |
59 | + <a-button | |
60 | + v-else | |
61 | + :ghost="true" | |
62 | + type="primary" | |
63 | + icon="download" | |
64 | + size="small" | |
65 | + @click="downloadFile(text)"> | |
66 | + 下载 | |
67 | + </a-button> | |
68 | + </template> | |
69 | + | |
70 | + <span slot="action" slot-scope="text, record"> | |
71 | + <a @click="handleEdit(record)">编辑</a> | |
72 | + | |
73 | + <a-divider type="vertical" /> | |
74 | + <a-dropdown> | |
75 | + <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> | |
76 | + <a-menu slot="overlay"> | |
77 | + <a-menu-item> | |
78 | + <a @click="handleDetail(record)">详情</a> | |
79 | + </a-menu-item> | |
80 | + <a-menu-item> | |
81 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
82 | + <a>删除</a> | |
83 | + </a-popconfirm> | |
84 | + </a-menu-item> | |
85 | + </a-menu> | |
86 | + </a-dropdown> | |
87 | + </span> | |
88 | + | |
89 | + </a-table> | |
90 | + </div> | |
91 | + | |
92 | + <cycle-count-preference-modal ref="modalForm" @ok="modalFormOk"></cycle-count-preference-modal> | |
93 | + </a-card> | |
94 | +</template> | |
95 | + | |
96 | +<script> | |
97 | + | |
98 | + import '@/assets/less/TableExpand.less' | |
99 | + import { mixinDevice } from '@/utils/mixin' | |
100 | + import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |
101 | + import CycleCountPreferenceModal from './modules/CycleCountPreferenceModal' | |
102 | + import {filterMultiDictText} from '@/components/dict/JDictSelectUtil' | |
103 | + | |
104 | + export default { | |
105 | + name: 'CycleCountPreferenceList', | |
106 | + mixins:[JeecgListMixin, mixinDevice], | |
107 | + components: { | |
108 | + CycleCountPreferenceModal | |
109 | + }, | |
110 | + data () { | |
111 | + return { | |
112 | + description: '盘点首选项管理页面', | |
113 | + // 表头 | |
114 | + columns: [ | |
115 | + { | |
116 | + title: '#', | |
117 | + dataIndex: '', | |
118 | + key:'rowIndex', | |
119 | + width:60, | |
120 | + align:"center", | |
121 | + customRender:function (t,r,index) { | |
122 | + return parseInt(index)+1; | |
123 | + } | |
124 | + }, | |
125 | + { | |
126 | + title:'编码', | |
127 | + align:"center", | |
128 | + dataIndex: 'code' | |
129 | + }, | |
130 | + { | |
131 | + title:'名称', | |
132 | + align:"center", | |
133 | + dataIndex: 'name' | |
134 | + }, | |
135 | + { | |
136 | + title:'系统提示库位', | |
137 | + align:"center", | |
138 | + dataIndex: 'promptLocation_dictText' | |
139 | + }, | |
140 | + { | |
141 | + title:'系统提示容器', | |
142 | + align:"center", | |
143 | + dataIndex: 'promptContainer_dictText' | |
144 | + }, | |
145 | + { | |
146 | + title:'系统提示物料', | |
147 | + align:"center", | |
148 | + dataIndex: 'promptMaterial_dictText' | |
149 | + }, | |
150 | + { | |
151 | + title:'显示差异数量', | |
152 | + align:"center", | |
153 | + dataIndex: 'prompAdjustQty_dictText' | |
154 | + }, | |
155 | + { | |
156 | + title:'显示库存数量', | |
157 | + align:"center", | |
158 | + dataIndex: 'promptInventory_dictText' | |
159 | + }, | |
160 | + { | |
161 | + title:'创建人', | |
162 | + align:"center", | |
163 | + dataIndex: 'createBy' | |
164 | + }, | |
165 | + { | |
166 | + title:'创建日期', | |
167 | + align:"center", | |
168 | + dataIndex: 'createTime' | |
169 | + }, | |
170 | + { | |
171 | + title:'更新人', | |
172 | + align:"center", | |
173 | + dataIndex: 'updateBy' | |
174 | + }, | |
175 | + { | |
176 | + title:'更新日期', | |
177 | + align:"center", | |
178 | + dataIndex: 'updateTime' | |
179 | + }, | |
180 | + { | |
181 | + title: '操作', | |
182 | + dataIndex: 'action', | |
183 | + align:"center", | |
184 | + fixed:"right", | |
185 | + width:147, | |
186 | + scopedSlots: { customRender: 'action' } | |
187 | + } | |
188 | + ], | |
189 | + url: { | |
190 | + list: "/config/cycleCountPreference/list", | |
191 | + delete: "/config/cycleCountPreference/delete", | |
192 | + deleteBatch: "/config/cycleCountPreference/deleteBatch", | |
193 | + exportXlsUrl: "/config/cycleCountPreference/exportXls", | |
194 | + importExcelUrl: "config/cycleCountPreference/importExcel", | |
195 | + | |
196 | + }, | |
197 | + dictOptions:{}, | |
198 | + superFieldList:[], | |
199 | + } | |
200 | + }, | |
201 | + created() { | |
202 | + this.getSuperFieldList(); | |
203 | + }, | |
204 | + computed: { | |
205 | + importExcelUrl: function(){ | |
206 | + return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; | |
207 | + }, | |
208 | + }, | |
209 | + methods: { | |
210 | + initDictConfig(){ | |
211 | + }, | |
212 | + getSuperFieldList(){ | |
213 | + let fieldList=[]; | |
214 | + fieldList.push({type:'string',value:'code',text:'编码',dictCode:''}) | |
215 | + fieldList.push({type:'string',value:'name',text:'名称',dictCode:''}) | |
216 | + fieldList.push({type:'int',value:'promptLocation',text:'系统提示库位',dictCode:'is_or_not'}) | |
217 | + fieldList.push({type:'int',value:'promptContainer',text:'系统提示容器',dictCode:'is_or_not'}) | |
218 | + fieldList.push({type:'int',value:'promptMaterial',text:'系统提示物料',dictCode:'is_or_not'}) | |
219 | + fieldList.push({type:'int',value:'prompAdjustQty',text:'显示差异数量',dictCode:'is_or_not'}) | |
220 | + fieldList.push({type:'int',value:'promptInventory',text:'显示库存数量',dictCode:'is_or_not'}) | |
221 | + fieldList.push({type:'string',value:'createBy',text:'创建人',dictCode:''}) | |
222 | + fieldList.push({type:'datetime',value:'createTime',text:'创建日期'}) | |
223 | + fieldList.push({type:'string',value:'updateBy',text:'更新人',dictCode:''}) | |
224 | + fieldList.push({type:'datetime',value:'updateTime',text:'更新日期'}) | |
225 | + this.superFieldList = fieldList | |
226 | + } | |
227 | + } | |
228 | + } | |
229 | +</script> | |
230 | +<style scoped> | |
231 | + @import '~@assets/less/common.less'; | |
232 | +</style> | |
0 | 233 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/ParameterConfigurationList.vue
0 → 100644
1 | +<template> | |
2 | + <a-card :bordered="false"> | |
3 | + <!-- 查询区域 --> | |
4 | + <div class="table-page-search-wrapper"> | |
5 | + <a-form layout="inline" @keyup.enter.native="searchQuery"> | |
6 | + <a-row :gutter="24"> | |
7 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
8 | + <a-form-item label="参数名称"> | |
9 | + <a-input placeholder="请输入参数名称" v-model="queryParam.name"></a-input> | |
10 | + </a-form-item> | |
11 | + </a-col> | |
12 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
13 | + <a-form-item label="参数键名"> | |
14 | + <a-input placeholder="请输入参数键名" v-model="queryParam.code"></a-input> | |
15 | + </a-form-item> | |
16 | + </a-col> | |
17 | + <template v-if="toggleSearchStatus"> | |
18 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
19 | + <a-form-item label="参数键值"> | |
20 | + <a-input placeholder="请输入参数键值" v-model="queryParam.value"></a-input> | |
21 | + </a-form-item> | |
22 | + </a-col> | |
23 | + </template> | |
24 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
25 | + <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> | |
26 | + <a-button type="primary" @click="searchQuery" icon="search">查询</a-button> | |
27 | + <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> | |
28 | + <a @click="handleToggleSearch" style="margin-left: 8px"> | |
29 | + {{ toggleSearchStatus ? '收起' : '展开' }} | |
30 | + <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> | |
31 | + </a> | |
32 | + </span> | |
33 | + </a-col> | |
34 | + </a-row> | |
35 | + </a-form> | |
36 | + </div> | |
37 | + <!-- 查询区域-END --> | |
38 | + | |
39 | + <!-- 操作按钮区域 --> | |
40 | + <div class="table-operator"> | |
41 | + <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |
42 | + <a-button type="primary" icon="download" @click="handleExportXls('参数配置')">导出</a-button> | |
43 | + <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |
44 | + <a-button type="primary" icon="import">导入</a-button> | |
45 | + </a-upload> | |
46 | + <!-- 高级查询区域 --> | |
47 | + <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> | |
48 | + <a-dropdown v-if="selectedRowKeys.length > 0"> | |
49 | + <a-menu slot="overlay"> | |
50 | + <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> | |
51 | + </a-menu> | |
52 | + <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> | |
53 | + </a-dropdown> | |
54 | + </div> | |
55 | + | |
56 | + <!-- table区域-begin --> | |
57 | + <div> | |
58 | + <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |
59 | + <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |
60 | + <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |
61 | + </div> | |
62 | + | |
63 | + <a-table | |
64 | + ref="table" | |
65 | + size="middle" | |
66 | + :scroll="{x:true}" | |
67 | + bordered | |
68 | + rowKey="id" | |
69 | + :columns="columns" | |
70 | + :dataSource="dataSource" | |
71 | + :pagination="ipagination" | |
72 | + :loading="loading" | |
73 | + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" | |
74 | + class="j-table-force-nowrap" | |
75 | + @change="handleTableChange"> | |
76 | + | |
77 | + <template slot="htmlSlot" slot-scope="text"> | |
78 | + <div v-html="text"></div> | |
79 | + </template> | |
80 | + <template slot="imgSlot" slot-scope="text"> | |
81 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |
82 | + <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |
83 | + </template> | |
84 | + <template slot="fileSlot" slot-scope="text"> | |
85 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |
86 | + <a-button | |
87 | + v-else | |
88 | + :ghost="true" | |
89 | + type="primary" | |
90 | + icon="download" | |
91 | + size="small" | |
92 | + @click="downloadFile(text)"> | |
93 | + 下载 | |
94 | + </a-button> | |
95 | + </template> | |
96 | + | |
97 | + <span slot="action" slot-scope="text, record"> | |
98 | + <a @click="handleEdit(record)">编辑</a> | |
99 | + | |
100 | + <a-divider type="vertical" /> | |
101 | + <a-dropdown> | |
102 | + <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> | |
103 | + <a-menu slot="overlay"> | |
104 | + <a-menu-item> | |
105 | + <a @click="handleDetail(record)">详情</a> | |
106 | + </a-menu-item> | |
107 | + <a-menu-item> | |
108 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
109 | + <a>删除</a> | |
110 | + </a-popconfirm> | |
111 | + </a-menu-item> | |
112 | + </a-menu> | |
113 | + </a-dropdown> | |
114 | + </span> | |
115 | + | |
116 | + </a-table> | |
117 | + </div> | |
118 | + | |
119 | + <parameter-configuration-modal ref="modalForm" @ok="modalFormOk"></parameter-configuration-modal> | |
120 | + </a-card> | |
121 | +</template> | |
122 | + | |
123 | +<script> | |
124 | + | |
125 | + import '@/assets/less/TableExpand.less' | |
126 | + import { mixinDevice } from '@/utils/mixin' | |
127 | + import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |
128 | + import ParameterConfigurationModal from './modules/ParameterConfigurationModal' | |
129 | + | |
130 | + export default { | |
131 | + name: 'ParameterConfigurationList', | |
132 | + mixins:[JeecgListMixin, mixinDevice], | |
133 | + components: { | |
134 | + ParameterConfigurationModal | |
135 | + }, | |
136 | + data () { | |
137 | + return { | |
138 | + description: '参数配置管理页面', | |
139 | + // 表头 | |
140 | + columns: [ | |
141 | + { | |
142 | + title: '#', | |
143 | + dataIndex: '', | |
144 | + key:'rowIndex', | |
145 | + width:60, | |
146 | + align:"center", | |
147 | + customRender:function (t,r,index) { | |
148 | + return parseInt(index)+1; | |
149 | + } | |
150 | + }, | |
151 | + { | |
152 | + title:'参数名称', | |
153 | + align:"center", | |
154 | + dataIndex: 'name' | |
155 | + }, | |
156 | + { | |
157 | + title:'参数键名', | |
158 | + align:"center", | |
159 | + dataIndex: 'code' | |
160 | + }, | |
161 | + { | |
162 | + title:'参数键值', | |
163 | + align:"center", | |
164 | + dataIndex: 'value' | |
165 | + }, | |
166 | + { | |
167 | + title:'备注', | |
168 | + align:"center", | |
169 | + dataIndex: 'remark' | |
170 | + }, | |
171 | + { | |
172 | + title:'创建人', | |
173 | + align:"center", | |
174 | + dataIndex: 'createBy' | |
175 | + }, | |
176 | + { | |
177 | + title:'创建日期', | |
178 | + align:"center", | |
179 | + dataIndex: 'createTime' | |
180 | + }, | |
181 | + { | |
182 | + title:'更新人', | |
183 | + align:"center", | |
184 | + dataIndex: 'updateBy' | |
185 | + }, | |
186 | + { | |
187 | + title:'更新日期', | |
188 | + align:"center", | |
189 | + dataIndex: 'updateTime' | |
190 | + }, | |
191 | + { | |
192 | + title: '操作', | |
193 | + dataIndex: 'action', | |
194 | + align:"center", | |
195 | + fixed:"right", | |
196 | + width:147, | |
197 | + scopedSlots: { customRender: 'action' } | |
198 | + } | |
199 | + ], | |
200 | + url: { | |
201 | + list: "/config/parameterConfiguration/list", | |
202 | + delete: "/config/parameterConfiguration/delete", | |
203 | + deleteBatch: "/config/parameterConfiguration/deleteBatch", | |
204 | + exportXlsUrl: "/config/parameterConfiguration/exportXls", | |
205 | + importExcelUrl: "config/parameterConfiguration/importExcel", | |
206 | + | |
207 | + }, | |
208 | + dictOptions:{}, | |
209 | + superFieldList:[], | |
210 | + } | |
211 | + }, | |
212 | + created() { | |
213 | + this.getSuperFieldList(); | |
214 | + }, | |
215 | + computed: { | |
216 | + importExcelUrl: function(){ | |
217 | + return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; | |
218 | + }, | |
219 | + }, | |
220 | + methods: { | |
221 | + initDictConfig(){ | |
222 | + }, | |
223 | + getSuperFieldList(){ | |
224 | + let fieldList=[]; | |
225 | + fieldList.push({type:'string',value:'name',text:'参数名称',dictCode:''}) | |
226 | + fieldList.push({type:'string',value:'code',text:'参数键名',dictCode:''}) | |
227 | + fieldList.push({type:'string',value:'value',text:'参数键值',dictCode:''}) | |
228 | + fieldList.push({type:'string',value:'remark',text:'备注',dictCode:''}) | |
229 | + fieldList.push({type:'string',value:'createBy',text:'创建人',dictCode:''}) | |
230 | + fieldList.push({type:'datetime',value:'createTime',text:'创建日期'}) | |
231 | + fieldList.push({type:'string',value:'updateBy',text:'更新人',dictCode:''}) | |
232 | + fieldList.push({type:'datetime',value:'updateTime',text:'更新日期'}) | |
233 | + this.superFieldList = fieldList | |
234 | + } | |
235 | + } | |
236 | + } | |
237 | +</script> | |
238 | +<style scoped> | |
239 | + @import '~@assets/less/common.less'; | |
240 | +</style> | |
0 | 241 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/ReceiptTypeList.vue
0 → 100644
1 | +<template> | |
2 | + <a-card :bordered="false"> | |
3 | + <!-- 查询区域 --> | |
4 | + <div class="table-page-search-wrapper"> | |
5 | + <a-form layout="inline" @keyup.enter.native="searchQuery"> | |
6 | + <a-row :gutter="24"> | |
7 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
8 | + <a-form-item label="编码"> | |
9 | + <a-input placeholder="请输入编码" v-model="queryParam.code"></a-input> | |
10 | + </a-form-item> | |
11 | + </a-col> | |
12 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
13 | + <a-form-item label="名称"> | |
14 | + <a-input placeholder="请输入名称" v-model="queryParam.name"></a-input> | |
15 | + </a-form-item> | |
16 | + </a-col> | |
17 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
18 | + <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> | |
19 | + <a-button type="primary" @click="searchQuery" icon="search">查询</a-button> | |
20 | + <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> | |
21 | + <a @click="handleToggleSearch" style="margin-left: 8px"> | |
22 | + {{ toggleSearchStatus ? '收起' : '展开' }} | |
23 | + <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> | |
24 | + </a> | |
25 | + </span> | |
26 | + </a-col> | |
27 | + </a-row> | |
28 | + </a-form> | |
29 | + </div> | |
30 | + <!-- 查询区域-END --> | |
31 | + | |
32 | + <!-- 操作按钮区域 --> | |
33 | + <div class="table-operator"> | |
34 | + <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |
35 | + <a-button type="primary" icon="download" @click="handleExportXls('入库单类型')">导出</a-button> | |
36 | + <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |
37 | + <a-button type="primary" icon="import">导入</a-button> | |
38 | + </a-upload> | |
39 | + <!-- 高级查询区域 --> | |
40 | + <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> | |
41 | + <a-dropdown v-if="selectedRowKeys.length > 0"> | |
42 | + <a-menu slot="overlay"> | |
43 | + <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> | |
44 | + </a-menu> | |
45 | + <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> | |
46 | + </a-dropdown> | |
47 | + </div> | |
48 | + | |
49 | + <!-- table区域-begin --> | |
50 | + <div> | |
51 | + <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |
52 | + <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |
53 | + <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |
54 | + </div> | |
55 | + | |
56 | + <a-table | |
57 | + ref="table" | |
58 | + size="middle" | |
59 | + :scroll="{x:true}" | |
60 | + bordered | |
61 | + rowKey="id" | |
62 | + :columns="columns" | |
63 | + :dataSource="dataSource" | |
64 | + :pagination="ipagination" | |
65 | + :loading="loading" | |
66 | + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" | |
67 | + class="j-table-force-nowrap" | |
68 | + @change="handleTableChange"> | |
69 | + | |
70 | + <template slot="htmlSlot" slot-scope="text"> | |
71 | + <div v-html="text"></div> | |
72 | + </template> | |
73 | + <template slot="imgSlot" slot-scope="text"> | |
74 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |
75 | + <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |
76 | + </template> | |
77 | + <template slot="fileSlot" slot-scope="text"> | |
78 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |
79 | + <a-button | |
80 | + v-else | |
81 | + :ghost="true" | |
82 | + type="primary" | |
83 | + icon="download" | |
84 | + size="small" | |
85 | + @click="downloadFile(text)"> | |
86 | + 下载 | |
87 | + </a-button> | |
88 | + </template> | |
89 | + | |
90 | + <span slot="action" slot-scope="text, record"> | |
91 | + <a @click="handleEdit(record)">编辑</a> | |
92 | + | |
93 | + <a-divider type="vertical" /> | |
94 | + <a-dropdown> | |
95 | + <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> | |
96 | + <a-menu slot="overlay"> | |
97 | + <a-menu-item> | |
98 | + <a @click="handleDetail(record)">详情</a> | |
99 | + </a-menu-item> | |
100 | + <a-menu-item> | |
101 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
102 | + <a>删除</a> | |
103 | + </a-popconfirm> | |
104 | + </a-menu-item> | |
105 | + </a-menu> | |
106 | + </a-dropdown> | |
107 | + </span> | |
108 | + | |
109 | + </a-table> | |
110 | + </div> | |
111 | + | |
112 | + <receipt-type-modal ref="modalForm" @ok="modalFormOk"></receipt-type-modal> | |
113 | + </a-card> | |
114 | +</template> | |
115 | + | |
116 | +<script> | |
117 | + | |
118 | + import '@/assets/less/TableExpand.less' | |
119 | + import { mixinDevice } from '@/utils/mixin' | |
120 | + import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |
121 | + import ReceiptTypeModal from './modules/ReceiptTypeModal' | |
122 | + | |
123 | + export default { | |
124 | + name: 'ReceiptTypeList', | |
125 | + mixins:[JeecgListMixin, mixinDevice], | |
126 | + components: { | |
127 | + ReceiptTypeModal | |
128 | + }, | |
129 | + data () { | |
130 | + return { | |
131 | + description: '入库单类型管理页面', | |
132 | + // 表头 | |
133 | + columns: [ | |
134 | + { | |
135 | + title: '#', | |
136 | + dataIndex: '', | |
137 | + key:'rowIndex', | |
138 | + width:60, | |
139 | + align:"center", | |
140 | + customRender:function (t,r,index) { | |
141 | + return parseInt(index)+1; | |
142 | + } | |
143 | + }, | |
144 | + { | |
145 | + title:'编码', | |
146 | + align:"center", | |
147 | + dataIndex: 'code' | |
148 | + }, | |
149 | + { | |
150 | + title:'名称', | |
151 | + align:"center", | |
152 | + dataIndex: 'name' | |
153 | + }, | |
154 | + { | |
155 | + title:'货主', | |
156 | + align:"center", | |
157 | + dataIndex: 'companyCode' | |
158 | + }, | |
159 | + { | |
160 | + title:'创建人', | |
161 | + align:"center", | |
162 | + dataIndex: 'createBy' | |
163 | + }, | |
164 | + { | |
165 | + title:'创建日期', | |
166 | + align:"center", | |
167 | + dataIndex: 'createTime' | |
168 | + }, | |
169 | + { | |
170 | + title:'更新人', | |
171 | + align:"center", | |
172 | + dataIndex: 'updateBy' | |
173 | + }, | |
174 | + { | |
175 | + title:'更新日期', | |
176 | + align:"center", | |
177 | + dataIndex: 'updateTime' | |
178 | + }, | |
179 | + { | |
180 | + title: '操作', | |
181 | + dataIndex: 'action', | |
182 | + align:"center", | |
183 | + fixed:"right", | |
184 | + width:147, | |
185 | + scopedSlots: { customRender: 'action' } | |
186 | + } | |
187 | + ], | |
188 | + url: { | |
189 | + list: "/config/receiptType/list", | |
190 | + delete: "/config/receiptType/delete", | |
191 | + deleteBatch: "/config/receiptType/deleteBatch", | |
192 | + exportXlsUrl: "/config/receiptType/exportXls", | |
193 | + importExcelUrl: "config/receiptType/importExcel", | |
194 | + | |
195 | + }, | |
196 | + dictOptions:{}, | |
197 | + superFieldList:[], | |
198 | + } | |
199 | + }, | |
200 | + created() { | |
201 | + this.getSuperFieldList(); | |
202 | + }, | |
203 | + computed: { | |
204 | + importExcelUrl: function(){ | |
205 | + return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; | |
206 | + }, | |
207 | + }, | |
208 | + methods: { | |
209 | + initDictConfig(){ | |
210 | + }, | |
211 | + getSuperFieldList(){ | |
212 | + let fieldList=[]; | |
213 | + fieldList.push({type:'string',value:'code',text:'编码',dictCode:''}) | |
214 | + fieldList.push({type:'string',value:'name',text:'名称',dictCode:''}) | |
215 | + fieldList.push({type:'string',value:'companyCode',text:'货主',dictCode:''}) | |
216 | + fieldList.push({type:'string',value:'createBy',text:'创建人',dictCode:''}) | |
217 | + fieldList.push({type:'datetime',value:'createTime',text:'创建日期'}) | |
218 | + fieldList.push({type:'string',value:'updateBy',text:'更新人',dictCode:''}) | |
219 | + fieldList.push({type:'datetime',value:'updateTime',text:'更新日期'}) | |
220 | + this.superFieldList = fieldList | |
221 | + } | |
222 | + } | |
223 | + } | |
224 | +</script> | |
225 | +<style scoped> | |
226 | + @import '~@assets/less/common.less'; | |
227 | +</style> | |
0 | 228 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/ShipmentTypeList.vue
0 → 100644
1 | +<template> | |
2 | + <a-card :bordered="false"> | |
3 | + <!-- 查询区域 --> | |
4 | + <div class="table-page-search-wrapper"> | |
5 | + <a-form layout="inline" @keyup.enter.native="searchQuery"> | |
6 | + <a-row :gutter="24"> | |
7 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
8 | + <a-form-item label="编码"> | |
9 | + <a-input placeholder="请输入编码" v-model="queryParam.code"></a-input> | |
10 | + </a-form-item> | |
11 | + </a-col> | |
12 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
13 | + <a-form-item label="名称"> | |
14 | + <a-input placeholder="请输入名称" v-model="queryParam.name"></a-input> | |
15 | + </a-form-item> | |
16 | + </a-col> | |
17 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
18 | + <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> | |
19 | + <a-button type="primary" @click="searchQuery" icon="search">查询</a-button> | |
20 | + <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> | |
21 | + <a @click="handleToggleSearch" style="margin-left: 8px"> | |
22 | + {{ toggleSearchStatus ? '收起' : '展开' }} | |
23 | + <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> | |
24 | + </a> | |
25 | + </span> | |
26 | + </a-col> | |
27 | + </a-row> | |
28 | + </a-form> | |
29 | + </div> | |
30 | + <!-- 查询区域-END --> | |
31 | + | |
32 | + <!-- 操作按钮区域 --> | |
33 | + <div class="table-operator"> | |
34 | + <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |
35 | + <a-button type="primary" icon="download" @click="handleExportXls('出库单类型')">导出</a-button> | |
36 | + <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |
37 | + <a-button type="primary" icon="import">导入</a-button> | |
38 | + </a-upload> | |
39 | + <!-- 高级查询区域 --> | |
40 | + <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> | |
41 | + <a-dropdown v-if="selectedRowKeys.length > 0"> | |
42 | + <a-menu slot="overlay"> | |
43 | + <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> | |
44 | + </a-menu> | |
45 | + <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> | |
46 | + </a-dropdown> | |
47 | + </div> | |
48 | + | |
49 | + <!-- table区域-begin --> | |
50 | + <div> | |
51 | + <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |
52 | + <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |
53 | + <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |
54 | + </div> | |
55 | + | |
56 | + <a-table | |
57 | + ref="table" | |
58 | + size="middle" | |
59 | + :scroll="{x:true}" | |
60 | + bordered | |
61 | + rowKey="id" | |
62 | + :columns="columns" | |
63 | + :dataSource="dataSource" | |
64 | + :pagination="ipagination" | |
65 | + :loading="loading" | |
66 | + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" | |
67 | + class="j-table-force-nowrap" | |
68 | + @change="handleTableChange"> | |
69 | + | |
70 | + <template slot="htmlSlot" slot-scope="text"> | |
71 | + <div v-html="text"></div> | |
72 | + </template> | |
73 | + <template slot="imgSlot" slot-scope="text"> | |
74 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |
75 | + <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |
76 | + </template> | |
77 | + <template slot="fileSlot" slot-scope="text"> | |
78 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |
79 | + <a-button | |
80 | + v-else | |
81 | + :ghost="true" | |
82 | + type="primary" | |
83 | + icon="download" | |
84 | + size="small" | |
85 | + @click="downloadFile(text)"> | |
86 | + 下载 | |
87 | + </a-button> | |
88 | + </template> | |
89 | + | |
90 | + <span slot="action" slot-scope="text, record"> | |
91 | + <a @click="handleEdit(record)">编辑</a> | |
92 | + | |
93 | + <a-divider type="vertical" /> | |
94 | + <a-dropdown> | |
95 | + <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> | |
96 | + <a-menu slot="overlay"> | |
97 | + <a-menu-item> | |
98 | + <a @click="handleDetail(record)">详情</a> | |
99 | + </a-menu-item> | |
100 | + <a-menu-item> | |
101 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
102 | + <a>删除</a> | |
103 | + </a-popconfirm> | |
104 | + </a-menu-item> | |
105 | + </a-menu> | |
106 | + </a-dropdown> | |
107 | + </span> | |
108 | + | |
109 | + </a-table> | |
110 | + </div> | |
111 | + | |
112 | + <shipment-type-modal ref="modalForm" @ok="modalFormOk"></shipment-type-modal> | |
113 | + </a-card> | |
114 | +</template> | |
115 | + | |
116 | +<script> | |
117 | + | |
118 | + import '@/assets/less/TableExpand.less' | |
119 | + import { mixinDevice } from '@/utils/mixin' | |
120 | + import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |
121 | + import ShipmentTypeModal from './modules/ShipmentTypeModal' | |
122 | + | |
123 | + export default { | |
124 | + name: 'ShipmentTypeList', | |
125 | + mixins:[JeecgListMixin, mixinDevice], | |
126 | + components: { | |
127 | + ShipmentTypeModal | |
128 | + }, | |
129 | + data () { | |
130 | + return { | |
131 | + description: '出库单类型管理页面', | |
132 | + // 表头 | |
133 | + columns: [ | |
134 | + { | |
135 | + title: '#', | |
136 | + dataIndex: '', | |
137 | + key:'rowIndex', | |
138 | + width:60, | |
139 | + align:"center", | |
140 | + customRender:function (t,r,index) { | |
141 | + return parseInt(index)+1; | |
142 | + } | |
143 | + }, | |
144 | + { | |
145 | + title:'编码', | |
146 | + align:"center", | |
147 | + dataIndex: 'code' | |
148 | + }, | |
149 | + { | |
150 | + title:'名称', | |
151 | + align:"center", | |
152 | + dataIndex: 'name' | |
153 | + }, | |
154 | + { | |
155 | + title:'货主', | |
156 | + align:"center", | |
157 | + dataIndex: 'companyCode' | |
158 | + }, | |
159 | + { | |
160 | + title:'创建人', | |
161 | + align:"center", | |
162 | + dataIndex: 'createBy' | |
163 | + }, | |
164 | + { | |
165 | + title:'创建日期', | |
166 | + align:"center", | |
167 | + dataIndex: 'createTime' | |
168 | + }, | |
169 | + { | |
170 | + title:'更新人', | |
171 | + align:"center", | |
172 | + dataIndex: 'updateBy' | |
173 | + }, | |
174 | + { | |
175 | + title:'更新日期', | |
176 | + align:"center", | |
177 | + dataIndex: 'updateTime' | |
178 | + }, | |
179 | + { | |
180 | + title: '操作', | |
181 | + dataIndex: 'action', | |
182 | + align:"center", | |
183 | + fixed:"right", | |
184 | + width:147, | |
185 | + scopedSlots: { customRender: 'action' } | |
186 | + } | |
187 | + ], | |
188 | + url: { | |
189 | + list: "/config/shipmentType/list", | |
190 | + delete: "/config/shipmentType/delete", | |
191 | + deleteBatch: "/config/shipmentType/deleteBatch", | |
192 | + exportXlsUrl: "/config/shipmentType/exportXls", | |
193 | + importExcelUrl: "config/shipmentType/importExcel", | |
194 | + | |
195 | + }, | |
196 | + dictOptions:{}, | |
197 | + superFieldList:[], | |
198 | + } | |
199 | + }, | |
200 | + created() { | |
201 | + this.getSuperFieldList(); | |
202 | + }, | |
203 | + computed: { | |
204 | + importExcelUrl: function(){ | |
205 | + return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; | |
206 | + }, | |
207 | + }, | |
208 | + methods: { | |
209 | + initDictConfig(){ | |
210 | + }, | |
211 | + getSuperFieldList(){ | |
212 | + let fieldList=[]; | |
213 | + fieldList.push({type:'string',value:'code',text:'编码',dictCode:''}) | |
214 | + fieldList.push({type:'string',value:'name',text:'名称',dictCode:''}) | |
215 | + fieldList.push({type:'string',value:'companyCode',text:'货主',dictCode:''}) | |
216 | + fieldList.push({type:'string',value:'createBy',text:'创建人',dictCode:''}) | |
217 | + fieldList.push({type:'datetime',value:'createTime',text:'创建日期'}) | |
218 | + fieldList.push({type:'string',value:'updateBy',text:'更新人',dictCode:''}) | |
219 | + fieldList.push({type:'datetime',value:'updateTime',text:'更新日期'}) | |
220 | + this.superFieldList = fieldList | |
221 | + } | |
222 | + } | |
223 | + } | |
224 | +</script> | |
225 | +<style scoped> | |
226 | + @import '~@assets/less/common.less'; | |
227 | +</style> | |
0 | 228 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/AddressForm.vue
0 → 100644
1 | +<template> | |
2 | + <a-spin :spinning="confirmLoading"> | |
3 | + <j-form-container :disabled="formDisabled"> | |
4 | + <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail"> | |
5 | + <a-row> | |
6 | + <a-col :span="24"> | |
7 | + <a-form-model-item label="编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="code"> | |
8 | + <a-input v-model="model.code" placeholder="请输入编码" ></a-input> | |
9 | + </a-form-model-item> | |
10 | + </a-col> | |
11 | + <a-col :span="24"> | |
12 | + <a-form-model-item label="库区" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="zoneCode"> | |
13 | + <a-input v-model="model.zoneCode" placeholder="请输入库区" ></a-input> | |
14 | + </a-form-model-item> | |
15 | + </a-col> | |
16 | + <a-col :span="24"> | |
17 | + <a-form-model-item label="接口地址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="url"> | |
18 | + <a-input v-model="model.url" placeholder="请输入接口地址" ></a-input> | |
19 | + </a-form-model-item> | |
20 | + </a-col> | |
21 | + </a-row> | |
22 | + </a-form-model> | |
23 | + </j-form-container> | |
24 | + </a-spin> | |
25 | +</template> | |
26 | + | |
27 | +<script> | |
28 | + | |
29 | + import { httpAction, getAction } from '@/api/manage' | |
30 | + import { validateDuplicateValue } from '@/utils/util' | |
31 | + | |
32 | + export default { | |
33 | + name: 'AddressForm', | |
34 | + components: { | |
35 | + }, | |
36 | + props: { | |
37 | + //表单禁用 | |
38 | + disabled: { | |
39 | + type: Boolean, | |
40 | + default: false, | |
41 | + required: false | |
42 | + } | |
43 | + }, | |
44 | + data () { | |
45 | + return { | |
46 | + model:{ | |
47 | + }, | |
48 | + labelCol: { | |
49 | + xs: { span: 24 }, | |
50 | + sm: { span: 5 }, | |
51 | + }, | |
52 | + wrapperCol: { | |
53 | + xs: { span: 24 }, | |
54 | + sm: { span: 16 }, | |
55 | + }, | |
56 | + confirmLoading: false, | |
57 | + validatorRules: { | |
58 | + }, | |
59 | + url: { | |
60 | + add: "/config/address/add", | |
61 | + edit: "/config/address/edit", | |
62 | + queryById: "/config/address/queryById" | |
63 | + } | |
64 | + } | |
65 | + }, | |
66 | + computed: { | |
67 | + formDisabled(){ | |
68 | + return this.disabled | |
69 | + }, | |
70 | + }, | |
71 | + created () { | |
72 | + //备份model原始值 | |
73 | + this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |
74 | + }, | |
75 | + methods: { | |
76 | + add () { | |
77 | + this.edit(this.modelDefault); | |
78 | + }, | |
79 | + edit (record) { | |
80 | + this.model = Object.assign({}, record); | |
81 | + this.visible = true; | |
82 | + }, | |
83 | + submitForm () { | |
84 | + const that = this; | |
85 | + // 触发表单验证 | |
86 | + this.$refs.form.validate(valid => { | |
87 | + if (valid) { | |
88 | + that.confirmLoading = true; | |
89 | + let httpurl = ''; | |
90 | + let method = ''; | |
91 | + if(!this.model.id){ | |
92 | + httpurl+=this.url.add; | |
93 | + method = 'post'; | |
94 | + }else{ | |
95 | + httpurl+=this.url.edit; | |
96 | + method = 'put'; | |
97 | + } | |
98 | + httpAction(httpurl,this.model,method).then((res)=>{ | |
99 | + if(res.success){ | |
100 | + that.$message.success(res.message); | |
101 | + that.$emit('ok'); | |
102 | + }else{ | |
103 | + that.$message.warning(res.message); | |
104 | + } | |
105 | + }).finally(() => { | |
106 | + that.confirmLoading = false; | |
107 | + }) | |
108 | + } | |
109 | + | |
110 | + }) | |
111 | + }, | |
112 | + } | |
113 | + } | |
114 | +</script> | |
0 | 115 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/AddressModal.Style#Drawer.vue
0 → 100644
1 | +<template> | |
2 | + <a-drawer | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + placement="right" | |
6 | + :closable="false" | |
7 | + @close="close" | |
8 | + destroyOnClose | |
9 | + :visible="visible"> | |
10 | + <address-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></address-form> | |
11 | + <div class="drawer-footer"> | |
12 | + <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button> | |
13 | + <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button> | |
14 | + </div> | |
15 | + </a-drawer> | |
16 | +</template> | |
17 | + | |
18 | +<script> | |
19 | + | |
20 | + import AddressForm from './AddressForm' | |
21 | + | |
22 | + export default { | |
23 | + name: 'AddressModal', | |
24 | + components: { | |
25 | + AddressForm | |
26 | + }, | |
27 | + data () { | |
28 | + return { | |
29 | + title:"操作", | |
30 | + width:800, | |
31 | + visible: false, | |
32 | + disableSubmit: false | |
33 | + } | |
34 | + }, | |
35 | + methods: { | |
36 | + add () { | |
37 | + this.visible=true | |
38 | + this.$nextTick(()=>{ | |
39 | + this.$refs.realForm.add(); | |
40 | + }) | |
41 | + }, | |
42 | + edit (record) { | |
43 | + this.visible=true | |
44 | + this.$nextTick(()=>{ | |
45 | + this.$refs.realForm.edit(record); | |
46 | + }); | |
47 | + }, | |
48 | + close () { | |
49 | + this.$emit('close'); | |
50 | + this.visible = false; | |
51 | + }, | |
52 | + submitCallback(){ | |
53 | + this.$emit('ok'); | |
54 | + this.visible = false; | |
55 | + }, | |
56 | + handleOk () { | |
57 | + this.$refs.realForm.submitForm(); | |
58 | + }, | |
59 | + handleCancel () { | |
60 | + this.close() | |
61 | + } | |
62 | + } | |
63 | + } | |
64 | +</script> | |
65 | + | |
66 | +<style lang="less" scoped> | |
67 | +/** Button按钮间距 */ | |
68 | + .ant-btn { | |
69 | + margin-left: 30px; | |
70 | + margin-bottom: 30px; | |
71 | + float: right; | |
72 | + } | |
73 | + .drawer-footer{ | |
74 | + position: absolute; | |
75 | + bottom: -8px; | |
76 | + width: 100%; | |
77 | + border-top: 1px solid #e8e8e8; | |
78 | + padding: 10px 16px; | |
79 | + text-align: right; | |
80 | + left: 0; | |
81 | + background: #fff; | |
82 | + border-radius: 0 0 2px 2px; | |
83 | + } | |
84 | +</style> | |
0 | 85 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/AddressModal.vue
0 → 100644
1 | +<template> | |
2 | + <j-modal | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + :visible="visible" | |
6 | + switchFullscreen | |
7 | + @ok="handleOk" | |
8 | + :okButtonProps="{ class:{'jee-hidden': disableSubmit} }" | |
9 | + @cancel="handleCancel" | |
10 | + cancelText="关闭"> | |
11 | + <address-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></address-form> | |
12 | + </j-modal> | |
13 | +</template> | |
14 | + | |
15 | +<script> | |
16 | + | |
17 | + import AddressForm from './AddressForm' | |
18 | + export default { | |
19 | + name: 'AddressModal', | |
20 | + components: { | |
21 | + AddressForm | |
22 | + }, | |
23 | + data () { | |
24 | + return { | |
25 | + title:'', | |
26 | + width:800, | |
27 | + visible: false, | |
28 | + disableSubmit: false | |
29 | + } | |
30 | + }, | |
31 | + methods: { | |
32 | + add () { | |
33 | + this.visible=true | |
34 | + this.$nextTick(()=>{ | |
35 | + this.$refs.realForm.add(); | |
36 | + }) | |
37 | + }, | |
38 | + edit (record) { | |
39 | + this.visible=true | |
40 | + this.$nextTick(()=>{ | |
41 | + this.$refs.realForm.edit(record); | |
42 | + }) | |
43 | + }, | |
44 | + close () { | |
45 | + this.$emit('close'); | |
46 | + this.visible = false; | |
47 | + }, | |
48 | + handleOk () { | |
49 | + this.$refs.realForm.submitForm(); | |
50 | + }, | |
51 | + submitCallback(){ | |
52 | + this.$emit('ok'); | |
53 | + this.visible = false; | |
54 | + }, | |
55 | + handleCancel () { | |
56 | + this.close() | |
57 | + } | |
58 | + } | |
59 | + } | |
60 | +</script> | |
0 | 61 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/CycleCountPreferenceForm.vue
0 → 100644
1 | +<template> | |
2 | + <a-spin :spinning="confirmLoading"> | |
3 | + <j-form-container :disabled="formDisabled"> | |
4 | + <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail"> | |
5 | + <a-row> | |
6 | + <a-col :span="24"> | |
7 | + <a-form-model-item label="编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="code"> | |
8 | + <a-input v-model="model.code" placeholder="请输入编码" ></a-input> | |
9 | + </a-form-model-item> | |
10 | + </a-col> | |
11 | + <a-col :span="24"> | |
12 | + <a-form-model-item label="名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name"> | |
13 | + <a-input v-model="model.name" placeholder="请输入名称" ></a-input> | |
14 | + </a-form-model-item> | |
15 | + </a-col> | |
16 | + <a-col :span="24"> | |
17 | + <a-form-model-item label="系统提示库位" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="promptLocation"> | |
18 | + <j-dict-select-tag type="list" v-model="model.promptLocation" dictCode="is_or_not" placeholder="请选择系统提示库位" /> | |
19 | + </a-form-model-item> | |
20 | + </a-col> | |
21 | + <a-col :span="24"> | |
22 | + <a-form-model-item label="系统提示容器" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="promptContainer"> | |
23 | + <j-dict-select-tag type="list" v-model="model.promptContainer" dictCode="is_or_not" placeholder="请选择系统提示容器" /> | |
24 | + </a-form-model-item> | |
25 | + </a-col> | |
26 | + <a-col :span="24"> | |
27 | + <a-form-model-item label="系统提示物料" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="promptMaterial"> | |
28 | + <j-dict-select-tag type="list" v-model="model.promptMaterial" dictCode="is_or_not" placeholder="请选择系统提示物料" /> | |
29 | + </a-form-model-item> | |
30 | + </a-col> | |
31 | + <a-col :span="24"> | |
32 | + <a-form-model-item label="显示差异数量" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="prompAdjustQty"> | |
33 | + <j-dict-select-tag type="list" v-model="model.prompAdjustQty" dictCode="is_or_not" placeholder="请选择显示差异数量" /> | |
34 | + </a-form-model-item> | |
35 | + </a-col> | |
36 | + <a-col :span="24"> | |
37 | + <a-form-model-item label="显示库存数量" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="promptInventory"> | |
38 | + <j-dict-select-tag type="list" v-model="model.promptInventory" dictCode="is_or_not" placeholder="请选择显示库存数量" /> | |
39 | + </a-form-model-item> | |
40 | + </a-col> | |
41 | + </a-row> | |
42 | + </a-form-model> | |
43 | + </j-form-container> | |
44 | + </a-spin> | |
45 | +</template> | |
46 | + | |
47 | +<script> | |
48 | + | |
49 | + import { httpAction, getAction } from '@/api/manage' | |
50 | + import { validateDuplicateValue } from '@/utils/util' | |
51 | + | |
52 | + export default { | |
53 | + name: 'CycleCountPreferenceForm', | |
54 | + components: { | |
55 | + }, | |
56 | + props: { | |
57 | + //表单禁用 | |
58 | + disabled: { | |
59 | + type: Boolean, | |
60 | + default: false, | |
61 | + required: false | |
62 | + } | |
63 | + }, | |
64 | + data () { | |
65 | + return { | |
66 | + model:{ | |
67 | + }, | |
68 | + labelCol: { | |
69 | + xs: { span: 24 }, | |
70 | + sm: { span: 5 }, | |
71 | + }, | |
72 | + wrapperCol: { | |
73 | + xs: { span: 24 }, | |
74 | + sm: { span: 16 }, | |
75 | + }, | |
76 | + confirmLoading: false, | |
77 | + validatorRules: { | |
78 | + }, | |
79 | + url: { | |
80 | + add: "/config/cycleCountPreference/add", | |
81 | + edit: "/config/cycleCountPreference/edit", | |
82 | + queryById: "/config/cycleCountPreference/queryById" | |
83 | + } | |
84 | + } | |
85 | + }, | |
86 | + computed: { | |
87 | + formDisabled(){ | |
88 | + return this.disabled | |
89 | + }, | |
90 | + }, | |
91 | + created () { | |
92 | + //备份model原始值 | |
93 | + this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |
94 | + }, | |
95 | + methods: { | |
96 | + add () { | |
97 | + this.edit(this.modelDefault); | |
98 | + }, | |
99 | + edit (record) { | |
100 | + this.model = Object.assign({}, record); | |
101 | + this.visible = true; | |
102 | + }, | |
103 | + submitForm () { | |
104 | + const that = this; | |
105 | + // 触发表单验证 | |
106 | + this.$refs.form.validate(valid => { | |
107 | + if (valid) { | |
108 | + that.confirmLoading = true; | |
109 | + let httpurl = ''; | |
110 | + let method = ''; | |
111 | + if(!this.model.id){ | |
112 | + httpurl+=this.url.add; | |
113 | + method = 'post'; | |
114 | + }else{ | |
115 | + httpurl+=this.url.edit; | |
116 | + method = 'put'; | |
117 | + } | |
118 | + httpAction(httpurl,this.model,method).then((res)=>{ | |
119 | + if(res.success){ | |
120 | + that.$message.success(res.message); | |
121 | + that.$emit('ok'); | |
122 | + }else{ | |
123 | + that.$message.warning(res.message); | |
124 | + } | |
125 | + }).finally(() => { | |
126 | + that.confirmLoading = false; | |
127 | + }) | |
128 | + } | |
129 | + | |
130 | + }) | |
131 | + }, | |
132 | + } | |
133 | + } | |
134 | +</script> | |
0 | 135 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/CycleCountPreferenceModal.Style#Drawer.vue
0 → 100644
1 | +<template> | |
2 | + <a-drawer | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + placement="right" | |
6 | + :closable="false" | |
7 | + @close="close" | |
8 | + destroyOnClose | |
9 | + :visible="visible"> | |
10 | + <cycle-count-preference-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></cycle-count-preference-form> | |
11 | + <div class="drawer-footer"> | |
12 | + <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button> | |
13 | + <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button> | |
14 | + </div> | |
15 | + </a-drawer> | |
16 | +</template> | |
17 | + | |
18 | +<script> | |
19 | + | |
20 | + import CycleCountPreferenceForm from './CycleCountPreferenceForm' | |
21 | + | |
22 | + export default { | |
23 | + name: 'CycleCountPreferenceModal', | |
24 | + components: { | |
25 | + CycleCountPreferenceForm | |
26 | + }, | |
27 | + data () { | |
28 | + return { | |
29 | + title:"操作", | |
30 | + width:800, | |
31 | + visible: false, | |
32 | + disableSubmit: false | |
33 | + } | |
34 | + }, | |
35 | + methods: { | |
36 | + add () { | |
37 | + this.visible=true | |
38 | + this.$nextTick(()=>{ | |
39 | + this.$refs.realForm.add(); | |
40 | + }) | |
41 | + }, | |
42 | + edit (record) { | |
43 | + this.visible=true | |
44 | + this.$nextTick(()=>{ | |
45 | + this.$refs.realForm.edit(record); | |
46 | + }); | |
47 | + }, | |
48 | + close () { | |
49 | + this.$emit('close'); | |
50 | + this.visible = false; | |
51 | + }, | |
52 | + submitCallback(){ | |
53 | + this.$emit('ok'); | |
54 | + this.visible = false; | |
55 | + }, | |
56 | + handleOk () { | |
57 | + this.$refs.realForm.submitForm(); | |
58 | + }, | |
59 | + handleCancel () { | |
60 | + this.close() | |
61 | + } | |
62 | + } | |
63 | + } | |
64 | +</script> | |
65 | + | |
66 | +<style lang="less" scoped> | |
67 | +/** Button按钮间距 */ | |
68 | + .ant-btn { | |
69 | + margin-left: 30px; | |
70 | + margin-bottom: 30px; | |
71 | + float: right; | |
72 | + } | |
73 | + .drawer-footer{ | |
74 | + position: absolute; | |
75 | + bottom: -8px; | |
76 | + width: 100%; | |
77 | + border-top: 1px solid #e8e8e8; | |
78 | + padding: 10px 16px; | |
79 | + text-align: right; | |
80 | + left: 0; | |
81 | + background: #fff; | |
82 | + border-radius: 0 0 2px 2px; | |
83 | + } | |
84 | +</style> | |
0 | 85 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/CycleCountPreferenceModal.vue
0 → 100644
1 | +<template> | |
2 | + <j-modal | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + :visible="visible" | |
6 | + switchFullscreen | |
7 | + @ok="handleOk" | |
8 | + :okButtonProps="{ class:{'jee-hidden': disableSubmit} }" | |
9 | + @cancel="handleCancel" | |
10 | + cancelText="关闭"> | |
11 | + <cycle-count-preference-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></cycle-count-preference-form> | |
12 | + </j-modal> | |
13 | +</template> | |
14 | + | |
15 | +<script> | |
16 | + | |
17 | + import CycleCountPreferenceForm from './CycleCountPreferenceForm' | |
18 | + export default { | |
19 | + name: 'CycleCountPreferenceModal', | |
20 | + components: { | |
21 | + CycleCountPreferenceForm | |
22 | + }, | |
23 | + data () { | |
24 | + return { | |
25 | + title:'', | |
26 | + width:800, | |
27 | + visible: false, | |
28 | + disableSubmit: false | |
29 | + } | |
30 | + }, | |
31 | + methods: { | |
32 | + add () { | |
33 | + this.visible=true | |
34 | + this.$nextTick(()=>{ | |
35 | + this.$refs.realForm.add(); | |
36 | + }) | |
37 | + }, | |
38 | + edit (record) { | |
39 | + this.visible=true | |
40 | + this.$nextTick(()=>{ | |
41 | + this.$refs.realForm.edit(record); | |
42 | + }) | |
43 | + }, | |
44 | + close () { | |
45 | + this.$emit('close'); | |
46 | + this.visible = false; | |
47 | + }, | |
48 | + handleOk () { | |
49 | + this.$refs.realForm.submitForm(); | |
50 | + }, | |
51 | + submitCallback(){ | |
52 | + this.$emit('ok'); | |
53 | + this.visible = false; | |
54 | + }, | |
55 | + handleCancel () { | |
56 | + this.close() | |
57 | + } | |
58 | + } | |
59 | + } | |
60 | +</script> | |
0 | 61 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ParameterConfigurationForm.vue
0 → 100644
1 | +<template> | |
2 | + <a-spin :spinning="confirmLoading"> | |
3 | + <j-form-container :disabled="formDisabled"> | |
4 | + <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail"> | |
5 | + <a-row> | |
6 | + <a-col :span="24"> | |
7 | + <a-form-model-item label="参数名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name"> | |
8 | + <a-input v-model="model.name" placeholder="请输入参数名称" ></a-input> | |
9 | + </a-form-model-item> | |
10 | + </a-col> | |
11 | + <a-col :span="24"> | |
12 | + <a-form-model-item label="参数键名" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="code"> | |
13 | + <a-input v-model="model.code" placeholder="请输入参数键名" ></a-input> | |
14 | + </a-form-model-item> | |
15 | + </a-col> | |
16 | + <a-col :span="24"> | |
17 | + <a-form-model-item label="参数键值" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="value"> | |
18 | + <a-input v-model="model.value" placeholder="请输入参数键值" ></a-input> | |
19 | + </a-form-model-item> | |
20 | + </a-col> | |
21 | + <a-col :span="24"> | |
22 | + <a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark"> | |
23 | + <a-input v-model="model.remark" placeholder="请输入备注" ></a-input> | |
24 | + </a-form-model-item> | |
25 | + </a-col> | |
26 | + </a-row> | |
27 | + </a-form-model> | |
28 | + </j-form-container> | |
29 | + </a-spin> | |
30 | +</template> | |
31 | + | |
32 | +<script> | |
33 | + | |
34 | + import { httpAction, getAction } from '@/api/manage' | |
35 | + import { validateDuplicateValue } from '@/utils/util' | |
36 | + | |
37 | + export default { | |
38 | + name: 'ParameterConfigurationForm', | |
39 | + components: { | |
40 | + }, | |
41 | + props: { | |
42 | + //表单禁用 | |
43 | + disabled: { | |
44 | + type: Boolean, | |
45 | + default: false, | |
46 | + required: false | |
47 | + } | |
48 | + }, | |
49 | + data () { | |
50 | + return { | |
51 | + model:{ | |
52 | + }, | |
53 | + labelCol: { | |
54 | + xs: { span: 24 }, | |
55 | + sm: { span: 5 }, | |
56 | + }, | |
57 | + wrapperCol: { | |
58 | + xs: { span: 24 }, | |
59 | + sm: { span: 16 }, | |
60 | + }, | |
61 | + confirmLoading: false, | |
62 | + validatorRules: { | |
63 | + }, | |
64 | + url: { | |
65 | + add: "/config/parameterConfiguration/add", | |
66 | + edit: "/config/parameterConfiguration/edit", | |
67 | + queryById: "/config/parameterConfiguration/queryById" | |
68 | + } | |
69 | + } | |
70 | + }, | |
71 | + computed: { | |
72 | + formDisabled(){ | |
73 | + return this.disabled | |
74 | + }, | |
75 | + }, | |
76 | + created () { | |
77 | + //备份model原始值 | |
78 | + this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |
79 | + }, | |
80 | + methods: { | |
81 | + add () { | |
82 | + this.edit(this.modelDefault); | |
83 | + }, | |
84 | + edit (record) { | |
85 | + this.model = Object.assign({}, record); | |
86 | + this.visible = true; | |
87 | + }, | |
88 | + submitForm () { | |
89 | + const that = this; | |
90 | + // 触发表单验证 | |
91 | + this.$refs.form.validate(valid => { | |
92 | + if (valid) { | |
93 | + that.confirmLoading = true; | |
94 | + let httpurl = ''; | |
95 | + let method = ''; | |
96 | + if(!this.model.id){ | |
97 | + httpurl+=this.url.add; | |
98 | + method = 'post'; | |
99 | + }else{ | |
100 | + httpurl+=this.url.edit; | |
101 | + method = 'put'; | |
102 | + } | |
103 | + httpAction(httpurl,this.model,method).then((res)=>{ | |
104 | + if(res.success){ | |
105 | + that.$message.success(res.message); | |
106 | + that.$emit('ok'); | |
107 | + }else{ | |
108 | + that.$message.warning(res.message); | |
109 | + } | |
110 | + }).finally(() => { | |
111 | + that.confirmLoading = false; | |
112 | + }) | |
113 | + } | |
114 | + | |
115 | + }) | |
116 | + }, | |
117 | + } | |
118 | + } | |
119 | +</script> | |
0 | 120 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ParameterConfigurationModal.Style#Drawer.vue
0 → 100644
1 | +<template> | |
2 | + <a-drawer | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + placement="right" | |
6 | + :closable="false" | |
7 | + @close="close" | |
8 | + destroyOnClose | |
9 | + :visible="visible"> | |
10 | + <parameter-configuration-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></parameter-configuration-form> | |
11 | + <div class="drawer-footer"> | |
12 | + <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button> | |
13 | + <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button> | |
14 | + </div> | |
15 | + </a-drawer> | |
16 | +</template> | |
17 | + | |
18 | +<script> | |
19 | + | |
20 | + import ParameterConfigurationForm from './ParameterConfigurationForm' | |
21 | + | |
22 | + export default { | |
23 | + name: 'ParameterConfigurationModal', | |
24 | + components: { | |
25 | + ParameterConfigurationForm | |
26 | + }, | |
27 | + data () { | |
28 | + return { | |
29 | + title:"操作", | |
30 | + width:800, | |
31 | + visible: false, | |
32 | + disableSubmit: false | |
33 | + } | |
34 | + }, | |
35 | + methods: { | |
36 | + add () { | |
37 | + this.visible=true | |
38 | + this.$nextTick(()=>{ | |
39 | + this.$refs.realForm.add(); | |
40 | + }) | |
41 | + }, | |
42 | + edit (record) { | |
43 | + this.visible=true | |
44 | + this.$nextTick(()=>{ | |
45 | + this.$refs.realForm.edit(record); | |
46 | + }); | |
47 | + }, | |
48 | + close () { | |
49 | + this.$emit('close'); | |
50 | + this.visible = false; | |
51 | + }, | |
52 | + submitCallback(){ | |
53 | + this.$emit('ok'); | |
54 | + this.visible = false; | |
55 | + }, | |
56 | + handleOk () { | |
57 | + this.$refs.realForm.submitForm(); | |
58 | + }, | |
59 | + handleCancel () { | |
60 | + this.close() | |
61 | + } | |
62 | + } | |
63 | + } | |
64 | +</script> | |
65 | + | |
66 | +<style lang="less" scoped> | |
67 | +/** Button按钮间距 */ | |
68 | + .ant-btn { | |
69 | + margin-left: 30px; | |
70 | + margin-bottom: 30px; | |
71 | + float: right; | |
72 | + } | |
73 | + .drawer-footer{ | |
74 | + position: absolute; | |
75 | + bottom: -8px; | |
76 | + width: 100%; | |
77 | + border-top: 1px solid #e8e8e8; | |
78 | + padding: 10px 16px; | |
79 | + text-align: right; | |
80 | + left: 0; | |
81 | + background: #fff; | |
82 | + border-radius: 0 0 2px 2px; | |
83 | + } | |
84 | +</style> | |
0 | 85 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ParameterConfigurationModal.vue
0 → 100644
1 | +<template> | |
2 | + <j-modal | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + :visible="visible" | |
6 | + switchFullscreen | |
7 | + @ok="handleOk" | |
8 | + :okButtonProps="{ class:{'jee-hidden': disableSubmit} }" | |
9 | + @cancel="handleCancel" | |
10 | + cancelText="关闭"> | |
11 | + <parameter-configuration-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></parameter-configuration-form> | |
12 | + </j-modal> | |
13 | +</template> | |
14 | + | |
15 | +<script> | |
16 | + | |
17 | + import ParameterConfigurationForm from './ParameterConfigurationForm' | |
18 | + export default { | |
19 | + name: 'ParameterConfigurationModal', | |
20 | + components: { | |
21 | + ParameterConfigurationForm | |
22 | + }, | |
23 | + data () { | |
24 | + return { | |
25 | + title:'', | |
26 | + width:800, | |
27 | + visible: false, | |
28 | + disableSubmit: false | |
29 | + } | |
30 | + }, | |
31 | + methods: { | |
32 | + add () { | |
33 | + this.visible=true | |
34 | + this.$nextTick(()=>{ | |
35 | + this.$refs.realForm.add(); | |
36 | + }) | |
37 | + }, | |
38 | + edit (record) { | |
39 | + this.visible=true | |
40 | + this.$nextTick(()=>{ | |
41 | + this.$refs.realForm.edit(record); | |
42 | + }) | |
43 | + }, | |
44 | + close () { | |
45 | + this.$emit('close'); | |
46 | + this.visible = false; | |
47 | + }, | |
48 | + handleOk () { | |
49 | + this.$refs.realForm.submitForm(); | |
50 | + }, | |
51 | + submitCallback(){ | |
52 | + this.$emit('ok'); | |
53 | + this.visible = false; | |
54 | + }, | |
55 | + handleCancel () { | |
56 | + this.close() | |
57 | + } | |
58 | + } | |
59 | + } | |
60 | +</script> | |
0 | 61 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ReceiptTypeForm.vue
0 → 100644
1 | +<template> | |
2 | + <a-spin :spinning="confirmLoading"> | |
3 | + <j-form-container :disabled="formDisabled"> | |
4 | + <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail"> | |
5 | + <a-row> | |
6 | + <a-col :span="24"> | |
7 | + <a-form-model-item label="编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="code"> | |
8 | + <a-input v-model="model.code" placeholder="请输入编码" ></a-input> | |
9 | + </a-form-model-item> | |
10 | + </a-col> | |
11 | + <a-col :span="24"> | |
12 | + <a-form-model-item label="名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name"> | |
13 | + <a-input v-model="model.name" placeholder="请输入名称" ></a-input> | |
14 | + </a-form-model-item> | |
15 | + </a-col> | |
16 | + <a-col :span="24"> | |
17 | + <a-form-model-item label="货主" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="companyCode"> | |
18 | + <a-input v-model="model.companyCode" placeholder="请输入货主" ></a-input> | |
19 | + </a-form-model-item> | |
20 | + </a-col> | |
21 | + </a-row> | |
22 | + </a-form-model> | |
23 | + </j-form-container> | |
24 | + </a-spin> | |
25 | +</template> | |
26 | + | |
27 | +<script> | |
28 | + | |
29 | + import { httpAction, getAction } from '@/api/manage' | |
30 | + import { validateDuplicateValue } from '@/utils/util' | |
31 | + | |
32 | + export default { | |
33 | + name: 'ReceiptTypeForm', | |
34 | + components: { | |
35 | + }, | |
36 | + props: { | |
37 | + //表单禁用 | |
38 | + disabled: { | |
39 | + type: Boolean, | |
40 | + default: false, | |
41 | + required: false | |
42 | + } | |
43 | + }, | |
44 | + data () { | |
45 | + return { | |
46 | + model:{ | |
47 | + }, | |
48 | + labelCol: { | |
49 | + xs: { span: 24 }, | |
50 | + sm: { span: 5 }, | |
51 | + }, | |
52 | + wrapperCol: { | |
53 | + xs: { span: 24 }, | |
54 | + sm: { span: 16 }, | |
55 | + }, | |
56 | + confirmLoading: false, | |
57 | + validatorRules: { | |
58 | + code: [ | |
59 | + { required: true, message: '请输入编码!'}, | |
60 | + ], | |
61 | + name: [ | |
62 | + { required: true, message: '请输入名称!'}, | |
63 | + ], | |
64 | + }, | |
65 | + url: { | |
66 | + add: "/config/receiptType/add", | |
67 | + edit: "/config/receiptType/edit", | |
68 | + queryById: "/config/receiptType/queryById" | |
69 | + } | |
70 | + } | |
71 | + }, | |
72 | + computed: { | |
73 | + formDisabled(){ | |
74 | + return this.disabled | |
75 | + }, | |
76 | + }, | |
77 | + created () { | |
78 | + //备份model原始值 | |
79 | + this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |
80 | + }, | |
81 | + methods: { | |
82 | + add () { | |
83 | + this.edit(this.modelDefault); | |
84 | + }, | |
85 | + edit (record) { | |
86 | + this.model = Object.assign({}, record); | |
87 | + this.visible = true; | |
88 | + }, | |
89 | + submitForm () { | |
90 | + const that = this; | |
91 | + // 触发表单验证 | |
92 | + this.$refs.form.validate(valid => { | |
93 | + if (valid) { | |
94 | + that.confirmLoading = true; | |
95 | + let httpurl = ''; | |
96 | + let method = ''; | |
97 | + if(!this.model.id){ | |
98 | + httpurl+=this.url.add; | |
99 | + method = 'post'; | |
100 | + }else{ | |
101 | + httpurl+=this.url.edit; | |
102 | + method = 'put'; | |
103 | + } | |
104 | + httpAction(httpurl,this.model,method).then((res)=>{ | |
105 | + if(res.success){ | |
106 | + that.$message.success(res.message); | |
107 | + that.$emit('ok'); | |
108 | + }else{ | |
109 | + that.$message.warning(res.message); | |
110 | + } | |
111 | + }).finally(() => { | |
112 | + that.confirmLoading = false; | |
113 | + }) | |
114 | + } | |
115 | + | |
116 | + }) | |
117 | + }, | |
118 | + } | |
119 | + } | |
120 | +</script> | |
0 | 121 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ReceiptTypeModal.Style#Drawer.vue
0 → 100644
1 | +<template> | |
2 | + <a-drawer | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + placement="right" | |
6 | + :closable="false" | |
7 | + @close="close" | |
8 | + destroyOnClose | |
9 | + :visible="visible"> | |
10 | + <receipt-type-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></receipt-type-form> | |
11 | + <div class="drawer-footer"> | |
12 | + <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button> | |
13 | + <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button> | |
14 | + </div> | |
15 | + </a-drawer> | |
16 | +</template> | |
17 | + | |
18 | +<script> | |
19 | + | |
20 | + import ReceiptTypeForm from './ReceiptTypeForm' | |
21 | + | |
22 | + export default { | |
23 | + name: 'ReceiptTypeModal', | |
24 | + components: { | |
25 | + ReceiptTypeForm | |
26 | + }, | |
27 | + data () { | |
28 | + return { | |
29 | + title:"操作", | |
30 | + width:800, | |
31 | + visible: false, | |
32 | + disableSubmit: false | |
33 | + } | |
34 | + }, | |
35 | + methods: { | |
36 | + add () { | |
37 | + this.visible=true | |
38 | + this.$nextTick(()=>{ | |
39 | + this.$refs.realForm.add(); | |
40 | + }) | |
41 | + }, | |
42 | + edit (record) { | |
43 | + this.visible=true | |
44 | + this.$nextTick(()=>{ | |
45 | + this.$refs.realForm.edit(record); | |
46 | + }); | |
47 | + }, | |
48 | + close () { | |
49 | + this.$emit('close'); | |
50 | + this.visible = false; | |
51 | + }, | |
52 | + submitCallback(){ | |
53 | + this.$emit('ok'); | |
54 | + this.visible = false; | |
55 | + }, | |
56 | + handleOk () { | |
57 | + this.$refs.realForm.submitForm(); | |
58 | + }, | |
59 | + handleCancel () { | |
60 | + this.close() | |
61 | + } | |
62 | + } | |
63 | + } | |
64 | +</script> | |
65 | + | |
66 | +<style lang="less" scoped> | |
67 | +/** Button按钮间距 */ | |
68 | + .ant-btn { | |
69 | + margin-left: 30px; | |
70 | + margin-bottom: 30px; | |
71 | + float: right; | |
72 | + } | |
73 | + .drawer-footer{ | |
74 | + position: absolute; | |
75 | + bottom: -8px; | |
76 | + width: 100%; | |
77 | + border-top: 1px solid #e8e8e8; | |
78 | + padding: 10px 16px; | |
79 | + text-align: right; | |
80 | + left: 0; | |
81 | + background: #fff; | |
82 | + border-radius: 0 0 2px 2px; | |
83 | + } | |
84 | +</style> | |
0 | 85 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ReceiptTypeModal.vue
0 → 100644
1 | +<template> | |
2 | + <j-modal | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + :visible="visible" | |
6 | + switchFullscreen | |
7 | + @ok="handleOk" | |
8 | + :okButtonProps="{ class:{'jee-hidden': disableSubmit} }" | |
9 | + @cancel="handleCancel" | |
10 | + cancelText="关闭"> | |
11 | + <receipt-type-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></receipt-type-form> | |
12 | + </j-modal> | |
13 | +</template> | |
14 | + | |
15 | +<script> | |
16 | + | |
17 | + import ReceiptTypeForm from './ReceiptTypeForm' | |
18 | + export default { | |
19 | + name: 'ReceiptTypeModal', | |
20 | + components: { | |
21 | + ReceiptTypeForm | |
22 | + }, | |
23 | + data () { | |
24 | + return { | |
25 | + title:'', | |
26 | + width:800, | |
27 | + visible: false, | |
28 | + disableSubmit: false | |
29 | + } | |
30 | + }, | |
31 | + methods: { | |
32 | + add () { | |
33 | + this.visible=true | |
34 | + this.$nextTick(()=>{ | |
35 | + this.$refs.realForm.add(); | |
36 | + }) | |
37 | + }, | |
38 | + edit (record) { | |
39 | + this.visible=true | |
40 | + this.$nextTick(()=>{ | |
41 | + this.$refs.realForm.edit(record); | |
42 | + }) | |
43 | + }, | |
44 | + close () { | |
45 | + this.$emit('close'); | |
46 | + this.visible = false; | |
47 | + }, | |
48 | + handleOk () { | |
49 | + this.$refs.realForm.submitForm(); | |
50 | + }, | |
51 | + submitCallback(){ | |
52 | + this.$emit('ok'); | |
53 | + this.visible = false; | |
54 | + }, | |
55 | + handleCancel () { | |
56 | + this.close() | |
57 | + } | |
58 | + } | |
59 | + } | |
60 | +</script> | |
0 | 61 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ShipmentTypeForm.vue
0 → 100644
1 | +<template> | |
2 | + <a-spin :spinning="confirmLoading"> | |
3 | + <j-form-container :disabled="formDisabled"> | |
4 | + <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail"> | |
5 | + <a-row> | |
6 | + <a-col :span="24"> | |
7 | + <a-form-model-item label="编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="code"> | |
8 | + <a-input v-model="model.code" placeholder="请输入编码" ></a-input> | |
9 | + </a-form-model-item> | |
10 | + </a-col> | |
11 | + <a-col :span="24"> | |
12 | + <a-form-model-item label="名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name"> | |
13 | + <a-input v-model="model.name" placeholder="请输入名称" ></a-input> | |
14 | + </a-form-model-item> | |
15 | + </a-col> | |
16 | + <a-col :span="24"> | |
17 | + <a-form-model-item label="货主" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="companyCode"> | |
18 | + <a-input v-model="model.companyCode" placeholder="请输入货主" ></a-input> | |
19 | + </a-form-model-item> | |
20 | + </a-col> | |
21 | + </a-row> | |
22 | + </a-form-model> | |
23 | + </j-form-container> | |
24 | + </a-spin> | |
25 | +</template> | |
26 | + | |
27 | +<script> | |
28 | + | |
29 | + import { httpAction, getAction } from '@/api/manage' | |
30 | + import { validateDuplicateValue } from '@/utils/util' | |
31 | + | |
32 | + export default { | |
33 | + name: 'ShipmentTypeForm', | |
34 | + components: { | |
35 | + }, | |
36 | + props: { | |
37 | + //表单禁用 | |
38 | + disabled: { | |
39 | + type: Boolean, | |
40 | + default: false, | |
41 | + required: false | |
42 | + } | |
43 | + }, | |
44 | + data () { | |
45 | + return { | |
46 | + model:{ | |
47 | + }, | |
48 | + labelCol: { | |
49 | + xs: { span: 24 }, | |
50 | + sm: { span: 5 }, | |
51 | + }, | |
52 | + wrapperCol: { | |
53 | + xs: { span: 24 }, | |
54 | + sm: { span: 16 }, | |
55 | + }, | |
56 | + confirmLoading: false, | |
57 | + validatorRules: { | |
58 | + code: [ | |
59 | + { required: true, message: '请输入编码!'}, | |
60 | + ], | |
61 | + name: [ | |
62 | + { required: true, message: '请输入名称!'}, | |
63 | + ], | |
64 | + }, | |
65 | + url: { | |
66 | + add: "/config/shipmentType/add", | |
67 | + edit: "/config/shipmentType/edit", | |
68 | + queryById: "/config/shipmentType/queryById" | |
69 | + } | |
70 | + } | |
71 | + }, | |
72 | + computed: { | |
73 | + formDisabled(){ | |
74 | + return this.disabled | |
75 | + }, | |
76 | + }, | |
77 | + created () { | |
78 | + //备份model原始值 | |
79 | + this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |
80 | + }, | |
81 | + methods: { | |
82 | + add () { | |
83 | + this.edit(this.modelDefault); | |
84 | + }, | |
85 | + edit (record) { | |
86 | + this.model = Object.assign({}, record); | |
87 | + this.visible = true; | |
88 | + }, | |
89 | + submitForm () { | |
90 | + const that = this; | |
91 | + // 触发表单验证 | |
92 | + this.$refs.form.validate(valid => { | |
93 | + if (valid) { | |
94 | + that.confirmLoading = true; | |
95 | + let httpurl = ''; | |
96 | + let method = ''; | |
97 | + if(!this.model.id){ | |
98 | + httpurl+=this.url.add; | |
99 | + method = 'post'; | |
100 | + }else{ | |
101 | + httpurl+=this.url.edit; | |
102 | + method = 'put'; | |
103 | + } | |
104 | + httpAction(httpurl,this.model,method).then((res)=>{ | |
105 | + if(res.success){ | |
106 | + that.$message.success(res.message); | |
107 | + that.$emit('ok'); | |
108 | + }else{ | |
109 | + that.$message.warning(res.message); | |
110 | + } | |
111 | + }).finally(() => { | |
112 | + that.confirmLoading = false; | |
113 | + }) | |
114 | + } | |
115 | + | |
116 | + }) | |
117 | + }, | |
118 | + } | |
119 | + } | |
120 | +</script> | |
0 | 121 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ShipmentTypeModal.Style#Drawer.vue
0 → 100644
1 | +<template> | |
2 | + <a-drawer | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + placement="right" | |
6 | + :closable="false" | |
7 | + @close="close" | |
8 | + destroyOnClose | |
9 | + :visible="visible"> | |
10 | + <shipment-type-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></shipment-type-form> | |
11 | + <div class="drawer-footer"> | |
12 | + <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button> | |
13 | + <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button> | |
14 | + </div> | |
15 | + </a-drawer> | |
16 | +</template> | |
17 | + | |
18 | +<script> | |
19 | + | |
20 | + import ShipmentTypeForm from './ShipmentTypeForm' | |
21 | + | |
22 | + export default { | |
23 | + name: 'ShipmentTypeModal', | |
24 | + components: { | |
25 | + ShipmentTypeForm | |
26 | + }, | |
27 | + data () { | |
28 | + return { | |
29 | + title:"操作", | |
30 | + width:800, | |
31 | + visible: false, | |
32 | + disableSubmit: false | |
33 | + } | |
34 | + }, | |
35 | + methods: { | |
36 | + add () { | |
37 | + this.visible=true | |
38 | + this.$nextTick(()=>{ | |
39 | + this.$refs.realForm.add(); | |
40 | + }) | |
41 | + }, | |
42 | + edit (record) { | |
43 | + this.visible=true | |
44 | + this.$nextTick(()=>{ | |
45 | + this.$refs.realForm.edit(record); | |
46 | + }); | |
47 | + }, | |
48 | + close () { | |
49 | + this.$emit('close'); | |
50 | + this.visible = false; | |
51 | + }, | |
52 | + submitCallback(){ | |
53 | + this.$emit('ok'); | |
54 | + this.visible = false; | |
55 | + }, | |
56 | + handleOk () { | |
57 | + this.$refs.realForm.submitForm(); | |
58 | + }, | |
59 | + handleCancel () { | |
60 | + this.close() | |
61 | + } | |
62 | + } | |
63 | + } | |
64 | +</script> | |
65 | + | |
66 | +<style lang="less" scoped> | |
67 | +/** Button按钮间距 */ | |
68 | + .ant-btn { | |
69 | + margin-left: 30px; | |
70 | + margin-bottom: 30px; | |
71 | + float: right; | |
72 | + } | |
73 | + .drawer-footer{ | |
74 | + position: absolute; | |
75 | + bottom: -8px; | |
76 | + width: 100%; | |
77 | + border-top: 1px solid #e8e8e8; | |
78 | + padding: 10px 16px; | |
79 | + text-align: right; | |
80 | + left: 0; | |
81 | + background: #fff; | |
82 | + border-radius: 0 0 2px 2px; | |
83 | + } | |
84 | +</style> | |
0 | 85 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/config/modules/ShipmentTypeModal.vue
0 → 100644
1 | +<template> | |
2 | + <j-modal | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + :visible="visible" | |
6 | + switchFullscreen | |
7 | + @ok="handleOk" | |
8 | + :okButtonProps="{ class:{'jee-hidden': disableSubmit} }" | |
9 | + @cancel="handleCancel" | |
10 | + cancelText="关闭"> | |
11 | + <shipment-type-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></shipment-type-form> | |
12 | + </j-modal> | |
13 | +</template> | |
14 | + | |
15 | +<script> | |
16 | + | |
17 | + import ShipmentTypeForm from './ShipmentTypeForm' | |
18 | + export default { | |
19 | + name: 'ShipmentTypeModal', | |
20 | + components: { | |
21 | + ShipmentTypeForm | |
22 | + }, | |
23 | + data () { | |
24 | + return { | |
25 | + title:'', | |
26 | + width:800, | |
27 | + visible: false, | |
28 | + disableSubmit: false | |
29 | + } | |
30 | + }, | |
31 | + methods: { | |
32 | + add () { | |
33 | + this.visible=true | |
34 | + this.$nextTick(()=>{ | |
35 | + this.$refs.realForm.add(); | |
36 | + }) | |
37 | + }, | |
38 | + edit (record) { | |
39 | + this.visible=true | |
40 | + this.$nextTick(()=>{ | |
41 | + this.$refs.realForm.edit(record); | |
42 | + }) | |
43 | + }, | |
44 | + close () { | |
45 | + this.$emit('close'); | |
46 | + this.visible = false; | |
47 | + }, | |
48 | + handleOk () { | |
49 | + this.$refs.realForm.submitForm(); | |
50 | + }, | |
51 | + submitCallback(){ | |
52 | + this.$emit('ok'); | |
53 | + this.visible = false; | |
54 | + }, | |
55 | + handleCancel () { | |
56 | + this.close() | |
57 | + } | |
58 | + } | |
59 | + } | |
60 | +</script> | |
0 | 61 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/receipt/ReceiptDetailList.vue
0 → 100644
1 | +<template> | |
2 | + <a-card :bordered="false" :class="'cust-erp-sub-tab'"> | |
3 | + <!-- 操作按钮区域 --> | |
4 | + <div class="table-operator" v-if="mainId"> | |
5 | + <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |
6 | + <a-button type="primary" icon="download" @click="handleExportXls('入库单详情')">导出</a-button> | |
7 | + <a-upload | |
8 | + name="file" | |
9 | + :showUploadList="false" | |
10 | + :multiple="false" | |
11 | + :headers="tokenHeader" | |
12 | + :action="importExcelUrl" | |
13 | + @change="handleImportExcel"> | |
14 | + <a-button type="primary" icon="import">导入</a-button> | |
15 | + </a-upload> | |
16 | + <a-dropdown v-if="selectedRowKeys.length > 0"> | |
17 | + <a-menu slot="overlay"> | |
18 | + <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> | |
19 | + </a-menu> | |
20 | + <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> | |
21 | + </a-dropdown> | |
22 | + </div> | |
23 | + | |
24 | + <!-- table区域-begin --> | |
25 | + <div> | |
26 | + <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |
27 | + <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |
28 | + <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |
29 | + </div> | |
30 | + | |
31 | + <a-table | |
32 | + ref="table" | |
33 | + size="middle" | |
34 | + bordered | |
35 | + rowKey="id" | |
36 | + :scroll="{x:true}" | |
37 | + :columns="columns" | |
38 | + :dataSource="dataSource" | |
39 | + :pagination="ipagination" | |
40 | + :loading="loading" | |
41 | + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" | |
42 | + @change="handleTableChange"> | |
43 | + | |
44 | + <template slot="htmlSlot" slot-scope="text"> | |
45 | + <div v-html="text"></div> | |
46 | + </template> | |
47 | + <template slot="imgSlot" slot-scope="text"> | |
48 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |
49 | + <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |
50 | + </template> | |
51 | + <template slot="fileSlot" slot-scope="text"> | |
52 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |
53 | + <a-button | |
54 | + v-else | |
55 | + :ghost="true" | |
56 | + type="primary" | |
57 | + icon="download" | |
58 | + size="small" | |
59 | + @click="downloadFile(text)"> | |
60 | + 下载 | |
61 | + </a-button> | |
62 | + </template> | |
63 | + | |
64 | + <span slot="action" slot-scope="text, record"> | |
65 | + <a @click="handleEdit(record)">编辑</a> | |
66 | + <a-divider type="vertical" /> | |
67 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
68 | + <a>删除</a> | |
69 | + </a-popconfirm> | |
70 | + </span> | |
71 | + | |
72 | + </a-table> | |
73 | + </div> | |
74 | + | |
75 | + <receiptDetail-modal ref="modalForm" @ok="modalFormOk" :mainId="mainId"></receiptDetail-modal> | |
76 | + </a-card> | |
77 | +</template> | |
78 | + | |
79 | +<script> | |
80 | + | |
81 | + import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |
82 | + import ReceiptDetailModal from './modules/ReceiptDetailModal' | |
83 | + | |
84 | + export default { | |
85 | + name: "ReceiptDetailList", | |
86 | + mixins:[JeecgListMixin], | |
87 | + components: { ReceiptDetailModal }, | |
88 | + props:{ | |
89 | + mainId:{ | |
90 | + type:String, | |
91 | + default:'', | |
92 | + required:false | |
93 | + } | |
94 | + }, | |
95 | + watch:{ | |
96 | + mainId:{ | |
97 | + immediate: true, | |
98 | + handler(val) { | |
99 | + if(!this.mainId){ | |
100 | + this.clearList() | |
101 | + }else{ | |
102 | + this.queryParam['receiptId'] = val | |
103 | + this.loadData(1); | |
104 | + } | |
105 | + } | |
106 | + } | |
107 | + }, | |
108 | + data () { | |
109 | + return { | |
110 | + description: '入库表主表管理页面', | |
111 | + disableMixinCreated:true, | |
112 | + // 表头 | |
113 | + columns: [ | |
114 | + { | |
115 | + title: '#', | |
116 | + dataIndex: '', | |
117 | + key:'rowIndex', | |
118 | + width:60, | |
119 | + align:"center", | |
120 | + customRender:function (t,r,index) { | |
121 | + return parseInt(index)+1; | |
122 | + } | |
123 | + }, | |
124 | + { | |
125 | + title:'入库单ID', | |
126 | + align:"center", | |
127 | + dataIndex: 'receiptId' | |
128 | + }, | |
129 | + { | |
130 | + title:'入库单编码', | |
131 | + align:"center", | |
132 | + dataIndex: 'receiptCode' | |
133 | + }, | |
134 | + { | |
135 | + title:'货主编码', | |
136 | + align:"center", | |
137 | + dataIndex: 'companyCode' | |
138 | + }, | |
139 | + { | |
140 | + title:'物料编码', | |
141 | + align:"center", | |
142 | + dataIndex: 'materialCode' | |
143 | + }, | |
144 | + { | |
145 | + title:'物料名称', | |
146 | + align:"center", | |
147 | + dataIndex: 'materialName' | |
148 | + }, | |
149 | + { | |
150 | + title:'物料规格', | |
151 | + align:"center", | |
152 | + dataIndex: 'materialSpec' | |
153 | + }, | |
154 | + { | |
155 | + title:'物料单位', | |
156 | + align:"center", | |
157 | + dataIndex: 'materialUnit' | |
158 | + }, | |
159 | + { | |
160 | + title:'单据数量', | |
161 | + align:"center", | |
162 | + dataIndex: 'qty' | |
163 | + }, | |
164 | + { | |
165 | + title:'已收数量', | |
166 | + align:"center", | |
167 | + dataIndex: 'taskQty' | |
168 | + }, | |
169 | + { | |
170 | + title:'库存状态', | |
171 | + align:"center", | |
172 | + dataIndex: 'inventoryStatus_dictText', | |
173 | + }, | |
174 | + { | |
175 | + title:'批次', | |
176 | + align:"center", | |
177 | + dataIndex: 'batch' | |
178 | + }, | |
179 | + { | |
180 | + title:'单据状态', | |
181 | + align:"center", | |
182 | + dataIndex: 'status_dictText', | |
183 | + }, | |
184 | + { | |
185 | + title:'上游单号', | |
186 | + align:"center", | |
187 | + dataIndex: 'referCode' | |
188 | + }, | |
189 | + { | |
190 | + title:'上游行号', | |
191 | + align:"center", | |
192 | + dataIndex: 'referLineNum' | |
193 | + }, | |
194 | + { | |
195 | + title:'创建人', | |
196 | + align:"center", | |
197 | + dataIndex: 'createBy' | |
198 | + }, | |
199 | + { | |
200 | + title:'创建日期', | |
201 | + align:"center", | |
202 | + dataIndex: 'createTime' | |
203 | + }, | |
204 | + { | |
205 | + title:'更新人', | |
206 | + align:"center", | |
207 | + dataIndex: 'updateBy' | |
208 | + }, | |
209 | + { | |
210 | + title:'更新日期', | |
211 | + align:"center", | |
212 | + dataIndex: 'updateTime' | |
213 | + }, | |
214 | + { | |
215 | + title: '操作', | |
216 | + dataIndex: 'action', | |
217 | + align:"center", | |
218 | + fixed:"right", | |
219 | + width:147, | |
220 | + scopedSlots: { customRender: 'action' }, | |
221 | + } | |
222 | + ], | |
223 | + url: { | |
224 | + list: "/config/receiptHeader/listReceiptDetailByMainId", | |
225 | + delete: "/config/receiptHeader/deleteReceiptDetail", | |
226 | + deleteBatch: "/config/receiptHeader/deleteBatchReceiptDetail", | |
227 | + exportXlsUrl: "/config/receiptHeader/exportReceiptDetail", | |
228 | + importUrl: "/config/receiptHeader/importReceiptDetail", | |
229 | + }, | |
230 | + dictOptions:{ | |
231 | + firstStatus:[], | |
232 | + lastStatus:[], | |
233 | + } | |
234 | + } | |
235 | + }, | |
236 | + created() { | |
237 | + }, | |
238 | + computed: { | |
239 | + importExcelUrl(){ | |
240 | + return `${window._CONFIG['domianURL']}/${this.url.importUrl}/${this.mainId}`; | |
241 | + } | |
242 | + }, | |
243 | + methods: { | |
244 | + clearList(){ | |
245 | + this.dataSource=[] | |
246 | + this.selectedRowKeys=[] | |
247 | + this.ipagination.current = 1 | |
248 | + } | |
249 | + | |
250 | + } | |
251 | + } | |
252 | +</script> | |
253 | +<style scoped> | |
254 | + @import '~@assets/less/common.less' | |
255 | +</style> | |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/receipt/ReceiptHeaderList.vue
0 → 100644
1 | +<template> | |
2 | + <a-card :bordered="false"> | |
3 | + <!-- 查询区域 --> | |
4 | + <div class="table-page-search-wrapper"> | |
5 | + <a-form layout="inline" @keyup.enter.native="searchQuery"> | |
6 | + <a-row :gutter="24"> | |
7 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
8 | + <a-form-item label="编码"> | |
9 | + <a-input placeholder="请输入编码" v-model="queryParam.code"></a-input> | |
10 | + </a-form-item> | |
11 | + </a-col> | |
12 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
13 | + <a-form-item label="货主"> | |
14 | + <a-input placeholder="请输入货主" v-model="queryParam.companyCode"></a-input> | |
15 | + </a-form-item> | |
16 | + </a-col> | |
17 | + <template v-if="toggleSearchStatus"> | |
18 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
19 | + <a-form-item label="入库单类型"> | |
20 | + <a-input placeholder="请输入入库单类型" v-model="queryParam.type"></a-input> | |
21 | + </a-form-item> | |
22 | + </a-col> | |
23 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
24 | + <a-form-item label="头状态"> | |
25 | + <j-dict-select-tag placeholder="请选择头状态" v-model="queryParam.firstStatus" dictCode="receipt_status"/> | |
26 | + </a-form-item> | |
27 | + </a-col> | |
28 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
29 | + <a-form-item label="尾状态"> | |
30 | + <j-dict-select-tag placeholder="请选择尾状态" v-model="queryParam.lastStatus" dictCode="receipt_status"/> | |
31 | + </a-form-item> | |
32 | + </a-col> | |
33 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
34 | + <a-form-item label="上游单号"> | |
35 | + <a-input placeholder="请输入上游单号" v-model="queryParam.referCode"></a-input> | |
36 | + </a-form-item> | |
37 | + </a-col> | |
38 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
39 | + <a-form-item label="供应商编码"> | |
40 | + <a-input placeholder="请输入供应商编码" v-model="queryParam.supplierCode"></a-input> | |
41 | + </a-form-item> | |
42 | + </a-col> | |
43 | + <a-col :xl="10" :lg="11" :md="12" :sm="24"> | |
44 | + <a-form-item label="创建日期"> | |
45 | + <j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择开始时间" class="query-group-cust" v-model="queryParam.createTime_begin"></j-date> | |
46 | + <span class="query-group-split-cust"></span> | |
47 | + <j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择结束时间" class="query-group-cust" v-model="queryParam.createTime_end"></j-date> | |
48 | + </a-form-item> | |
49 | + </a-col> | |
50 | + </template> | |
51 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
52 | + <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> | |
53 | + <a-button type="primary" @click="searchQuery" icon="search">查询</a-button> | |
54 | + <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> | |
55 | + <a @click="handleToggleSearch" style="margin-left: 8px"> | |
56 | + {{ toggleSearchStatus ? '收起' : '展开' }} | |
57 | + <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> | |
58 | + </a> | |
59 | + </span> | |
60 | + </a-col> | |
61 | + </a-row> | |
62 | + </a-form> | |
63 | + </div> | |
64 | + <!-- 查询区域-END --> | |
65 | + | |
66 | + <!-- 操作按钮区域 --> | |
67 | + <div class="table-operator"> | |
68 | + <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> | |
69 | + <a-button type="primary" icon="download" @click="handleExportXls('入库表主表')">导出</a-button> | |
70 | + <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |
71 | + <a-button type="primary" icon="import">导入</a-button> | |
72 | + </a-upload> | |
73 | + <!-- 高级查询区域 --> | |
74 | + <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> | |
75 | + </div> | |
76 | + | |
77 | + <!-- table区域-begin --> | |
78 | + <div> | |
79 | + <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> | |
80 | + <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 | |
81 | + <a style="margin-left: 24px" @click="onClearSelected">清空</a> | |
82 | + </div> | |
83 | + | |
84 | + <a-table | |
85 | + ref="table" | |
86 | + size="middle" | |
87 | + bordered | |
88 | + rowKey="id" | |
89 | + class="j-table-force-nowrap" | |
90 | + :scroll="{x:true}" | |
91 | + :columns="columns" | |
92 | + :dataSource="dataSource" | |
93 | + :pagination="ipagination" | |
94 | + :loading="loading" | |
95 | + :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, type:'radio'}" | |
96 | + :customRow="clickThenSelect" | |
97 | + @change="handleTableChange"> | |
98 | + | |
99 | + <template slot="htmlSlot" slot-scope="text"> | |
100 | + <div v-html="text"></div> | |
101 | + </template> | |
102 | + <template slot="imgSlot" slot-scope="text"> | |
103 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> | |
104 | + <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> | |
105 | + </template> | |
106 | + <template slot="fileSlot" slot-scope="text"> | |
107 | + <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> | |
108 | + <a-button | |
109 | + v-else | |
110 | + :ghost="true" | |
111 | + type="primary" | |
112 | + icon="download" | |
113 | + size="small" | |
114 | + @click="downloadFile(text)"> | |
115 | + 下载 | |
116 | + </a-button> | |
117 | + </template> | |
118 | + | |
119 | + <span slot="action" slot-scope="text, record"> | |
120 | + <a @click="handleEdit(record)">编辑</a> | |
121 | + | |
122 | + <a-divider type="vertical" /> | |
123 | + <a-dropdown> | |
124 | + <a class="ant-dropdown-link">更多 <a-icon type="down" /></a> | |
125 | + <a-menu slot="overlay"> | |
126 | + <a-menu-item> | |
127 | + <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> | |
128 | + <a>删除</a> | |
129 | + </a-popconfirm> | |
130 | + </a-menu-item> | |
131 | + </a-menu> | |
132 | + </a-dropdown> | |
133 | + </span> | |
134 | + | |
135 | + </a-table> | |
136 | + </div> | |
137 | + | |
138 | + <a-tabs defaultActiveKey="1"> | |
139 | + <a-tab-pane tab="入库单详情" key="1" > | |
140 | + <ReceiptDetailList :mainId="selectedMainId" /> | |
141 | + </a-tab-pane> | |
142 | + </a-tabs> | |
143 | + | |
144 | + <receiptHeader-modal ref="modalForm" @ok="modalFormOk"></receiptHeader-modal> | |
145 | + </a-card> | |
146 | +</template> | |
147 | + | |
148 | +<script> | |
149 | + | |
150 | + import { JeecgListMixin } from '@/mixins/JeecgListMixin' | |
151 | + import ReceiptHeaderModal from './modules/ReceiptHeaderModal' | |
152 | + import { getAction } from '@/api/manage' | |
153 | + import ReceiptDetailList from './ReceiptDetailList' | |
154 | + import {initDictOptions,filterMultiDictText} from '@/components/dict/JDictSelectUtil' | |
155 | + import '@/assets/less/TableExpand.less' | |
156 | + | |
157 | + export default { | |
158 | + name: "ReceiptHeaderList", | |
159 | + mixins:[JeecgListMixin], | |
160 | + components: { | |
161 | + ReceiptDetailList, | |
162 | + ReceiptHeaderModal | |
163 | + }, | |
164 | + data () { | |
165 | + return { | |
166 | + description: '入库表主表管理页面', | |
167 | + // 表头 | |
168 | + columns: [ | |
169 | + { | |
170 | + title:'编码', | |
171 | + align:"center", | |
172 | + dataIndex: 'code' | |
173 | + }, | |
174 | + { | |
175 | + title:'货主', | |
176 | + align:"center", | |
177 | + dataIndex: 'companyCode' | |
178 | + }, | |
179 | + { | |
180 | + title:'入库单类型', | |
181 | + align:"center", | |
182 | + dataIndex: 'type' | |
183 | + }, | |
184 | + { | |
185 | + title:'头状态', | |
186 | + align:"center", | |
187 | + dataIndex: 'firstStatus_dictText', | |
188 | + }, | |
189 | + { | |
190 | + title:'尾状态', | |
191 | + align:"center", | |
192 | + dataIndex: 'lastStatus_dictText', | |
193 | + }, | |
194 | + { | |
195 | + title:'上游单号', | |
196 | + align:"center", | |
197 | + dataIndex: 'referCode' | |
198 | + }, | |
199 | + { | |
200 | + title:'供应商编码', | |
201 | + align:"center", | |
202 | + dataIndex: 'supplierCode' | |
203 | + }, | |
204 | + { | |
205 | + title:'总数量', | |
206 | + align:"center", | |
207 | + dataIndex: 'totalqty' | |
208 | + }, | |
209 | + { | |
210 | + title:'总行数', | |
211 | + align:"center", | |
212 | + dataIndex: 'totallines' | |
213 | + }, | |
214 | + { | |
215 | + title:'入库单备注', | |
216 | + align:"center", | |
217 | + dataIndex: 'remark' | |
218 | + }, | |
219 | + { | |
220 | + title:'创建人', | |
221 | + align:"center", | |
222 | + dataIndex: 'createBy' | |
223 | + }, | |
224 | + { | |
225 | + title:'创建日期', | |
226 | + align:"center", | |
227 | + dataIndex: 'createTime' | |
228 | + }, | |
229 | + { | |
230 | + title:'更新人', | |
231 | + align:"center", | |
232 | + dataIndex: 'updateBy' | |
233 | + }, | |
234 | + { | |
235 | + title:'更新日期', | |
236 | + align:"center", | |
237 | + dataIndex: 'updateTime' | |
238 | + }, | |
239 | + { | |
240 | + title: '操作', | |
241 | + dataIndex: 'action', | |
242 | + align:"center", | |
243 | + fixed:"right", | |
244 | + width:147, | |
245 | + scopedSlots: { customRender: 'action' }, | |
246 | + } | |
247 | + ], | |
248 | + url: { | |
249 | + list: "/config/receiptHeader/list", | |
250 | + delete: "/config/receiptHeader/delete", | |
251 | + deleteBatch: "/config/receiptHeader/deleteBatch", | |
252 | + exportXlsUrl: "/config/receiptHeader/exportXls", | |
253 | + importExcelUrl: "config/receiptHeader/importExcel", | |
254 | + }, | |
255 | + dictOptions:{ | |
256 | + firstStatus:[], | |
257 | + lastStatus:[], | |
258 | + }, | |
259 | + /* 分页参数 */ | |
260 | + ipagination:{ | |
261 | + current: 1, | |
262 | + pageSize: 5, | |
263 | + pageSizeOptions: ['5', '10', '50'], | |
264 | + showTotal: (total, range) => { | |
265 | + return range[0] + "-" + range[1] + " 共" + total + "条" | |
266 | + }, | |
267 | + showQuickJumper: true, | |
268 | + showSizeChanger: true, | |
269 | + total: 0 | |
270 | + }, | |
271 | + selectedMainId:'', | |
272 | + superFieldList:[], | |
273 | + } | |
274 | + }, | |
275 | + created() { | |
276 | + this.getSuperFieldList(); | |
277 | + }, | |
278 | + computed: { | |
279 | + importExcelUrl: function(){ | |
280 | + return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; | |
281 | + } | |
282 | + }, | |
283 | + methods: { | |
284 | + initDictConfig(){ | |
285 | + }, | |
286 | + clickThenSelect(record) { | |
287 | + return { | |
288 | + on: { | |
289 | + click: () => { | |
290 | + this.onSelectChange(record.id.split(","), [record]); | |
291 | + } | |
292 | + } | |
293 | + } | |
294 | + }, | |
295 | + onClearSelected() { | |
296 | + this.selectedRowKeys = []; | |
297 | + this.selectionRows = []; | |
298 | + this.selectedMainId='' | |
299 | + }, | |
300 | + onSelectChange(selectedRowKeys, selectionRows) { | |
301 | + this.selectedMainId=selectedRowKeys[0] | |
302 | + this.selectedRowKeys = selectedRowKeys; | |
303 | + this.selectionRows = selectionRows; | |
304 | + }, | |
305 | + loadData(arg) { | |
306 | + if(!this.url.list){ | |
307 | + this.$message.error("请设置url.list属性!") | |
308 | + return | |
309 | + } | |
310 | + //加载数据 若传入参数1则加载第一页的内容 | |
311 | + if (arg === 1) { | |
312 | + this.ipagination.current = 1; | |
313 | + } | |
314 | + this.onClearSelected() | |
315 | + var params = this.getQueryParams();//查询条件 | |
316 | + this.loading = true; | |
317 | + getAction(this.url.list, params).then((res) => { | |
318 | + if (res.success) { | |
319 | + this.dataSource = res.result.records; | |
320 | + this.ipagination.total = res.result.total; | |
321 | + } | |
322 | + if(res.code===510){ | |
323 | + this.$message.warning(res.message) | |
324 | + } | |
325 | + this.loading = false; | |
326 | + }) | |
327 | + }, | |
328 | + getSuperFieldList(){ | |
329 | + let fieldList=[]; | |
330 | + fieldList.push({type:'string',value:'code',text:'编码',dictCode:''}) | |
331 | + fieldList.push({type:'string',value:'companyCode',text:'货主',dictCode:''}) | |
332 | + fieldList.push({type:'string',value:'type',text:'入库单类型',dictCode:''}) | |
333 | + fieldList.push({type:'int',value:'firstStatus',text:'头状态',dictCode:'receipt_status'}) | |
334 | + fieldList.push({type:'int',value:'lastStatus',text:'尾状态',dictCode:'receipt_status'}) | |
335 | + fieldList.push({type:'string',value:'referCode',text:'上游单号',dictCode:''}) | |
336 | + fieldList.push({type:'string',value:'supplierCode',text:'供应商编码',dictCode:''}) | |
337 | + fieldList.push({type:'BigDecimal',value:'totalqty',text:'总数量',dictCode:''}) | |
338 | + fieldList.push({type:'int',value:'totallines',text:'总行数',dictCode:''}) | |
339 | + fieldList.push({type:'string',value:'remark',text:'入库单备注',dictCode:''}) | |
340 | + fieldList.push({type:'string',value:'createBy',text:'创建人',dictCode:''}) | |
341 | + fieldList.push({type:'datetime',value:'createTime',text:'创建日期'}) | |
342 | + fieldList.push({type:'string',value:'updateBy',text:'更新人',dictCode:''}) | |
343 | + fieldList.push({type:'datetime',value:'updateTime',text:'更新日期'}) | |
344 | + this.superFieldList = fieldList | |
345 | + } | |
346 | + } | |
347 | + } | |
348 | +</script> | |
349 | +<style scoped> | |
350 | + @import '~@assets/less/common.less' | |
351 | +</style> | |
0 | 352 | \ No newline at end of file |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/receipt/modules/ReceiptDetailModal.vue
0 → 100644
1 | +<template> | |
2 | + <j-modal | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + :visible="visible" | |
6 | + :confirmLoading="confirmLoading" | |
7 | + switchFullscreen | |
8 | + @ok="handleOk" | |
9 | + @cancel="handleCancel" | |
10 | + cancelText="关闭"> | |
11 | + <a-spin :spinning="confirmLoading"> | |
12 | + <a-form-model ref="form" :model="model" :rules="validatorRules"> | |
13 | + <a-row> | |
14 | + <a-col :span="24"> | |
15 | + <a-form-model-item label="入库单ID" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="receiptId"> | |
16 | + <a-input v-model="model.receiptId"placeholder="请输入入库单ID" ></a-input> | |
17 | + </a-form-model-item> | |
18 | + </a-col> | |
19 | + <a-col :span="24"> | |
20 | + <a-form-model-item label="物料编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="materialCode"> | |
21 | + <a-input v-model="model.materialCode"placeholder="请输入物料编码" ></a-input> | |
22 | + </a-form-model-item> | |
23 | + </a-col> | |
24 | + <a-col :span="24"> | |
25 | + <a-form-model-item label="物料名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="materialName"> | |
26 | + <a-input v-model="model.materialName"placeholder="请输入物料名称" ></a-input> | |
27 | + </a-form-model-item> | |
28 | + </a-col> | |
29 | + <a-col :span="24"> | |
30 | + <a-form-model-item label="单据数量" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="qty"> | |
31 | + <a-input-number v-model="model.qty"placeholder="请输入单据数量" style="width: 100%" /> | |
32 | + </a-form-model-item> | |
33 | + </a-col> | |
34 | + <a-col :span="24"> | |
35 | + <a-form-model-item label="库存状态" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="inventoryStatus"> | |
36 | + <j-dict-select-tag type="list" v-model="model.inventoryStatus" dictCode="inventory_status" placeholder="请选择库存状态" /> | |
37 | + </a-form-model-item> | |
38 | + </a-col> | |
39 | + <a-col :span="24"> | |
40 | + <a-form-model-item label="批次" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="batch"> | |
41 | + <a-input v-model="model.batch"placeholder="请输入批次" ></a-input> | |
42 | + </a-form-model-item> | |
43 | + </a-col> | |
44 | + </a-row> | |
45 | + </a-form-model> | |
46 | + </a-spin> | |
47 | + </j-modal> | |
48 | +</template> | |
49 | + | |
50 | +<script> | |
51 | + | |
52 | + import { httpAction } from '@/api/manage' | |
53 | + import { validateDuplicateValue } from '@/utils/util' | |
54 | + | |
55 | + export default { | |
56 | + name: "ReceiptDetailModal", | |
57 | + components: { | |
58 | + }, | |
59 | + props:{ | |
60 | + mainId:{ | |
61 | + type:String, | |
62 | + required:false, | |
63 | + default:'' | |
64 | + } | |
65 | + }, | |
66 | + data () { | |
67 | + return { | |
68 | + title:"操作", | |
69 | + width:800, | |
70 | + visible: false, | |
71 | + model:{ | |
72 | + }, | |
73 | + labelCol: { | |
74 | + xs: { span: 24 }, | |
75 | + sm: { span: 5 }, | |
76 | + }, | |
77 | + wrapperCol: { | |
78 | + xs: { span: 24 }, | |
79 | + sm: { span: 16 }, | |
80 | + }, | |
81 | + | |
82 | + confirmLoading: false, | |
83 | + validatorRules: { | |
84 | + materialCode: [ | |
85 | + { required: true, message: '请输入物料编码!'}, | |
86 | + ], | |
87 | + materialName: [ | |
88 | + { required: true, message: '请输入物料名称!'}, | |
89 | + ], | |
90 | + qty: [ | |
91 | + { required: true, message: '请输入单据数量!'}, | |
92 | + ], | |
93 | + inventoryStatus: [ | |
94 | + { required: true, message: '请输入库存状态!'}, | |
95 | + ], | |
96 | + }, | |
97 | + url: { | |
98 | + add: "/config/receiptHeader/addReceiptDetail", | |
99 | + edit: "/config/receiptHeader/editReceiptDetail", | |
100 | + } | |
101 | + | |
102 | + } | |
103 | + }, | |
104 | + created () { | |
105 | + //备份model原始值 | |
106 | + this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |
107 | + }, | |
108 | + methods: { | |
109 | + add () { | |
110 | + this.edit(this.modelDefault); | |
111 | + }, | |
112 | + edit (record) { | |
113 | + this.model = Object.assign({}, record); | |
114 | + this.visible = true; | |
115 | + }, | |
116 | + close () { | |
117 | + this.$emit('close'); | |
118 | + this.visible = false; | |
119 | + this.$refs.form.clearValidate(); | |
120 | + }, | |
121 | + handleOk () { | |
122 | + const that = this; | |
123 | + // 触发表单验证 | |
124 | + this.$refs.form.validate(valid => { | |
125 | + if (valid) { | |
126 | + that.confirmLoading = true; | |
127 | + let httpurl = ''; | |
128 | + let method = ''; | |
129 | + if(!this.model.id){ | |
130 | + httpurl+=this.url.add; | |
131 | + method = 'post'; | |
132 | + }else{ | |
133 | + httpurl+=this.url.edit; | |
134 | + method = 'put'; | |
135 | + } | |
136 | + this.model['receiptId'] = this.mainId | |
137 | + httpAction(httpurl,this.model,method).then((res)=>{ | |
138 | + if(res.success){ | |
139 | + that.$message.success(res.message); | |
140 | + that.$emit('ok'); | |
141 | + }else{ | |
142 | + that.$message.warning(res.message); | |
143 | + } | |
144 | + }).finally(() => { | |
145 | + that.confirmLoading = false; | |
146 | + that.close(); | |
147 | + }) | |
148 | + }else{ | |
149 | + return false | |
150 | + } | |
151 | + }) | |
152 | + }, | |
153 | + handleCancel () { | |
154 | + this.close() | |
155 | + }, | |
156 | + | |
157 | + | |
158 | + } | |
159 | + } | |
160 | +</script> | |
... | ... |
jeecg-boot-master/ant-design-vue-jeecg/src/views/system/receipt/modules/ReceiptHeaderModal.vue
0 → 100644
1 | +<template> | |
2 | + <j-modal | |
3 | + :title="title" | |
4 | + :width="width" | |
5 | + :visible="visible" | |
6 | + :confirmLoading="confirmLoading" | |
7 | + switchFullscreen | |
8 | + @ok="handleOk" | |
9 | + @cancel="handleCancel" | |
10 | + cancelText="关闭"> | |
11 | + <a-spin :spinning="confirmLoading"> | |
12 | + <a-form-model ref="form" :model="model" :rules="validatorRules"> | |
13 | + <a-row> | |
14 | + <a-col :span="24"> | |
15 | + <a-form-model-item label="货主" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="companyCode"> | |
16 | + <a-input v-model="model.companyCode" placeholder="请输入货主" ></a-input> | |
17 | + </a-form-model-item> | |
18 | + </a-col> | |
19 | + <a-col :span="24"> | |
20 | + <a-form-model-item label="入库单类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="type"> | |
21 | + <a-input v-model="model.type" placeholder="请输入入库单类型" ></a-input> | |
22 | + </a-form-model-item> | |
23 | + </a-col> | |
24 | + <a-col :span="24"> | |
25 | + <a-form-model-item label="供应商编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="supplierCode"> | |
26 | + <a-input v-model="model.supplierCode" placeholder="请输入供应商编码" ></a-input> | |
27 | + </a-form-model-item> | |
28 | + </a-col> | |
29 | + <a-col :span="24"> | |
30 | + <a-form-model-item label="入库单备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="remark"> | |
31 | + <a-input v-model="model.remark" placeholder="请输入入库单备注" ></a-input> | |
32 | + </a-form-model-item> | |
33 | + </a-col> | |
34 | + </a-row> | |
35 | + </a-form-model> | |
36 | + </a-spin> | |
37 | + </j-modal> | |
38 | +</template> | |
39 | + | |
40 | +<script> | |
41 | + | |
42 | + import { httpAction } from '@/api/manage' | |
43 | + import { validateDuplicateValue } from '@/utils/util' | |
44 | + | |
45 | + export default { | |
46 | + name: "ReceiptHeaderModal", | |
47 | + components: { | |
48 | + }, | |
49 | + data () { | |
50 | + return { | |
51 | + title:"操作", | |
52 | + width:800, | |
53 | + visible: false, | |
54 | + model:{ | |
55 | + }, | |
56 | + labelCol: { | |
57 | + xs: { span: 24 }, | |
58 | + sm: { span: 5 }, | |
59 | + }, | |
60 | + wrapperCol: { | |
61 | + xs: { span: 24 }, | |
62 | + sm: { span: 16 }, | |
63 | + }, | |
64 | + | |
65 | + confirmLoading: false, | |
66 | + validatorRules: { | |
67 | + type: [ | |
68 | + { required: true, message: '请输入入库单类型!'}, | |
69 | + ], | |
70 | + }, | |
71 | + url: { | |
72 | + add: "/config/receiptHeader/add", | |
73 | + edit: "/config/receiptHeader/edit", | |
74 | + } | |
75 | + | |
76 | + } | |
77 | + }, | |
78 | + created () { | |
79 | + //备份model原始值 | |
80 | + this.modelDefault = JSON.parse(JSON.stringify(this.model)); | |
81 | + }, | |
82 | + methods: { | |
83 | + add () { | |
84 | + this.edit(this.modelDefault); | |
85 | + }, | |
86 | + edit (record) { | |
87 | + this.model = Object.assign({}, record); | |
88 | + this.visible = true; | |
89 | + }, | |
90 | + close () { | |
91 | + this.$emit('close'); | |
92 | + this.visible = false; | |
93 | + this.$refs.form.clearValidate(); | |
94 | + }, | |
95 | + handleOk () { | |
96 | + const that = this; | |
97 | + // 触发表单验证 | |
98 | + this.$refs.form.validate(valid => { | |
99 | + if (valid) { | |
100 | + that.confirmLoading = true; | |
101 | + let httpurl = ''; | |
102 | + let method = ''; | |
103 | + if(!this.model.id){ | |
104 | + httpurl+=this.url.add; | |
105 | + method = 'post'; | |
106 | + }else{ | |
107 | + httpurl+=this.url.edit; | |
108 | + method = 'put'; | |
109 | + } | |
110 | + httpAction(httpurl,this.model,method).then((res)=>{ | |
111 | + if(res.success){ | |
112 | + that.$message.success(res.message); | |
113 | + that.$emit('ok'); | |
114 | + }else{ | |
115 | + that.$message.warning(res.message); | |
116 | + } | |
117 | + }).finally(() => { | |
118 | + that.confirmLoading = false; | |
119 | + that.close(); | |
120 | + }) | |
121 | + }else{ | |
122 | + return false | |
123 | + } | |
124 | + }) | |
125 | + }, | |
126 | + handleCancel () { | |
127 | + this.close() | |
128 | + }, | |
129 | + | |
130 | + | |
131 | + } | |
132 | + } | |
133 | +</script> | |
0 | 134 | \ No newline at end of file |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/address/controller/AddressController.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.address.controller; | |
2 | + | |
3 | +import java.util.Arrays; | |
4 | +import java.util.List; | |
5 | +import java.util.Map; | |
6 | +import java.util.stream.Collectors; | |
7 | +import java.io.IOException; | |
8 | +import java.io.UnsupportedEncodingException; | |
9 | +import java.net.URLDecoder; | |
10 | +import javax.servlet.http.HttpServletRequest; | |
11 | +import javax.servlet.http.HttpServletResponse; | |
12 | +import org.jeecg.common.api.vo.Result; | |
13 | +import org.jeecg.common.system.query.QueryGenerator; | |
14 | +import org.jeecg.common.system.util.JwtUtil; | |
15 | +import org.jeecg.common.util.oConvertUtils; | |
16 | + | |
17 | +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | |
18 | +import com.baomidou.mybatisplus.core.metadata.IPage; | |
19 | +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | |
20 | +import lombok.extern.slf4j.Slf4j; | |
21 | + | |
22 | +import org.jeecg.modules.wms.config.address.entity.Address; | |
23 | +import org.jeecg.modules.wms.config.address.service.IAddressService; | |
24 | +import org.jeecg.utils.StringUtils; | |
25 | +import org.jeecgframework.poi.excel.ExcelImportUtil; | |
26 | +import org.jeecgframework.poi.excel.def.NormalExcelConstants; | |
27 | +import org.jeecgframework.poi.excel.entity.ExportParams; | |
28 | +import org.jeecgframework.poi.excel.entity.ImportParams; | |
29 | +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; | |
30 | +import org.jeecg.common.system.base.controller.JeecgController; | |
31 | +import org.springframework.beans.factory.annotation.Autowired; | |
32 | +import org.springframework.web.bind.annotation.*; | |
33 | +import org.springframework.web.multipart.MultipartFile; | |
34 | +import org.springframework.web.multipart.MultipartHttpServletRequest; | |
35 | +import org.springframework.web.servlet.ModelAndView; | |
36 | +import com.alibaba.fastjson.JSON; | |
37 | +import io.swagger.annotations.Api; | |
38 | +import io.swagger.annotations.ApiOperation; | |
39 | +import org.jeecg.common.aspect.annotation.AutoLog; | |
40 | + | |
41 | + /** | |
42 | + * @Description: 接口地址 | |
43 | + * @Author: jeecg-boot | |
44 | + * @Date: 2022-11-01 | |
45 | + * @Version: V1.0 | |
46 | + */ | |
47 | +@Api(tags="接口地址") | |
48 | +@RestController | |
49 | +@RequestMapping("/config/address") | |
50 | +@Slf4j | |
51 | +public class AddressController extends JeecgController<Address, IAddressService> { | |
52 | + @Autowired | |
53 | + private IAddressService addressService; | |
54 | + | |
55 | + /** | |
56 | + * 分页列表查询 | |
57 | + * | |
58 | + * @param address | |
59 | + * @param pageNo | |
60 | + * @param pageSize | |
61 | + * @param req | |
62 | + * @return | |
63 | + */ | |
64 | + //@AutoLog(value = "接口地址-分页列表查询") | |
65 | + @ApiOperation(value="接口地址-分页列表查询", notes="接口地址-分页列表查询") | |
66 | + @GetMapping(value = "/list") | |
67 | + public Result<IPage<Address>> queryPageList(Address address, | |
68 | + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, | |
69 | + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, | |
70 | + HttpServletRequest req) { | |
71 | + QueryWrapper<Address> queryWrapper = QueryGenerator.initQueryWrapper(address, req.getParameterMap()); | |
72 | + Page<Address> page = new Page<Address>(pageNo, pageSize); | |
73 | + IPage<Address> pageList = addressService.page(page, queryWrapper); | |
74 | + return Result.OK(pageList); | |
75 | + } | |
76 | + | |
77 | + /** | |
78 | + * 添加 | |
79 | + * | |
80 | + * @param address | |
81 | + * @return | |
82 | + */ | |
83 | + @AutoLog(value = "接口地址-添加") | |
84 | + @ApiOperation(value="接口地址-添加", notes="接口地址-添加") | |
85 | + @PostMapping(value = "/add") | |
86 | + public Result<String> add(@RequestBody Address address, HttpServletRequest req) { | |
87 | + String warehouseCode = JwtUtil.getWarehouseCodeByToken(req); | |
88 | + if(StringUtils.isNotEmpty(warehouseCode)) { | |
89 | + address.setWarehouseCode(warehouseCode); | |
90 | + } | |
91 | + addressService.save(address); | |
92 | + return Result.OK("添加成功!"); | |
93 | + } | |
94 | + | |
95 | + /** | |
96 | + * 编辑 | |
97 | + * | |
98 | + * @param address | |
99 | + * @return | |
100 | + */ | |
101 | + @AutoLog(value = "接口地址-编辑") | |
102 | + @ApiOperation(value="接口地址-编辑", notes="接口地址-编辑") | |
103 | + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) | |
104 | + public Result<String> edit(@RequestBody Address address) { | |
105 | + addressService.updateById(address); | |
106 | + return Result.OK("编辑成功!"); | |
107 | + } | |
108 | + | |
109 | + /** | |
110 | + * 通过id删除 | |
111 | + * | |
112 | + * @param id | |
113 | + * @return | |
114 | + */ | |
115 | + @AutoLog(value = "接口地址-通过id删除") | |
116 | + @ApiOperation(value="接口地址-通过id删除", notes="接口地址-通过id删除") | |
117 | + @DeleteMapping(value = "/delete") | |
118 | + public Result<String> delete(@RequestParam(name="id",required=true) String id) { | |
119 | + addressService.removeById(id); | |
120 | + return Result.OK("删除成功!"); | |
121 | + } | |
122 | + | |
123 | + /** | |
124 | + * 批量删除 | |
125 | + * | |
126 | + * @param ids | |
127 | + * @return | |
128 | + */ | |
129 | + @AutoLog(value = "接口地址-批量删除") | |
130 | + @ApiOperation(value="接口地址-批量删除", notes="接口地址-批量删除") | |
131 | + @DeleteMapping(value = "/deleteBatch") | |
132 | + public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { | |
133 | + this.addressService.removeByIds(Arrays.asList(ids.split(","))); | |
134 | + return Result.OK("批量删除成功!"); | |
135 | + } | |
136 | + | |
137 | + /** | |
138 | + * 通过id查询 | |
139 | + * | |
140 | + * @param id | |
141 | + * @return | |
142 | + */ | |
143 | + //@AutoLog(value = "接口地址-通过id查询") | |
144 | + @ApiOperation(value="接口地址-通过id查询", notes="接口地址-通过id查询") | |
145 | + @GetMapping(value = "/queryById") | |
146 | + public Result<Address> queryById(@RequestParam(name="id",required=true) String id) { | |
147 | + Address address = addressService.getById(id); | |
148 | + if(address==null) { | |
149 | + return Result.error("未找到对应数据"); | |
150 | + } | |
151 | + return Result.OK(address); | |
152 | + } | |
153 | + | |
154 | + /** | |
155 | + * 导出excel | |
156 | + * | |
157 | + * @param request | |
158 | + * @param address | |
159 | + */ | |
160 | + @RequestMapping(value = "/exportXls") | |
161 | + public ModelAndView exportXls(HttpServletRequest request, Address address) { | |
162 | + return super.exportXls(request, address, Address.class, "接口地址"); | |
163 | + } | |
164 | + | |
165 | + /** | |
166 | + * 通过excel导入数据 | |
167 | + * | |
168 | + * @param request | |
169 | + * @param response | |
170 | + * @return | |
171 | + */ | |
172 | + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) | |
173 | + public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { | |
174 | + return super.importExcel(request, response, Address.class); | |
175 | + } | |
176 | + | |
177 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/address/entity/Address.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.address.entity; | |
2 | + | |
3 | +import java.io.Serializable; | |
4 | +import java.io.UnsupportedEncodingException; | |
5 | +import java.util.Date; | |
6 | +import java.math.BigDecimal; | |
7 | +import com.baomidou.mybatisplus.annotation.IdType; | |
8 | +import com.baomidou.mybatisplus.annotation.TableId; | |
9 | +import com.baomidou.mybatisplus.annotation.TableName; | |
10 | +import lombok.Data; | |
11 | +import com.fasterxml.jackson.annotation.JsonFormat; | |
12 | +import org.springframework.format.annotation.DateTimeFormat; | |
13 | +import org.jeecgframework.poi.excel.annotation.Excel; | |
14 | +import org.jeecg.common.aspect.annotation.Dict; | |
15 | +import io.swagger.annotations.ApiModel; | |
16 | +import io.swagger.annotations.ApiModelProperty; | |
17 | +import lombok.EqualsAndHashCode; | |
18 | +import lombok.experimental.Accessors; | |
19 | + | |
20 | +/** | |
21 | + * @Description: 接口地址 | |
22 | + * @Author: jeecg-boot | |
23 | + * @Date: 2022-11-01 | |
24 | + * @Version: V1.0 | |
25 | + */ | |
26 | +@Data | |
27 | +@TableName("address") | |
28 | +@Accessors(chain = true) | |
29 | +@EqualsAndHashCode(callSuper = false) | |
30 | +@ApiModel(value="address对象", description="接口地址") | |
31 | +public class Address implements Serializable { | |
32 | + private static final long serialVersionUID = 1L; | |
33 | + | |
34 | + /**主键*/ | |
35 | + @TableId(type = IdType.ASSIGN_ID) | |
36 | + @ApiModelProperty(value = "主键") | |
37 | + private String id; | |
38 | + /**编码*/ | |
39 | + @Excel(name = "编码", width = 15) | |
40 | + @ApiModelProperty(value = "编码") | |
41 | + private String code; | |
42 | + /**仓库编码*/ | |
43 | + @Excel(name = "仓库编码", width = 15) | |
44 | + @ApiModelProperty(value = "仓库编码") | |
45 | + private String warehouseCode; | |
46 | + /**库区*/ | |
47 | + @Excel(name = "库区", width = 15) | |
48 | + @ApiModelProperty(value = "库区") | |
49 | + private String zoneCode; | |
50 | + /**接口地址*/ | |
51 | + @Excel(name = "接口地址", width = 15) | |
52 | + @ApiModelProperty(value = "接口地址") | |
53 | + private String url; | |
54 | + /**备用字段1*/ | |
55 | + @Excel(name = "备用字段1", width = 15) | |
56 | + @ApiModelProperty(value = "备用字段1") | |
57 | + private String userdef1; | |
58 | + /**创建人*/ | |
59 | + @ApiModelProperty(value = "创建人") | |
60 | + private String createBy; | |
61 | + /**创建日期*/ | |
62 | + @ApiModelProperty(value = "创建日期") | |
63 | + private Date createTime; | |
64 | + /**更新人*/ | |
65 | + @ApiModelProperty(value = "更新人") | |
66 | + private String updateBy; | |
67 | + /**更新日期*/ | |
68 | + @ApiModelProperty(value = "更新日期") | |
69 | + private Date updateTime; | |
70 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/address/mapper/AddressMapper.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.address.mapper; | |
2 | + | |
3 | +import java.util.List; | |
4 | + | |
5 | +import org.apache.ibatis.annotations.Param; | |
6 | +import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |
7 | +import org.jeecg.modules.wms.config.address.entity.Address; | |
8 | + | |
9 | +/** | |
10 | + * @Description: 接口地址 | |
11 | + * @Author: jeecg-boot | |
12 | + * @Date: 2022-11-01 | |
13 | + * @Version: V1.0 | |
14 | + */ | |
15 | +public interface AddressMapper extends BaseMapper<Address> { | |
16 | + | |
17 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/address/mapper/xml/AddressMapper.xml
0 → 100644
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/address/service/IAddressService.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.address.service; | |
2 | + | |
3 | +import com.baomidou.mybatisplus.extension.service.IService; | |
4 | +import org.jeecg.modules.wms.config.address.entity.Address; | |
5 | + | |
6 | +/** | |
7 | + * @Description: 接口地址 | |
8 | + * @Author: jeecg-boot | |
9 | + * @Date: 2022-11-01 | |
10 | + * @Version: V1.0 | |
11 | + */ | |
12 | +public interface IAddressService extends IService<Address> { | |
13 | + | |
14 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/address/service/impl/AddressServiceImpl.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.address.service.impl; | |
2 | + | |
3 | +import org.jeecg.modules.wms.config.address.entity.Address; | |
4 | +import org.jeecg.modules.wms.config.address.mapper.AddressMapper; | |
5 | +import org.jeecg.modules.wms.config.address.service.IAddressService; | |
6 | +import org.springframework.stereotype.Service; | |
7 | + | |
8 | +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | |
9 | + | |
10 | +/** | |
11 | + * @Description: 接口地址 | |
12 | + * @Author: jeecg-boot | |
13 | + * @Date: 2022-11-01 | |
14 | + * @Version: V1.0 | |
15 | + */ | |
16 | +@Service | |
17 | +public class AddressServiceImpl extends ServiceImpl<AddressMapper, Address> implements IAddressService { | |
18 | + | |
19 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/bomHeader/entity/BomDetail.java
... | ... | @@ -27,9 +27,9 @@ public class BomDetail implements Serializable { |
27 | 27 | private static final long serialVersionUID = 1L; |
28 | 28 | |
29 | 29 | /**主键*/ |
30 | - @TableId(type = IdType.ASSIGN_ID) | |
30 | + @TableId(type = IdType.AUTO) | |
31 | 31 | @ApiModelProperty(value = "主键") |
32 | - private String id; | |
32 | + private Integer id; | |
33 | 33 | /**主单ID*/ |
34 | 34 | @ApiModelProperty(value = "主单ID") |
35 | 35 | private String bomHeaderId; |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/bomHeader/entity/BomHeader.java
... | ... | @@ -27,9 +27,9 @@ public class BomHeader implements Serializable { |
27 | 27 | private static final long serialVersionUID = 1L; |
28 | 28 | |
29 | 29 | /**主键*/ |
30 | - @TableId(type = IdType.ASSIGN_ID) | |
30 | + @TableId(type = IdType.AUTO) | |
31 | 31 | @ApiModelProperty(value = "主键") |
32 | - private String id; | |
32 | + private Integer id; | |
33 | 33 | /**仓库编码*/ |
34 | 34 | @Excel(name = "仓库编码", width = 15) |
35 | 35 | @ApiModelProperty(value = "仓库编码") |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/carrier/entity/Carrier.java
... | ... | @@ -32,7 +32,7 @@ public class Carrier implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/company/entity/Company.java
... | ... | @@ -32,7 +32,7 @@ public class Company implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**货主编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/customer/entity/Customer.java
... | ... | @@ -32,7 +32,7 @@ public class Customer implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/cycleCountPreference/controller/CycleCountPreferenceController.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.cycleCountPreference.controller; | |
2 | + | |
3 | +import java.util.Arrays; | |
4 | +import java.util.List; | |
5 | +import java.util.Map; | |
6 | +import java.util.stream.Collectors; | |
7 | +import java.io.IOException; | |
8 | +import java.io.UnsupportedEncodingException; | |
9 | +import java.net.URLDecoder; | |
10 | +import javax.servlet.http.HttpServletRequest; | |
11 | +import javax.servlet.http.HttpServletResponse; | |
12 | +import org.jeecg.common.api.vo.Result; | |
13 | +import org.jeecg.common.system.query.QueryGenerator; | |
14 | +import org.jeecg.common.system.util.JwtUtil; | |
15 | +import org.jeecg.common.util.oConvertUtils; | |
16 | + | |
17 | +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | |
18 | +import com.baomidou.mybatisplus.core.metadata.IPage; | |
19 | +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | |
20 | +import lombok.extern.slf4j.Slf4j; | |
21 | + | |
22 | +import org.jeecg.modules.wms.config.cycleCountPreference.entity.CycleCountPreference; | |
23 | +import org.jeecg.modules.wms.config.cycleCountPreference.service.ICycleCountPreferenceService; | |
24 | +import org.jeecg.utils.StringUtils; | |
25 | +import org.jeecgframework.poi.excel.ExcelImportUtil; | |
26 | +import org.jeecgframework.poi.excel.def.NormalExcelConstants; | |
27 | +import org.jeecgframework.poi.excel.entity.ExportParams; | |
28 | +import org.jeecgframework.poi.excel.entity.ImportParams; | |
29 | +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; | |
30 | +import org.jeecg.common.system.base.controller.JeecgController; | |
31 | +import org.springframework.beans.factory.annotation.Autowired; | |
32 | +import org.springframework.web.bind.annotation.*; | |
33 | +import org.springframework.web.multipart.MultipartFile; | |
34 | +import org.springframework.web.multipart.MultipartHttpServletRequest; | |
35 | +import org.springframework.web.servlet.ModelAndView; | |
36 | +import com.alibaba.fastjson.JSON; | |
37 | +import io.swagger.annotations.Api; | |
38 | +import io.swagger.annotations.ApiOperation; | |
39 | +import org.jeecg.common.aspect.annotation.AutoLog; | |
40 | + | |
41 | + /** | |
42 | + * @Description: 盘点首选项 | |
43 | + * @Author: jeecg-boot | |
44 | + * @Date: 2022-11-01 | |
45 | + * @Version: V1.0 | |
46 | + */ | |
47 | +@Api(tags="盘点首选项") | |
48 | +@RestController | |
49 | +@RequestMapping("/config/cycleCountPreference") | |
50 | +@Slf4j | |
51 | +public class CycleCountPreferenceController extends JeecgController<CycleCountPreference, ICycleCountPreferenceService> { | |
52 | + @Autowired | |
53 | + private ICycleCountPreferenceService cycleCountPreferenceService; | |
54 | + | |
55 | + /** | |
56 | + * 分页列表查询 | |
57 | + * | |
58 | + * @param cycleCountPreference | |
59 | + * @param pageNo | |
60 | + * @param pageSize | |
61 | + * @param req | |
62 | + * @return | |
63 | + */ | |
64 | + //@AutoLog(value = "盘点首选项-分页列表查询") | |
65 | + @ApiOperation(value="盘点首选项-分页列表查询", notes="盘点首选项-分页列表查询") | |
66 | + @GetMapping(value = "/list") | |
67 | + public Result<IPage<CycleCountPreference>> queryPageList(CycleCountPreference cycleCountPreference, | |
68 | + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, | |
69 | + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, | |
70 | + HttpServletRequest req) { | |
71 | + QueryWrapper<CycleCountPreference> queryWrapper = QueryGenerator.initQueryWrapper(cycleCountPreference, req.getParameterMap()); | |
72 | + Page<CycleCountPreference> page = new Page<CycleCountPreference>(pageNo, pageSize); | |
73 | + IPage<CycleCountPreference> pageList = cycleCountPreferenceService.page(page, queryWrapper); | |
74 | + return Result.OK(pageList); | |
75 | + } | |
76 | + | |
77 | + /** | |
78 | + * 添加 | |
79 | + * | |
80 | + * @param cycleCountPreference | |
81 | + * @return | |
82 | + */ | |
83 | + @AutoLog(value = "盘点首选项-添加") | |
84 | + @ApiOperation(value="盘点首选项-添加", notes="盘点首选项-添加") | |
85 | + @PostMapping(value = "/add") | |
86 | + public Result<String> add(@RequestBody CycleCountPreference cycleCountPreference, HttpServletRequest req) { | |
87 | + String warehouseCode = JwtUtil.getWarehouseCodeByToken(req); | |
88 | + if(StringUtils.isNotEmpty(warehouseCode)) { | |
89 | + cycleCountPreference.setWarehouseCode(warehouseCode); | |
90 | + } | |
91 | + cycleCountPreferenceService.save(cycleCountPreference); | |
92 | + return Result.OK("添加成功!"); | |
93 | + } | |
94 | + | |
95 | + /** | |
96 | + * 编辑 | |
97 | + * | |
98 | + * @param cycleCountPreference | |
99 | + * @return | |
100 | + */ | |
101 | + @AutoLog(value = "盘点首选项-编辑") | |
102 | + @ApiOperation(value="盘点首选项-编辑", notes="盘点首选项-编辑") | |
103 | + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) | |
104 | + public Result<String> edit(@RequestBody CycleCountPreference cycleCountPreference) { | |
105 | + cycleCountPreferenceService.updateById(cycleCountPreference); | |
106 | + return Result.OK("编辑成功!"); | |
107 | + } | |
108 | + | |
109 | + /** | |
110 | + * 通过id删除 | |
111 | + * | |
112 | + * @param id | |
113 | + * @return | |
114 | + */ | |
115 | + @AutoLog(value = "盘点首选项-通过id删除") | |
116 | + @ApiOperation(value="盘点首选项-通过id删除", notes="盘点首选项-通过id删除") | |
117 | + @DeleteMapping(value = "/delete") | |
118 | + public Result<String> delete(@RequestParam(name="id",required=true) String id) { | |
119 | + cycleCountPreferenceService.removeById(id); | |
120 | + return Result.OK("删除成功!"); | |
121 | + } | |
122 | + | |
123 | + /** | |
124 | + * 批量删除 | |
125 | + * | |
126 | + * @param ids | |
127 | + * @return | |
128 | + */ | |
129 | + @AutoLog(value = "盘点首选项-批量删除") | |
130 | + @ApiOperation(value="盘点首选项-批量删除", notes="盘点首选项-批量删除") | |
131 | + @DeleteMapping(value = "/deleteBatch") | |
132 | + public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { | |
133 | + this.cycleCountPreferenceService.removeByIds(Arrays.asList(ids.split(","))); | |
134 | + return Result.OK("批量删除成功!"); | |
135 | + } | |
136 | + | |
137 | + /** | |
138 | + * 通过id查询 | |
139 | + * | |
140 | + * @param id | |
141 | + * @return | |
142 | + */ | |
143 | + //@AutoLog(value = "盘点首选项-通过id查询") | |
144 | + @ApiOperation(value="盘点首选项-通过id查询", notes="盘点首选项-通过id查询") | |
145 | + @GetMapping(value = "/queryById") | |
146 | + public Result<CycleCountPreference> queryById(@RequestParam(name="id",required=true) String id) { | |
147 | + CycleCountPreference cycleCountPreference = cycleCountPreferenceService.getById(id); | |
148 | + if(cycleCountPreference==null) { | |
149 | + return Result.error("未找到对应数据"); | |
150 | + } | |
151 | + return Result.OK(cycleCountPreference); | |
152 | + } | |
153 | + | |
154 | + /** | |
155 | + * 导出excel | |
156 | + * | |
157 | + * @param request | |
158 | + * @param cycleCountPreference | |
159 | + */ | |
160 | + @RequestMapping(value = "/exportXls") | |
161 | + public ModelAndView exportXls(HttpServletRequest request, CycleCountPreference cycleCountPreference) { | |
162 | + return super.exportXls(request, cycleCountPreference, CycleCountPreference.class, "盘点首选项"); | |
163 | + } | |
164 | + | |
165 | + /** | |
166 | + * 通过excel导入数据 | |
167 | + * | |
168 | + * @param request | |
169 | + * @param response | |
170 | + * @return | |
171 | + */ | |
172 | + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) | |
173 | + public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { | |
174 | + return super.importExcel(request, response, CycleCountPreference.class); | |
175 | + } | |
176 | + | |
177 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/cycleCountPreference/entity/CycleCountPreference.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.cycleCountPreference.entity; | |
2 | + | |
3 | +import java.io.Serializable; | |
4 | +import java.io.UnsupportedEncodingException; | |
5 | +import java.util.Date; | |
6 | +import java.math.BigDecimal; | |
7 | +import com.baomidou.mybatisplus.annotation.IdType; | |
8 | +import com.baomidou.mybatisplus.annotation.TableId; | |
9 | +import com.baomidou.mybatisplus.annotation.TableName; | |
10 | +import lombok.Data; | |
11 | +import com.fasterxml.jackson.annotation.JsonFormat; | |
12 | +import org.springframework.format.annotation.DateTimeFormat; | |
13 | +import org.jeecgframework.poi.excel.annotation.Excel; | |
14 | +import org.jeecg.common.aspect.annotation.Dict; | |
15 | +import io.swagger.annotations.ApiModel; | |
16 | +import io.swagger.annotations.ApiModelProperty; | |
17 | +import lombok.EqualsAndHashCode; | |
18 | +import lombok.experimental.Accessors; | |
19 | + | |
20 | +/** | |
21 | + * @Description: 盘点首选项 | |
22 | + * @Author: jeecg-boot | |
23 | + * @Date: 2022-11-01 | |
24 | + * @Version: V1.0 | |
25 | + */ | |
26 | +@Data | |
27 | +@TableName("cycle_count_preference") | |
28 | +@Accessors(chain = true) | |
29 | +@EqualsAndHashCode(callSuper = false) | |
30 | +@ApiModel(value="cycle_count_preference对象", description="盘点首选项") | |
31 | +public class CycleCountPreference implements Serializable { | |
32 | + private static final long serialVersionUID = 1L; | |
33 | + | |
34 | + /**主键*/ | |
35 | + @TableId(type = IdType.ASSIGN_ID) | |
36 | + @ApiModelProperty(value = "主键") | |
37 | + private String id; | |
38 | + /**编码*/ | |
39 | + @Excel(name = "编码", width = 15) | |
40 | + @ApiModelProperty(value = "编码") | |
41 | + private String code; | |
42 | + /**名称*/ | |
43 | + @Excel(name = "名称", width = 15) | |
44 | + @ApiModelProperty(value = "名称") | |
45 | + private String name; | |
46 | + /**仓库编码*/ | |
47 | + @Excel(name = "仓库编码", width = 15) | |
48 | + @ApiModelProperty(value = "仓库编码") | |
49 | + private String warehouseCode; | |
50 | + /**系统提示库位*/ | |
51 | + @Excel(name = "系统提示库位", width = 15, dicCode = "is_or_not") | |
52 | + @Dict(dicCode = "is_or_not") | |
53 | + @ApiModelProperty(value = "系统提示库位") | |
54 | + private Integer promptLocation; | |
55 | + /**系统提示容器*/ | |
56 | + @Excel(name = "系统提示容器", width = 15, dicCode = "is_or_not") | |
57 | + @Dict(dicCode = "is_or_not") | |
58 | + @ApiModelProperty(value = "系统提示容器") | |
59 | + private Integer promptContainer; | |
60 | + /**系统提示物料*/ | |
61 | + @Excel(name = "系统提示物料", width = 15, dicCode = "is_or_not") | |
62 | + @Dict(dicCode = "is_or_not") | |
63 | + @ApiModelProperty(value = "系统提示物料") | |
64 | + private Integer promptMaterial; | |
65 | + /**显示差异数量*/ | |
66 | + @Excel(name = "显示差异数量", width = 15, dicCode = "is_or_not") | |
67 | + @Dict(dicCode = "is_or_not") | |
68 | + @ApiModelProperty(value = "显示差异数量") | |
69 | + private Integer prompAdjustQty; | |
70 | + /**显示库存数量*/ | |
71 | + @Excel(name = "显示库存数量", width = 15, dicCode = "is_or_not") | |
72 | + @Dict(dicCode = "is_or_not") | |
73 | + @ApiModelProperty(value = "显示库存数量") | |
74 | + private Integer promptInventory; | |
75 | + /**备用字段1*/ | |
76 | + @Excel(name = "备用字段1", width = 15) | |
77 | + @ApiModelProperty(value = "备用字段1") | |
78 | + private String userdef1; | |
79 | + /**备用字段2*/ | |
80 | + @Excel(name = "备用字段2", width = 15) | |
81 | + @ApiModelProperty(value = "备用字段2") | |
82 | + private String userdef2; | |
83 | + /**备用字段3*/ | |
84 | + @Excel(name = "备用字段3", width = 15) | |
85 | + @ApiModelProperty(value = "备用字段3") | |
86 | + private String userdef3; | |
87 | + /**创建人*/ | |
88 | + @ApiModelProperty(value = "创建人") | |
89 | + private String createBy; | |
90 | + /**创建日期*/ | |
91 | + @ApiModelProperty(value = "创建日期") | |
92 | + private Date createTime; | |
93 | + /**更新人*/ | |
94 | + @ApiModelProperty(value = "更新人") | |
95 | + private String updateBy; | |
96 | + /**更新日期*/ | |
97 | + @ApiModelProperty(value = "更新日期") | |
98 | + private Date updateTime; | |
99 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/cycleCountPreference/mapper/CycleCountPreferenceMapper.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.cycleCountPreference.mapper; | |
2 | + | |
3 | +import java.util.List; | |
4 | + | |
5 | +import org.apache.ibatis.annotations.Param; | |
6 | +import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |
7 | +import org.jeecg.modules.wms.config.cycleCountPreference.entity.CycleCountPreference; | |
8 | + | |
9 | +/** | |
10 | + * @Description: 盘点首选项 | |
11 | + * @Author: jeecg-boot | |
12 | + * @Date: 2022-11-01 | |
13 | + * @Version: V1.0 | |
14 | + */ | |
15 | +public interface CycleCountPreferenceMapper extends BaseMapper<CycleCountPreference> { | |
16 | + | |
17 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/cycleCountPreference/mapper/xml/CycleCountPreferenceMapper.xml
0 → 100644
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/cycleCountPreference/service/ICycleCountPreferenceService.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.cycleCountPreference.service; | |
2 | + | |
3 | +import com.baomidou.mybatisplus.extension.service.IService; | |
4 | +import org.jeecg.modules.wms.config.cycleCountPreference.entity.CycleCountPreference; | |
5 | + | |
6 | +/** | |
7 | + * @Description: 盘点首选项 | |
8 | + * @Author: jeecg-boot | |
9 | + * @Date: 2022-11-01 | |
10 | + * @Version: V1.0 | |
11 | + */ | |
12 | +public interface ICycleCountPreferenceService extends IService<CycleCountPreference> { | |
13 | + | |
14 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/cycleCountPreference/service/impl/CycleCountPreferenceServiceImpl.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.cycleCountPreference.service.impl; | |
2 | + | |
3 | +import org.jeecg.modules.wms.config.cycleCountPreference.entity.CycleCountPreference; | |
4 | +import org.jeecg.modules.wms.config.cycleCountPreference.mapper.CycleCountPreferenceMapper; | |
5 | +import org.jeecg.modules.wms.config.cycleCountPreference.service.ICycleCountPreferenceService; | |
6 | +import org.springframework.stereotype.Service; | |
7 | + | |
8 | +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | |
9 | + | |
10 | +/** | |
11 | + * @Description: 盘点首选项 | |
12 | + * @Author: jeecg-boot | |
13 | + * @Date: 2022-11-01 | |
14 | + * @Version: V1.0 | |
15 | + */ | |
16 | +@Service | |
17 | +public class CycleCountPreferenceServiceImpl extends ServiceImpl<CycleCountPreferenceMapper, CycleCountPreference> implements ICycleCountPreferenceService { | |
18 | + | |
19 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/location/entity/Location.java
... | ... | @@ -32,7 +32,7 @@ public class Location implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.AUTO) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**库位编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/material/entity/Material.java
... | ... | @@ -32,7 +32,7 @@ public class Material implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**物料编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/materialArea/entity/MaterialArea.java
... | ... | @@ -32,7 +32,7 @@ public class MaterialArea implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/materialMultiple/entity/MaterialMultiple.java
... | ... | @@ -32,7 +32,7 @@ public class MaterialMultiple implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**物料编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/materialType/entity/MaterialType.java
... | ... | @@ -32,7 +32,7 @@ public class MaterialType implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/materialUnit/entity/MaterialUnit.java
... | ... | @@ -32,7 +32,7 @@ public class MaterialUnit implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**物料编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/materialWarning/entity/MaterialWarning.java
... | ... | @@ -32,7 +32,7 @@ public class MaterialWarning implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**预警类别代码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/parameterConfiguration/controller/ParameterConfigurationController.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.parameterConfiguration.controller; | |
2 | + | |
3 | +import java.util.Arrays; | |
4 | +import java.util.List; | |
5 | +import java.util.Map; | |
6 | +import java.util.stream.Collectors; | |
7 | +import java.io.IOException; | |
8 | +import java.io.UnsupportedEncodingException; | |
9 | +import java.net.URLDecoder; | |
10 | +import javax.servlet.http.HttpServletRequest; | |
11 | +import javax.servlet.http.HttpServletResponse; | |
12 | +import org.jeecg.common.api.vo.Result; | |
13 | +import org.jeecg.common.system.query.QueryGenerator; | |
14 | +import org.jeecg.common.system.util.JwtUtil; | |
15 | +import org.jeecg.common.util.oConvertUtils; | |
16 | + | |
17 | +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | |
18 | +import com.baomidou.mybatisplus.core.metadata.IPage; | |
19 | +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | |
20 | +import lombok.extern.slf4j.Slf4j; | |
21 | + | |
22 | +import org.jeecg.modules.wms.config.parameterConfiguration.entity.ParameterConfiguration; | |
23 | +import org.jeecg.modules.wms.config.parameterConfiguration.service.IParameterConfigurationService; | |
24 | +import org.jeecg.utils.StringUtils; | |
25 | +import org.jeecgframework.poi.excel.ExcelImportUtil; | |
26 | +import org.jeecgframework.poi.excel.def.NormalExcelConstants; | |
27 | +import org.jeecgframework.poi.excel.entity.ExportParams; | |
28 | +import org.jeecgframework.poi.excel.entity.ImportParams; | |
29 | +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; | |
30 | +import org.jeecg.common.system.base.controller.JeecgController; | |
31 | +import org.springframework.beans.factory.annotation.Autowired; | |
32 | +import org.springframework.web.bind.annotation.*; | |
33 | +import org.springframework.web.multipart.MultipartFile; | |
34 | +import org.springframework.web.multipart.MultipartHttpServletRequest; | |
35 | +import org.springframework.web.servlet.ModelAndView; | |
36 | +import com.alibaba.fastjson.JSON; | |
37 | +import io.swagger.annotations.Api; | |
38 | +import io.swagger.annotations.ApiOperation; | |
39 | +import org.jeecg.common.aspect.annotation.AutoLog; | |
40 | + | |
41 | + /** | |
42 | + * @Description: 参数配置 | |
43 | + * @Author: jeecg-boot | |
44 | + * @Date: 2022-11-01 | |
45 | + * @Version: V1.0 | |
46 | + */ | |
47 | +@Api(tags="参数配置") | |
48 | +@RestController | |
49 | +@RequestMapping("/config/parameterConfiguration") | |
50 | +@Slf4j | |
51 | +public class ParameterConfigurationController extends JeecgController<ParameterConfiguration, IParameterConfigurationService> { | |
52 | + @Autowired | |
53 | + private IParameterConfigurationService parameterConfigurationService; | |
54 | + | |
55 | + /** | |
56 | + * 分页列表查询 | |
57 | + * | |
58 | + * @param parameterConfiguration | |
59 | + * @param pageNo | |
60 | + * @param pageSize | |
61 | + * @param req | |
62 | + * @return | |
63 | + */ | |
64 | + //@AutoLog(value = "参数配置-分页列表查询") | |
65 | + @ApiOperation(value="参数配置-分页列表查询", notes="参数配置-分页列表查询") | |
66 | + @GetMapping(value = "/list") | |
67 | + public Result<IPage<ParameterConfiguration>> queryPageList(ParameterConfiguration parameterConfiguration, | |
68 | + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, | |
69 | + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, | |
70 | + HttpServletRequest req) { | |
71 | + QueryWrapper<ParameterConfiguration> queryWrapper = QueryGenerator.initQueryWrapper(parameterConfiguration, req.getParameterMap()); | |
72 | + Page<ParameterConfiguration> page = new Page<ParameterConfiguration>(pageNo, pageSize); | |
73 | + IPage<ParameterConfiguration> pageList = parameterConfigurationService.page(page, queryWrapper); | |
74 | + return Result.OK(pageList); | |
75 | + } | |
76 | + | |
77 | + /** | |
78 | + * 添加 | |
79 | + * | |
80 | + * @param parameterConfiguration | |
81 | + * @return | |
82 | + */ | |
83 | + @AutoLog(value = "参数配置-添加") | |
84 | + @ApiOperation(value="参数配置-添加", notes="参数配置-添加") | |
85 | + @PostMapping(value = "/add") | |
86 | + public Result<String> add(@RequestBody ParameterConfiguration parameterConfiguration, HttpServletRequest req) { | |
87 | + parameterConfigurationService.save(parameterConfiguration); | |
88 | + return Result.OK("添加成功!"); | |
89 | + } | |
90 | + | |
91 | + /** | |
92 | + * 编辑 | |
93 | + * | |
94 | + * @param parameterConfiguration | |
95 | + * @return | |
96 | + */ | |
97 | + @AutoLog(value = "参数配置-编辑") | |
98 | + @ApiOperation(value="参数配置-编辑", notes="参数配置-编辑") | |
99 | + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) | |
100 | + public Result<String> edit(@RequestBody ParameterConfiguration parameterConfiguration) { | |
101 | + parameterConfigurationService.updateById(parameterConfiguration); | |
102 | + return Result.OK("编辑成功!"); | |
103 | + } | |
104 | + | |
105 | + /** | |
106 | + * 通过id删除 | |
107 | + * | |
108 | + * @param id | |
109 | + * @return | |
110 | + */ | |
111 | + @AutoLog(value = "参数配置-通过id删除") | |
112 | + @ApiOperation(value="参数配置-通过id删除", notes="参数配置-通过id删除") | |
113 | + @DeleteMapping(value = "/delete") | |
114 | + public Result<String> delete(@RequestParam(name="id",required=true) String id) { | |
115 | + parameterConfigurationService.removeById(id); | |
116 | + return Result.OK("删除成功!"); | |
117 | + } | |
118 | + | |
119 | + /** | |
120 | + * 批量删除 | |
121 | + * | |
122 | + * @param ids | |
123 | + * @return | |
124 | + */ | |
125 | + @AutoLog(value = "参数配置-批量删除") | |
126 | + @ApiOperation(value="参数配置-批量删除", notes="参数配置-批量删除") | |
127 | + @DeleteMapping(value = "/deleteBatch") | |
128 | + public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { | |
129 | + this.parameterConfigurationService.removeByIds(Arrays.asList(ids.split(","))); | |
130 | + return Result.OK("批量删除成功!"); | |
131 | + } | |
132 | + | |
133 | + /** | |
134 | + * 通过id查询 | |
135 | + * | |
136 | + * @param id | |
137 | + * @return | |
138 | + */ | |
139 | + //@AutoLog(value = "参数配置-通过id查询") | |
140 | + @ApiOperation(value="参数配置-通过id查询", notes="参数配置-通过id查询") | |
141 | + @GetMapping(value = "/queryById") | |
142 | + public Result<ParameterConfiguration> queryById(@RequestParam(name="id",required=true) String id) { | |
143 | + ParameterConfiguration parameterConfiguration = parameterConfigurationService.getById(id); | |
144 | + if(parameterConfiguration==null) { | |
145 | + return Result.error("未找到对应数据"); | |
146 | + } | |
147 | + return Result.OK(parameterConfiguration); | |
148 | + } | |
149 | + | |
150 | + /** | |
151 | + * 导出excel | |
152 | + * | |
153 | + * @param request | |
154 | + * @param parameterConfiguration | |
155 | + */ | |
156 | + @RequestMapping(value = "/exportXls") | |
157 | + public ModelAndView exportXls(HttpServletRequest request, ParameterConfiguration parameterConfiguration) { | |
158 | + return super.exportXls(request, parameterConfiguration, ParameterConfiguration.class, "参数配置"); | |
159 | + } | |
160 | + | |
161 | + /** | |
162 | + * 通过excel导入数据 | |
163 | + * | |
164 | + * @param request | |
165 | + * @param response | |
166 | + * @return | |
167 | + */ | |
168 | + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) | |
169 | + public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { | |
170 | + return super.importExcel(request, response, ParameterConfiguration.class); | |
171 | + } | |
172 | + | |
173 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/parameterConfiguration/entity/ParameterConfiguration.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.parameterConfiguration.entity; | |
2 | + | |
3 | +import java.io.Serializable; | |
4 | +import java.io.UnsupportedEncodingException; | |
5 | +import java.util.Date; | |
6 | +import java.math.BigDecimal; | |
7 | +import com.baomidou.mybatisplus.annotation.IdType; | |
8 | +import com.baomidou.mybatisplus.annotation.TableId; | |
9 | +import com.baomidou.mybatisplus.annotation.TableName; | |
10 | +import lombok.Data; | |
11 | +import com.fasterxml.jackson.annotation.JsonFormat; | |
12 | +import org.springframework.format.annotation.DateTimeFormat; | |
13 | +import org.jeecgframework.poi.excel.annotation.Excel; | |
14 | +import org.jeecg.common.aspect.annotation.Dict; | |
15 | +import io.swagger.annotations.ApiModel; | |
16 | +import io.swagger.annotations.ApiModelProperty; | |
17 | +import lombok.EqualsAndHashCode; | |
18 | +import lombok.experimental.Accessors; | |
19 | + | |
20 | +/** | |
21 | + * @Description: 参数配置 | |
22 | + * @Author: jeecg-boot | |
23 | + * @Date: 2022-11-01 | |
24 | + * @Version: V1.0 | |
25 | + */ | |
26 | +@Data | |
27 | +@TableName("parameter_configuration") | |
28 | +@Accessors(chain = true) | |
29 | +@EqualsAndHashCode(callSuper = false) | |
30 | +@ApiModel(value="parameter_configuration对象", description="参数配置") | |
31 | +public class ParameterConfiguration implements Serializable { | |
32 | + private static final long serialVersionUID = 1L; | |
33 | + | |
34 | + /**主键*/ | |
35 | + @TableId(type = IdType.ASSIGN_ID) | |
36 | + @ApiModelProperty(value = "主键") | |
37 | + private String id; | |
38 | + /**参数名称*/ | |
39 | + @Excel(name = "参数名称", width = 15) | |
40 | + @ApiModelProperty(value = "参数名称") | |
41 | + private String name; | |
42 | + /**参数键名*/ | |
43 | + @Excel(name = "参数键名", width = 15) | |
44 | + @ApiModelProperty(value = "参数键名") | |
45 | + private String code; | |
46 | + /**参数键值*/ | |
47 | + @Excel(name = "参数键值", width = 15) | |
48 | + @ApiModelProperty(value = "参数键值") | |
49 | + private String value; | |
50 | + /**备注*/ | |
51 | + @Excel(name = "备注", width = 15) | |
52 | + @ApiModelProperty(value = "备注") | |
53 | + private String remark; | |
54 | + /**备用字段1*/ | |
55 | + @Excel(name = "备用字段1", width = 15) | |
56 | + @ApiModelProperty(value = "备用字段1") | |
57 | + private String userdef1; | |
58 | + /**创建人*/ | |
59 | + @ApiModelProperty(value = "创建人") | |
60 | + private String createBy; | |
61 | + /**创建日期*/ | |
62 | + @ApiModelProperty(value = "创建日期") | |
63 | + private Date createTime; | |
64 | + /**更新人*/ | |
65 | + @ApiModelProperty(value = "更新人") | |
66 | + private String updateBy; | |
67 | + /**更新日期*/ | |
68 | + @ApiModelProperty(value = "更新日期") | |
69 | + private Date updateTime; | |
70 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/parameterConfiguration/mapper/ParameterConfigurationMapper.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.parameterConfiguration.mapper; | |
2 | + | |
3 | +import java.util.List; | |
4 | + | |
5 | +import org.apache.ibatis.annotations.Param; | |
6 | +import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |
7 | +import org.jeecg.modules.wms.config.parameterConfiguration.entity.ParameterConfiguration; | |
8 | + | |
9 | +/** | |
10 | + * @Description: 参数配置 | |
11 | + * @Author: jeecg-boot | |
12 | + * @Date: 2022-11-01 | |
13 | + * @Version: V1.0 | |
14 | + */ | |
15 | +public interface ParameterConfigurationMapper extends BaseMapper<ParameterConfiguration> { | |
16 | + | |
17 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/parameterConfiguration/mapper/xml/ParameterConfigurationMapper.xml
0 → 100644
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/parameterConfiguration/service/IParameterConfigurationService.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.parameterConfiguration.service; | |
2 | + | |
3 | +import com.baomidou.mybatisplus.extension.service.IService; | |
4 | +import org.jeecg.modules.wms.config.parameterConfiguration.entity.ParameterConfiguration; | |
5 | + | |
6 | +/** | |
7 | + * @Description: 参数配置 | |
8 | + * @Author: jeecg-boot | |
9 | + * @Date: 2022-11-01 | |
10 | + * @Version: V1.0 | |
11 | + */ | |
12 | +public interface IParameterConfigurationService extends IService<ParameterConfiguration> { | |
13 | + | |
14 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/parameterConfiguration/service/impl/ParameterConfigurationServiceImpl.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.parameterConfiguration.service.impl; | |
2 | + | |
3 | +import org.jeecg.modules.wms.config.parameterConfiguration.entity.ParameterConfiguration; | |
4 | +import org.jeecg.modules.wms.config.parameterConfiguration.mapper.ParameterConfigurationMapper; | |
5 | +import org.jeecg.modules.wms.config.parameterConfiguration.service.IParameterConfigurationService; | |
6 | +import org.springframework.stereotype.Service; | |
7 | + | |
8 | +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | |
9 | + | |
10 | +/** | |
11 | + * @Description: 参数配置 | |
12 | + * @Author: jeecg-boot | |
13 | + * @Date: 2022-11-01 | |
14 | + * @Version: V1.0 | |
15 | + */ | |
16 | +@Service | |
17 | +public class ParameterConfigurationServiceImpl extends ServiceImpl<ParameterConfigurationMapper, ParameterConfiguration> implements IParameterConfigurationService { | |
18 | + | |
19 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/port/entity/Port.java
... | ... | @@ -32,7 +32,7 @@ public class Port implements Serializable { |
32 | 32 | private static final long serialVersionUID = 1L; |
33 | 33 | |
34 | 34 | /**主键*/ |
35 | - @TableId(type = IdType.ASSIGN_ID) | |
35 | + @TableId(type = IdType.AUTO) | |
36 | 36 | @ApiModelProperty(value = "主键") |
37 | 37 | private String id; |
38 | 38 | /**编码*/ |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/receiptType/controller/ReceiptTypeController.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.receiptType.controller; | |
2 | + | |
3 | +import java.util.Arrays; | |
4 | +import java.util.List; | |
5 | +import java.util.Map; | |
6 | +import java.util.stream.Collectors; | |
7 | +import java.io.IOException; | |
8 | +import java.io.UnsupportedEncodingException; | |
9 | +import java.net.URLDecoder; | |
10 | +import javax.servlet.http.HttpServletRequest; | |
11 | +import javax.servlet.http.HttpServletResponse; | |
12 | +import org.jeecg.common.api.vo.Result; | |
13 | +import org.jeecg.common.system.query.QueryGenerator; | |
14 | +import org.jeecg.common.system.util.JwtUtil; | |
15 | +import org.jeecg.common.util.oConvertUtils; | |
16 | + | |
17 | +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | |
18 | +import com.baomidou.mybatisplus.core.metadata.IPage; | |
19 | +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | |
20 | +import lombok.extern.slf4j.Slf4j; | |
21 | + | |
22 | +import org.jeecg.modules.wms.config.receiptType.entity.ReceiptType; | |
23 | +import org.jeecg.modules.wms.config.receiptType.service.IReceiptTypeService; | |
24 | +import org.jeecg.utils.StringUtils; | |
25 | +import org.jeecgframework.poi.excel.ExcelImportUtil; | |
26 | +import org.jeecgframework.poi.excel.def.NormalExcelConstants; | |
27 | +import org.jeecgframework.poi.excel.entity.ExportParams; | |
28 | +import org.jeecgframework.poi.excel.entity.ImportParams; | |
29 | +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; | |
30 | +import org.jeecg.common.system.base.controller.JeecgController; | |
31 | +import org.springframework.beans.factory.annotation.Autowired; | |
32 | +import org.springframework.web.bind.annotation.*; | |
33 | +import org.springframework.web.multipart.MultipartFile; | |
34 | +import org.springframework.web.multipart.MultipartHttpServletRequest; | |
35 | +import org.springframework.web.servlet.ModelAndView; | |
36 | +import com.alibaba.fastjson.JSON; | |
37 | +import io.swagger.annotations.Api; | |
38 | +import io.swagger.annotations.ApiOperation; | |
39 | +import org.jeecg.common.aspect.annotation.AutoLog; | |
40 | + | |
41 | + /** | |
42 | + * @Description: 入库单类型 | |
43 | + * @Author: jeecg-boot | |
44 | + * @Date: 2022-11-01 | |
45 | + * @Version: V1.0 | |
46 | + */ | |
47 | +@Api(tags="入库单类型") | |
48 | +@RestController | |
49 | +@RequestMapping("/config/receiptType") | |
50 | +@Slf4j | |
51 | +public class ReceiptTypeController extends JeecgController<ReceiptType, IReceiptTypeService> { | |
52 | + @Autowired | |
53 | + private IReceiptTypeService receiptTypeService; | |
54 | + | |
55 | + /** | |
56 | + * 分页列表查询 | |
57 | + * | |
58 | + * @param receiptType | |
59 | + * @param pageNo | |
60 | + * @param pageSize | |
61 | + * @param req | |
62 | + * @return | |
63 | + */ | |
64 | + //@AutoLog(value = "入库单类型-分页列表查询") | |
65 | + @ApiOperation(value="入库单类型-分页列表查询", notes="入库单类型-分页列表查询") | |
66 | + @GetMapping(value = "/list") | |
67 | + public Result<IPage<ReceiptType>> queryPageList(ReceiptType receiptType, | |
68 | + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, | |
69 | + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, | |
70 | + HttpServletRequest req) { | |
71 | + QueryWrapper<ReceiptType> queryWrapper = QueryGenerator.initQueryWrapper(receiptType, req.getParameterMap()); | |
72 | + Page<ReceiptType> page = new Page<ReceiptType>(pageNo, pageSize); | |
73 | + IPage<ReceiptType> pageList = receiptTypeService.page(page, queryWrapper); | |
74 | + return Result.OK(pageList); | |
75 | + } | |
76 | + | |
77 | + /** | |
78 | + * 添加 | |
79 | + * | |
80 | + * @param receiptType | |
81 | + * @return | |
82 | + */ | |
83 | + @AutoLog(value = "入库单类型-添加") | |
84 | + @ApiOperation(value="入库单类型-添加", notes="入库单类型-添加") | |
85 | + @PostMapping(value = "/add") | |
86 | + public Result<String> add(@RequestBody ReceiptType receiptType, HttpServletRequest req) { | |
87 | + String warehouseCode = JwtUtil.getWarehouseCodeByToken(req); | |
88 | + if(StringUtils.isNotEmpty(warehouseCode)) { | |
89 | + receiptType.setWarehouseCode(warehouseCode); | |
90 | + } | |
91 | + receiptTypeService.save(receiptType); | |
92 | + return Result.OK("添加成功!"); | |
93 | + } | |
94 | + | |
95 | + /** | |
96 | + * 编辑 | |
97 | + * | |
98 | + * @param receiptType | |
99 | + * @return | |
100 | + */ | |
101 | + @AutoLog(value = "入库单类型-编辑") | |
102 | + @ApiOperation(value="入库单类型-编辑", notes="入库单类型-编辑") | |
103 | + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) | |
104 | + public Result<String> edit(@RequestBody ReceiptType receiptType) { | |
105 | + receiptTypeService.updateById(receiptType); | |
106 | + return Result.OK("编辑成功!"); | |
107 | + } | |
108 | + | |
109 | + /** | |
110 | + * 通过id删除 | |
111 | + * | |
112 | + * @param id | |
113 | + * @return | |
114 | + */ | |
115 | + @AutoLog(value = "入库单类型-通过id删除") | |
116 | + @ApiOperation(value="入库单类型-通过id删除", notes="入库单类型-通过id删除") | |
117 | + @DeleteMapping(value = "/delete") | |
118 | + public Result<String> delete(@RequestParam(name="id",required=true) String id) { | |
119 | + receiptTypeService.removeById(id); | |
120 | + return Result.OK("删除成功!"); | |
121 | + } | |
122 | + | |
123 | + /** | |
124 | + * 批量删除 | |
125 | + * | |
126 | + * @param ids | |
127 | + * @return | |
128 | + */ | |
129 | + @AutoLog(value = "入库单类型-批量删除") | |
130 | + @ApiOperation(value="入库单类型-批量删除", notes="入库单类型-批量删除") | |
131 | + @DeleteMapping(value = "/deleteBatch") | |
132 | + public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) { | |
133 | + this.receiptTypeService.removeByIds(Arrays.asList(ids.split(","))); | |
134 | + return Result.OK("批量删除成功!"); | |
135 | + } | |
136 | + | |
137 | + /** | |
138 | + * 通过id查询 | |
139 | + * | |
140 | + * @param id | |
141 | + * @return | |
142 | + */ | |
143 | + //@AutoLog(value = "入库单类型-通过id查询") | |
144 | + @ApiOperation(value="入库单类型-通过id查询", notes="入库单类型-通过id查询") | |
145 | + @GetMapping(value = "/queryById") | |
146 | + public Result<ReceiptType> queryById(@RequestParam(name="id",required=true) String id) { | |
147 | + ReceiptType receiptType = receiptTypeService.getById(id); | |
148 | + if(receiptType==null) { | |
149 | + return Result.error("未找到对应数据"); | |
150 | + } | |
151 | + return Result.OK(receiptType); | |
152 | + } | |
153 | + | |
154 | + /** | |
155 | + * 导出excel | |
156 | + * | |
157 | + * @param request | |
158 | + * @param receiptType | |
159 | + */ | |
160 | + @RequestMapping(value = "/exportXls") | |
161 | + public ModelAndView exportXls(HttpServletRequest request, ReceiptType receiptType) { | |
162 | + return super.exportXls(request, receiptType, ReceiptType.class, "入库单类型"); | |
163 | + } | |
164 | + | |
165 | + /** | |
166 | + * 通过excel导入数据 | |
167 | + * | |
168 | + * @param request | |
169 | + * @param response | |
170 | + * @return | |
171 | + */ | |
172 | + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) | |
173 | + public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) { | |
174 | + return super.importExcel(request, response, ReceiptType.class); | |
175 | + } | |
176 | + | |
177 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/receiptType/entity/ReceiptType.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.receiptType.entity; | |
2 | + | |
3 | +import java.io.Serializable; | |
4 | +import java.io.UnsupportedEncodingException; | |
5 | +import java.util.Date; | |
6 | +import java.math.BigDecimal; | |
7 | +import com.baomidou.mybatisplus.annotation.IdType; | |
8 | +import com.baomidou.mybatisplus.annotation.TableId; | |
9 | +import com.baomidou.mybatisplus.annotation.TableName; | |
10 | +import lombok.Data; | |
11 | +import com.fasterxml.jackson.annotation.JsonFormat; | |
12 | +import org.springframework.format.annotation.DateTimeFormat; | |
13 | +import org.jeecgframework.poi.excel.annotation.Excel; | |
14 | +import org.jeecg.common.aspect.annotation.Dict; | |
15 | +import io.swagger.annotations.ApiModel; | |
16 | +import io.swagger.annotations.ApiModelProperty; | |
17 | +import lombok.EqualsAndHashCode; | |
18 | +import lombok.experimental.Accessors; | |
19 | + | |
20 | +/** | |
21 | + * @Description: 入库单类型 | |
22 | + * @Author: jeecg-boot | |
23 | + * @Date: 2022-11-01 | |
24 | + * @Version: V1.0 | |
25 | + */ | |
26 | +@Data | |
27 | +@TableName("receipt_type") | |
28 | +@Accessors(chain = true) | |
29 | +@EqualsAndHashCode(callSuper = false) | |
30 | +@ApiModel(value="receipt_type对象", description="入库单类型") | |
31 | +public class ReceiptType implements Serializable { | |
32 | + private static final long serialVersionUID = 1L; | |
33 | + | |
34 | + /**主键*/ | |
35 | + @TableId(type = IdType.ASSIGN_ID) | |
36 | + @ApiModelProperty(value = "主键") | |
37 | + private String id; | |
38 | + /**编码*/ | |
39 | + @Excel(name = "编码", width = 15) | |
40 | + @ApiModelProperty(value = "编码") | |
41 | + private String code; | |
42 | + /**名称*/ | |
43 | + @Excel(name = "名称", width = 15) | |
44 | + @ApiModelProperty(value = "名称") | |
45 | + private String name; | |
46 | + /**仓库*/ | |
47 | + @Excel(name = "仓库", width = 15) | |
48 | + @ApiModelProperty(value = "仓库") | |
49 | + private String warehouseCode; | |
50 | + /**货主*/ | |
51 | + @Excel(name = "货主", width = 15) | |
52 | + @ApiModelProperty(value = "货主") | |
53 | + private String companyCode; | |
54 | + /**备用字段1*/ | |
55 | + @Excel(name = "备用字段1", width = 15) | |
56 | + @ApiModelProperty(value = "备用字段1") | |
57 | + private String userdef1; | |
58 | + /**备用字段2*/ | |
59 | + @Excel(name = "备用字段2", width = 15) | |
60 | + @ApiModelProperty(value = "备用字段2") | |
61 | + private String userdef2; | |
62 | + /**备用字段3*/ | |
63 | + @Excel(name = "备用字段3", width = 15) | |
64 | + @ApiModelProperty(value = "备用字段3") | |
65 | + private String userdef3; | |
66 | + /**创建人*/ | |
67 | + @ApiModelProperty(value = "创建人") | |
68 | + private String createBy; | |
69 | + /**创建日期*/ | |
70 | + @ApiModelProperty(value = "创建日期") | |
71 | + private Date createTime; | |
72 | + /**更新人*/ | |
73 | + @ApiModelProperty(value = "更新人") | |
74 | + private String updateBy; | |
75 | + /**更新日期*/ | |
76 | + @ApiModelProperty(value = "更新日期") | |
77 | + private Date updateTime; | |
78 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/receiptType/mapper/ReceiptTypeMapper.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.receiptType.mapper; | |
2 | + | |
3 | +import java.util.List; | |
4 | + | |
5 | +import org.apache.ibatis.annotations.Param; | |
6 | +import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |
7 | +import org.jeecg.modules.wms.config.receiptType.entity.ReceiptType; | |
8 | + | |
9 | +/** | |
10 | + * @Description: 入库单类型 | |
11 | + * @Author: jeecg-boot | |
12 | + * @Date: 2022-11-01 | |
13 | + * @Version: V1.0 | |
14 | + */ | |
15 | +public interface ReceiptTypeMapper extends BaseMapper<ReceiptType> { | |
16 | + | |
17 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/receiptType/mapper/xml/ReceiptTypeMapper.xml
0 → 100644
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/receiptType/service/IReceiptTypeService.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.receiptType.service; | |
2 | + | |
3 | +import com.baomidou.mybatisplus.extension.service.IService; | |
4 | +import org.jeecg.modules.wms.config.receiptType.entity.ReceiptType; | |
5 | + | |
6 | +/** | |
7 | + * @Description: 入库单类型 | |
8 | + * @Author: jeecg-boot | |
9 | + * @Date: 2022-11-01 | |
10 | + * @Version: V1.0 | |
11 | + */ | |
12 | +public interface IReceiptTypeService extends IService<ReceiptType> { | |
13 | + | |
14 | +} | |
... | ... |
jeecg-boot-master/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/wms/config/receiptType/service/impl/ReceiptTypeServiceImpl.java
0 → 100644
1 | +package org.jeecg.modules.wms.config.receiptType.service.impl; | |
2 | + | |
3 | +import org.jeecg.modules.wms.config.receiptType.entity.ReceiptType; | |
4 | +import org.jeecg.modules.wms.config.receiptType.mapper.ReceiptTypeMapper; | |
5 | +import org.jeecg.modules.wms.config.receiptType.service.IReceiptTypeService; | |
6 | +import org.springframework.stereotype.Service; | |
7 | + | |
8 | +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | |
9 | + | |
10 | +/** | |
11 | + * @Description: 入库单类型 | |
12 | + * @Author: jeecg-boot | |
13 | + * @Date: 2022-11-01 | |
14 | + * @Version: V1.0 | |
15 | + */ | |
16 | +@Service | |
17 | +public class ReceiptTypeServiceImpl extends ServiceImpl<ReceiptTypeMapper, ReceiptType> implements IReceiptTypeService { | |
18 | + | |
19 | +} | |
... | ... |