ol-base-components 2.8.19 → 2.8.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,81 @@
1
+ name: CI/CD Pipeline
2
+
3
+ on:
4
+ push:
5
+ branches: [ main, master ]
6
+ tags: [ 'v*' ]
7
+ pull_request:
8
+ branches: [ main, master ]
9
+
10
+ jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+
14
+ strategy:
15
+ matrix:
16
+ node-version: [16.x, 18.x, 20.x]
17
+
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v4
21
+
22
+ - name: Setup Node.js ${{ matrix.node-version }}
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: ${{ matrix.node-version }}
26
+ cache: 'npm'
27
+
28
+ - name: Install dependencies
29
+ run: npm ci
30
+
31
+ - name: Run linter
32
+ run: npm run lint
33
+
34
+ - name: Build project
35
+ run: npm run build
36
+
37
+ - name: Upload build artifacts
38
+ uses: actions/upload-artifact@v4
39
+ with:
40
+ name: build-files-${{ matrix.node-version }}
41
+ path: dist/
42
+
43
+ publish:
44
+ needs: test
45
+ runs-on: ubuntu-latest
46
+ if: startsWith(github.ref, 'refs/tags/v')
47
+
48
+ steps:
49
+ - name: Checkout code
50
+ uses: actions/checkout@v4
51
+
52
+ - name: Setup Node.js
53
+ uses: actions/setup-node@v4
54
+ with:
55
+ node-version: '18'
56
+ registry-url: 'https://registry.npmjs.org'
57
+
58
+ - name: Install dependencies
59
+ run: npm ci
60
+
61
+ - name: Build project
62
+ run: npm run build
63
+
64
+ - name: Publish to npm
65
+ run: npm publish
66
+ env:
67
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
68
+
69
+ - name: Create GitHub Release
70
+ uses: actions/create-release@v1
71
+ env:
72
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73
+ with:
74
+ tag_name: ${{ github.ref }}
75
+ release_name: Release ${{ github.ref }}
76
+ body: |
77
+ ## Changes in this Release
78
+ - Automated release via GitHub Actions
79
+ - Built and tested on Node.js 18
80
+ draft: false
81
+ prerelease: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ol-base-components",
3
- "version": "2.8.19",
3
+ "version": "2.8.20",
4
4
  "private": false,
5
5
  "main": "src/package/index.js",
6
6
  "bin": {
package/src/api/run.js CHANGED
@@ -141,8 +141,6 @@ function cleanSummary(summary) {
141
141
  }
142
142
  // 生成API模块
143
143
  const generateApiModules = swagger => {
144
- console.log(2222, swagger);
145
-
146
144
  const { tags, paths } = swagger;
147
145
  const apiModules = {};
148
146
  // 初始化模块对象
@@ -185,7 +185,7 @@ const vue2Template = (moduleName, config = {}) => {
185
185
  Author:
186
186
  -->
187
187
  <template>
188
- <div>
188
+ <div class="ol-container">
189
189
  <ol-search
190
190
  :url="swaggerUrl.${pageUrlKey}"
191
191
  :form-search-data="formSearchData"
@@ -0,0 +1,7 @@
1
+ import OlNumberRange from "./src/index.vue";
2
+
3
+ OlNumberRange.install = function (Vue) {
4
+ Vue.component("ol-search ", OlNumberRange);
5
+ };
6
+
7
+ export default OlNumberRange;
@@ -0,0 +1,351 @@
1
+ <template>
2
+ <div class="number-range-picker" :class="{ 'is-disabled': disabled }">
3
+ <el-input
4
+ ref="startInput"
5
+ v-model="startValue"
6
+ type="number"
7
+ :placeholder="startPlaceholder"
8
+ :min="min"
9
+ :max="max"
10
+ :disabled="disabled"
11
+ class="range-input start-input"
12
+ @blur="handleStartBlur"
13
+ @input="handleStartInput"
14
+ @keyup.enter.native="handleStartBlur"
15
+ />
16
+ <span class="range-separator">-</span>
17
+ <el-input
18
+ ref="endInput"
19
+ v-model="endValue"
20
+ type="number"
21
+ :placeholder="endPlaceholder"
22
+ :min="min"
23
+ :max="max"
24
+ :disabled="disabled"
25
+ class="range-input end-input"
26
+ @blur="handleEndBlur"
27
+ @input="handleEndInput"
28
+ @keyup.enter.native="handleEndBlur"
29
+ />
30
+ <i
31
+ v-if="clearable && !disabled && (startValue || endValue)"
32
+ class="el-icon-circle-close clear-icon"
33
+ @click="handleClear"
34
+ />
35
+ </div>
36
+ </template>
37
+
38
+ <script>
39
+ export default {
40
+ name: "NumberRangePicker",
41
+ props: {
42
+ value: {
43
+ type: Array,
44
+ default: () => [null, null],
45
+ },
46
+ min: {
47
+ type: Number,
48
+ default: 0,
49
+ },
50
+ max: {
51
+ type: Number,
52
+ default: 999999,
53
+ },
54
+ startPlaceholder: {
55
+ type: String,
56
+ default: "开始数字",
57
+ },
58
+ endPlaceholder: {
59
+ type: String,
60
+ default: "结束数字",
61
+ },
62
+ clearable: {
63
+ type: Boolean,
64
+ default: true,
65
+ },
66
+ // 是否启用默认填充最大最小值
67
+ autoFillDefault: {
68
+ type: Boolean,
69
+ default: false,
70
+ },
71
+ disabled: {
72
+ type: Boolean,
73
+ default: false,
74
+ },
75
+ // 数值精度,类似el-input-Number组件precision
76
+ precision: {
77
+ type: Number,
78
+ default: 0,
79
+ validator(val) {
80
+ return val === undefined || (Number.isInteger(val) && val >= 0);
81
+ },
82
+ },
83
+ },
84
+ data() {
85
+ return {
86
+ startValue: null,
87
+ endValue: null,
88
+ };
89
+ },
90
+ watch: {
91
+ value: {
92
+ handler(newVal) {
93
+ if (Array.isArray(newVal) && newVal.length === 2) {
94
+ this.startValue =
95
+ newVal[0] !== null && newVal[0] !== undefined
96
+ ? this.formatPrecision(Number(newVal[0]))
97
+ : null;
98
+ this.endValue =
99
+ newVal[1] !== null && newVal[1] !== undefined
100
+ ? this.formatPrecision(Number(newVal[1]))
101
+ : null;
102
+ } else {
103
+ this.startValue = null;
104
+ this.endValue = null;
105
+ }
106
+ },
107
+ immediate: true,
108
+ deep: true,
109
+ },
110
+ },
111
+ methods: {
112
+ // 格式化精度
113
+ formatPrecision(num) {
114
+ if (this.precision !== undefined && this.precision !== null) {
115
+ return Number(Number(num).toFixed(this.precision));
116
+ }
117
+ return num;
118
+ },
119
+ // 处理起始值输入
120
+ handleStartInput(val) {
121
+ if (this.disabled) return;
122
+ if (val === "" || val === null || val === undefined) {
123
+ this.startValue = null;
124
+ } else {
125
+ let num = Number(val);
126
+ // 限制在 min 和 max 范围内
127
+ if (num < this.min) {
128
+ num = this.min;
129
+ } else if (num > this.max) {
130
+ num = this.max;
131
+ }
132
+ // 应用精度
133
+ this.startValue = this.formatPrecision(num);
134
+ }
135
+ this.emitValue();
136
+ },
137
+ // 处理结束值输入
138
+ handleEndInput(val) {
139
+ if (this.disabled) return;
140
+ if (val === "" || val === null || val === undefined) {
141
+ this.endValue = null;
142
+ } else {
143
+ let num = Number(val);
144
+ // 限制在 min 和 max 范围内
145
+ if (num < this.min) {
146
+ num = this.min;
147
+ } else if (num > this.max) {
148
+ num = this.max;
149
+ }
150
+ // 应用精度
151
+ this.endValue = this.formatPrecision(num);
152
+ }
153
+ this.emitValue();
154
+ },
155
+ // 处理起始值失焦
156
+ handleStartBlur() {
157
+ if (this.disabled) return;
158
+ // 只有当启用自动填充默认值,且只输入了起始值,结束值才默认为最大值
159
+ if (this.autoFillDefault && this.startValue !== null && this.endValue === null) {
160
+ this.endValue = this.formatPrecision(this.max);
161
+ }
162
+ // 应用精度
163
+ if (this.startValue !== null) {
164
+ this.startValue = this.formatPrecision(this.startValue);
165
+ }
166
+ // 验证范围
167
+ this.validateRange();
168
+ this.emitValue();
169
+ },
170
+ // 处理结束值失焦
171
+ handleEndBlur() {
172
+ if (this.disabled) return;
173
+ // 只有当启用自动填充默认值,且只输入了结束值,起始值才默认为最小值
174
+ if (this.autoFillDefault && this.endValue !== null && this.startValue === null) {
175
+ this.startValue = this.formatPrecision(this.min);
176
+ }
177
+ // 应用精度
178
+ if (this.endValue !== null) {
179
+ this.endValue = this.formatPrecision(this.endValue);
180
+ }
181
+ // 验证范围
182
+ this.validateRange();
183
+ this.emitValue();
184
+ },
185
+ // 验证范围
186
+ validateRange() {
187
+ if (this.startValue !== null && this.endValue !== null) {
188
+ // 确保起始值不大于结束值
189
+ if (this.startValue > this.endValue) {
190
+ // 如果起始值大于结束值,交换它们
191
+ const temp = this.startValue;
192
+ this.startValue = this.formatPrecision(this.endValue);
193
+ this.endValue = this.formatPrecision(temp);
194
+ }
195
+ }
196
+ },
197
+ // 清空
198
+ handleClear() {
199
+ if (this.disabled) return;
200
+ this.startValue = null;
201
+ this.endValue = null;
202
+ this.emitValue();
203
+ },
204
+ // 触发 v-model 更新
205
+ emitValue() {
206
+ const result = [this.startValue, this.endValue];
207
+ this.$emit("input", result);
208
+ this.$emit("change", result);
209
+ },
210
+ },
211
+ };
212
+ </script>
213
+
214
+ <style lang="scss" scoped>
215
+ .number-range-picker {
216
+ position: relative;
217
+ display: inline-flex;
218
+ align-items: center;
219
+ width: 100%;
220
+ background-color: #fff;
221
+ border: 1px solid #dcdfe6;
222
+ border-radius: 4px;
223
+ transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
224
+ padding: 0 30px 0 10px;
225
+ box-sizing: border-box;
226
+ height: 32px;
227
+ line-height: 32px;
228
+
229
+ &:hover {
230
+ border-color: #c0c4cc;
231
+ }
232
+
233
+ &:focus-within {
234
+ border-color: #409eff;
235
+ outline: none;
236
+ }
237
+
238
+ .range-input {
239
+ flex: 1;
240
+ border: none;
241
+ background: transparent;
242
+ padding: 0;
243
+ height: 100%;
244
+ line-height: inherit;
245
+
246
+ ::v-deep .el-input__inner {
247
+ border: none;
248
+ padding: 0;
249
+ height: 100%;
250
+ line-height: inherit;
251
+ background: transparent;
252
+ text-align: center;
253
+ font-size: 14px;
254
+ color: #606266;
255
+
256
+ &:focus {
257
+ border: none;
258
+ outline: none;
259
+ }
260
+
261
+ &::placeholder {
262
+ color: #c0c4cc;
263
+ }
264
+ }
265
+
266
+ ::v-deep .el-input__inner::-webkit-outer-spin-button,
267
+ ::v-deep .el-input__inner::-webkit-inner-spin-button {
268
+ -webkit-appearance: none;
269
+ margin: 0;
270
+ }
271
+
272
+ ::v-deep .el-input__inner[type="number"] {
273
+ -moz-appearance: textfield;
274
+ appearance: textfield;
275
+ }
276
+ }
277
+
278
+ .start-input {
279
+ ::v-deep .el-input__inner {
280
+ text-align: center;
281
+ }
282
+ }
283
+
284
+ .end-input {
285
+ ::v-deep .el-input__inner {
286
+ text-align: center;
287
+ }
288
+ }
289
+
290
+ .range-separator {
291
+ flex-shrink: 0;
292
+ padding: 0 8px;
293
+ color: #c0c4cc;
294
+ font-size: 14px;
295
+ line-height: 1;
296
+ }
297
+
298
+ .clear-icon {
299
+ position: absolute;
300
+ right: 8px;
301
+ top: 50%;
302
+ transform: translateY(-50%);
303
+ cursor: pointer;
304
+ color: #c0c4cc;
305
+ font-size: 14px;
306
+ transition: color 0.2s;
307
+ z-index: 1;
308
+
309
+ &:hover {
310
+ color: #909399;
311
+ }
312
+ }
313
+ }
314
+
315
+ // 小尺寸适配
316
+ ::v-deep .el-form-item--small .number-range-picker {
317
+ padding: 0 30px 0 10px;
318
+ height: 28px;
319
+ line-height: 28px;
320
+
321
+ .range-input {
322
+ height: 28px;
323
+ line-height: 28px;
324
+
325
+ ::v-deep .el-input__inner {
326
+ height: 28px;
327
+ line-height: 28px;
328
+ font-size: 13px;
329
+ }
330
+ }
331
+ }
332
+
333
+ // 禁用状态
334
+ .number-range-picker.is-disabled {
335
+ background-color: #f5f7fa;
336
+ border-color: #e4e7ed;
337
+ cursor: not-allowed;
338
+
339
+ .range-input {
340
+ ::v-deep .el-input__inner {
341
+ background-color: #f5f7fa;
342
+ color: #c0c4cc;
343
+ cursor: not-allowed;
344
+ }
345
+ }
346
+
347
+ .clear-icon {
348
+ display: none;
349
+ }
350
+ }
351
+ </style>
@@ -1,477 +0,0 @@
1
- /**
2
- * ⚠️ 警告:此文件由脚本自动生成,请勿手动编辑!
3
- * �� swagger更新后请重新运行生成脚本
4
- * 服务地址:http://220.179.249.140:20024
5
- *
6
- */
7
-
8
- // AGV接口
9
- export const Agv = {
10
- postApiOpenAgvAGVcallback: "/api/open/agv/AGV-callback", //post Agv任务完成反馈
11
- };
12
-
13
- // WMS接口
14
- export const Mes = {
15
- postApiOpenMesBorrowPush: "/api/open/Mes/BorrowPush", //post
16
- postApiOpenMesDisassembleStockIn: "/api/open/Mes/DisassembleStockIn", //post 拆解入库
17
- postApiOpenMesScrapStockIn: "/api/open/Mes/ScrapStockIn", //post 报废(隔离)入库
18
- postApiOpenMesReturnStockIn: "/api/open/Mes/ReturnStockIn", //post 退库入库
19
- };
20
-
21
- // WCS接口
22
- export const Wcs = {
23
- postApiWcsNoticeCompleteTask: "/api/Wcs/NoticeCompleteTask", //post WCS任务完成反馈wcsapplyfourlocation
24
- postApiWcsApplyInTask: "/api/Wcs/ApplyInTask", //post 申请入库任务
25
- postApiWcsApplyFinalLocation: "/api/Wcs/ApplyFinalLocation", //post 申请最终库位
26
- postApiWcsApplyMoveStock: "/api/Wcs/ApplyMoveStock", //post 申请移库
27
- postApiWcsNoticeEntranceError: "/api/Wcs/NoticeEntranceError", //post 异常消息推送
28
- postApiWcsRemoveShelf: "/api/Wcs/RemoveShelf", //post 申请移库
29
- };
30
-
31
- // 接口信息管理
32
- export const ApiDescription = {
33
- getApidescription: "/api/app/api-description/api-description", //get 获取接口信息
34
- };
35
-
36
- // 审计日志接口管理
37
- export const AuditLogging = {
38
- getAuditloggingAuditlogpages: "/api/app/audit-logging/audit-log-pages", //get 系统接口日志
39
- getAuditloggingAuditlogactionByAuditId: "/api/app/audit-logging/audit-log-action", //get 系统接口明细日志
40
- getAuditloggingAuditlogactionByAuditIdCompleteUrl: "/api/app/audit-logging/audit-log-action/{auditId}", //get 系统接口明细日志
41
- postAuditloggingExportauditlog: "/api/app/audit-logging/export-audit-log", //post 审计接口导出
42
- };
43
-
44
- // 配置服务接口
45
- export const Config = {
46
- getConfigBackgroundworkerconfigpages: "/api/app/config/background-worker-config-pages", //get 获取后台工作配置分页信息
47
- postConfigChangedbackgroundworkerconfigenabled: "/api/app/config/changed-background-worker-config-enabled", //post 改变后台工作任务启用状态
48
- };
49
-
50
- // 普通入库
51
- export const PdaStockInNew = {
52
- getPdastockinnewValitecargolocationv2: "/api/app/pda-stock-in-new/valite-cargo-location-v2", //get 校验容器号 0:母托盘 1:平库库位 2.子托盘
53
- postPdastockinnewValitebinddata: "/api/app/pda-stock-in-new/valite-bind-data", //post 校验码盘数据 1.带物料的子托 2.入库单里的物料
54
- postPdastockinnewBindplatev2: "/api/app/pda-stock-in-new/bind-plate-v2", //post 绑盘 普通入库
55
- };
56
-
57
- // 维保入库 3.0
58
- export const PdaStockInV3 = {
59
- getPdastockinv3Valitecargolocation: "/api/app/pda-stock-in-v3/valite-cargo-location", //get 校验容器号 0:母托盘 1:平库库位 2.子托盘
60
- postPdastockinv3Valitebinddatav3: "/api/app/pda-stock-in-v3/valite-bind-data-v3", //post 校验物料 子托盘 --航发二维码json,条码pid3 --wms二维码json
61
- postPdastockinv3Bindplatev2: "/api/app/pda-stock-in-v3/bind-plate-v2", //post 组盘,借用、油封、定检(送检)、班检、维保
62
- };
63
-
64
- // 库存接口管理
65
- export const PdaStockOutV3 = {
66
- postPdastockoutv3Pdastockout: "/api/app/pda-stock-out-v3/pda-stock-out", //post pda出库 维保 送检 定检 借用 油封
67
- postPdastockoutv3PickdMStock: "/api/app/pda-stock-out-v3/pick-dMStock", //post pda出库拣选 拍照
68
- getPdastockoutv3Productclasstype: "/api/app/pda-stock-out-v3/product-class-type", //get 物料大类
69
- getPdastockoutv3MrStatuse: "/api/app/pda-stock-out-v3/m-rStatuse", //get 维保状态
70
- getPdastockoutv3YlPhotopage: "/api/app/pda-stock-out-v3/y-lPhoto-page", //get 获取余料图片
71
- getPdastockoutv3Searchordernumbs: "/api/app/pda-stock-out-v3/search-order-numbs", //get 查询单据拣选情况
72
- postPdastockoutv3Productphoto: "/api/app/pda-stock-out-v3/product-photo", //post 物料拍照
73
- getPdastockoutv3Productphoto: "/api/app/pda-stock-out-v3/product-photo", //get 获取物料图片
74
- };
75
-
76
- // 打印机
77
- export const Print = {
78
- getPrintPrintservername: "/api/app/print/print-server-name", //get 获取打印机名称列表
79
- postPrintSetprintcofing: "/api/app/print/set-print-cofing", //post 设置默认打印机
80
- postPrintPrintpdfasyc: "/api/app/print/print-pdf-asyc", //post 打印pdf
81
- getPrintPrintdMStockdetaillist: "/api/app/print/print-dMStock-detail-list", //get 出库单打印列表
82
- };
83
-
84
- // 物料管理
85
- export const Product = {
86
- postProductOwner: "/api/app/product/owner", //post 创建货主
87
- postProductExportowner: "/api/app/product/export-owner", //post 货主信息导出
88
- deleteProductOwnerByOwnerId: "/api/app/product/owner", //delete 删除货主信息
89
- deleteProductOwnerByOwnerIdCompleteUrl: "/api/app/product/owner/{OwnerId}", //delete 删除货主信息
90
- putProductOwnerByOwnerId: "/api/app/product/owner", //put 编辑货主信息
91
- putProductOwnerByOwnerIdCompleteUrl: "/api/app/product/owner/{OwnerId}", //put 编辑货主信息
92
- getProductOwnerpages: "/api/app/product/owner-pages", //get 获取货主分页数据信息
93
- getProductOwnerselect: "/api/app/product/owner-select", //get 获取货主下拉框数据
94
- getProductDicbyunit: "/api/app/product/dic-by-unit", //get 获取单位字典
95
- getProductOwnerbyidByOwnerId: "/api/app/product/owner-by-id", //get 根据ID获取单条数据
96
- getProductOwnerbyidByOwnerIdCompleteUrl: "/api/app/product/owner-by-id/{OwnerId}", //get 根据ID获取单条数据
97
- postProductProductclass: "/api/app/product/product-class", //post 创建物料分类
98
- postProductExportproductclass: "/api/app/product/export-product-class", //post 物料分类信息导出
99
- deleteProductProductclassByProductClassId: "/api/app/product/product-class", //delete 删除物料分类信息
100
- deleteProductProductclassByProductClassIdCompleteUrl: "/api/app/product/product-class/{ProductClassId}", //delete 删除物料分类信息
101
- putProductProductclassByProductClassId: "/api/app/product/product-class", //put 编辑物料分类信息
102
- putProductProductclassByProductClassIdCompleteUrl: "/api/app/product/product-class/{ProductClassId}", //put 编辑物料分类信息
103
- getProductProductclasspagestree: "/api/app/product/product-class-pages-tree", //get 获取物料分类分页数据信息-树状返回值
104
- getProductProductclasspages: "/api/app/product/product-class-pages", //get 获取物料分类分页数据信息
105
- getProductProductclassselect: "/api/app/product/product-class-select", //get 获取物料分类下拉框数据
106
- getProductProductclasssearch: "/api/app/product/product-class-search", //get 获取物料分类下拉框数据
107
- getProductProductclasssublevel: "/api/app/product/product-class-sub-level", //get 根据上级物料分类ID 获取子级物料分类等级
108
- getProductProductclassbyidByProductClassId: "/api/app/product/product-class-by-id", //get 根据ID获取单条数据
109
- getProductProductclassbyidByProductClassIdCompleteUrl: "/api/app/product/product-class-by-id/{ProductClassId}", //get 根据ID获取单条数据
110
- postProductExportproductowner: "/api/app/product/export-product-owner", //post 物料与货主关系信息导出
111
- deleteProductProductownerByProductOwnerId: "/api/app/product/product-owner", //delete 删除物料与货主关系信息
112
- deleteProductProductownerByProductOwnerIdCompleteUrl: "/api/app/product/product-owner/{ProductOwnerId}", //delete 删除物料与货主关系信息
113
- getProductProductownerbyidByProductOwnerId: "/api/app/product/product-owner-by-id", //get 根据ID获取单条数据
114
- getProductProductownerbyidByProductOwnerIdCompleteUrl: "/api/app/product/product-owner-by-id/{ProductOwnerId}", //get 根据ID获取单条数据
115
- getProductByowneridByOwnerId: "/api/app/product/by-owner-id", //get 根据货主获取货主相关所有物料数据
116
- getProductByowneridByOwnerIdCompleteUrl: "/api/app/product/by-owner-id/{OwnerId}", //get 根据货主获取货主相关所有物料数据
117
- getProductByproductidByProductId: "/api/app/product/by-product-id", //get 根据物料获取货主相关所有货主数据
118
- getProductByproductidByProductIdCompleteUrl: "/api/app/product/by-product-id/{ProductId}", //get 根据物料获取货主相关所有货主数据
119
- getProductProductownerbyid: "/api/app/product/product-owner-by-id", //get 根据物料ID和货主ID获取单条数据
120
- getProductProductpagessort: "/api/app/product/product-pages-sort", //get 获取产品分页信息数据-带排序
121
- postProductGetproductprints: "/api/app/product/get-product-prints", //post 获取打印信息
122
- getProductProductpages: "/api/app/product/product-pages", //get 获取产品分页信息数据
123
- postProduct: "/api/app/product/product", //post 创建产品
124
- putProductByProductId: "/api/app/product/product", //put 编辑产品
125
- putProductByProductIdCompleteUrl: "/api/app/product/product/{productId}", //put 编辑产品
126
- postProductDeleteproduct: "/api/app/product/delete-product", //post 删除产品
127
- getProductProductbyidByProductId: "/api/app/product/product-by-id", //get 根据ID获取单条数据
128
- getProductProductbyidByProductIdCompleteUrl: "/api/app/product/product-by-id/{ProductId}", //get 根据ID获取单条数据
129
- getProductProductselect: "/api/app/product/product-select", //get 获取物料下拉框数据
130
- postProductTestproduct202507120001: "/api/app/product/test-product202507120001", //post 测试刷pid1
131
- postProductExportstock: "/api/app/product/export-stock", //post 物料信息导出
132
- postProductImportproduct: "/api/app/product/import-product", //post 物料信息导入模板
133
- postProductDownproduct: "/api/app/product/down-product", //post 物料导入模板下载
134
- getProductProductregularpages: "/api/app/product/product-regular-pages", //get 获取货主分页数据信息
135
- postProductProductregular: "/api/app/product/product-regular", //post 新增零件正则表达式
136
- putProductProductregular: "/api/app/product/product-regular", //put 更新零件正则表达式
137
- deleteProductProductregularByProductRegularId: "/api/app/product/product-regular", //delete 删除零件正则表达式
138
- deleteProductProductregularByProductRegularIdCompleteUrl: "/api/app/product/product-regular/{ProductRegularId}", //delete 删除零件正则表达式
139
- postProductProductchecktype: "/api/app/product/product-check-type", //post 检测零件类别
140
- postProductMeteringclass: "/api/app/product/metering-class", //post 创建计量类别
141
- postProductExportmeteringclass: "/api/app/product/export-metering-class", //post 计量类别信息导出
142
- deleteProductMeteringclassByProductClassId: "/api/app/product/metering-class", //delete 删除计量类别信息
143
- deleteProductMeteringclassByProductClassIdCompleteUrl: "/api/app/product/metering-class/{ProductClassId}", //delete 删除计量类别信息
144
- putProductMeteringclassByProductClassId: "/api/app/product/metering-class", //put 编辑计量类别信息
145
- putProductMeteringclassByProductClassIdCompleteUrl: "/api/app/product/metering-class/{ProductClassId}", //put 编辑计量类别信息
146
- getProductMeteringclasspagestree: "/api/app/product/metering-class-pages-tree", //get 获取计量类别分页数据信息-树状返回值
147
- getProductMeteringclasspages: "/api/app/product/metering-class-pages", //get 获取计量类别分页数据信息
148
- getProductMeteringclassselect: "/api/app/product/metering-class-select", //get 获取计量类别下拉框数据
149
- getProductMeteringclasssearch: "/api/app/product/metering-class-search", //get 获取计量类别下拉框数据
150
- getProductMeteringclasssublevel: "/api/app/product/metering-class-sub-level", //get 根据上级计量类别ID 获取子级计量类别等级
151
- getProductMeteringclassbyidByProductClassId: "/api/app/product/metering-class-by-id", //get 根据ID获取单条数据
152
- getProductMeteringclassbyidByProductClassIdCompleteUrl: "/api/app/product/metering-class-by-id/{ProductClassId}", //get 根据ID获取单条数据
153
- getProductProducttablenumberpages: "/api/app/product/product-table-number-pages", //get
154
- postProductProducttablenumber: "/api/app/product/product-table-number", //post 创建零件台份信息
155
- putProductProducttablenumberById: "/api/app/product/product-table-number", //put 更新适航批
156
- putProductProducttablenumberByIdCompleteUrl: "/api/app/product/product-table-number/{Id}", //put 更新适航批
157
- deleteProductProducttablenumberById: "/api/app/product/product-table-number", //delete 删除适航批
158
- deleteProductProducttablenumberByIdCompleteUrl: "/api/app/product/product-table-number/{Id}", //delete 删除适航批
159
- putProductProducttablenumberstock: "/api/app/product/product-table-number-stock", //put 根据台份更新适航批库存
160
- };
161
-
162
- // 公共聚合模型接口
163
- export const PublicAggregate = {
164
- getPublicaggregateDatatemplatepages: "/api/app/public-aggregate/data-template-pages", //get 获取数据模板分页数据信息
165
- postPublicaggregateDatatemplate: "/api/app/public-aggregate/data-template", //post 创建数据模板数据
166
- postPublicaggregateUploaddatatemplate: "/api/app/public-aggregate/upload-data-template", //post 上传数据模板
167
- getPublicaggregateDowndatatemplateByDataTemplateId: "/api/app/public-aggregate/down-data-template", //get 下载模板
168
- getPublicaggregateDowndatatemplateByDataTemplateIdCompleteUrl: "/api/app/public-aggregate/down-data-template/{dataTemplateId}", //get 下载模板
169
- putPublicaggregateDatatemplateByDataTemplateId: "/api/app/public-aggregate/data-template", //put 编辑数据模板
170
- putPublicaggregateDatatemplateByDataTemplateIdCompleteUrl: "/api/app/public-aggregate/data-template/{dataTemplateId}", //put 编辑数据模板
171
- deletePublicaggregateDatatemplateByDataTemplateId: "/api/app/public-aggregate/data-template", //delete 删除数据模板
172
- deletePublicaggregateDatatemplateByDataTemplateIdCompleteUrl: "/api/app/public-aggregate/data-template/{dataTemplateId}", //delete 删除数据模板
173
- getPublicaggregateDictionaries: "/api/app/public-aggregate/dictionaries", //get
174
- postPublicaggregateDictionaries: "/api/app/public-aggregate/dictionaries", //post 创建字典数据
175
- postPublicaggregateDic: "/api/app/public-aggregate/dic", //post
176
- deletePublicaggregateDictionariesByDictionariesId: "/api/app/public-aggregate/dictionaries", //delete 删除字典数据
177
- deletePublicaggregateDictionariesByDictionariesIdCompleteUrl: "/api/app/public-aggregate/dictionaries/{dictionariesId}", //delete 删除字典数据
178
- putPublicaggregateDictionariesByDictionariesId: "/api/app/public-aggregate/dictionaries", //put 编辑数据字典
179
- putPublicaggregateDictionariesByDictionariesIdCompleteUrl: "/api/app/public-aggregate/dictionaries/{DictionariesId}", //put 编辑数据字典
180
- getPublicaggregateDcibyid: "/api/app/public-aggregate/dci-by-id", //get
181
- getPublicaggregateDicbyparentid: "/api/app/public-aggregate/dic-by-parent-id", //get
182
- };
183
-
184
- // 公共枚举接口
185
- export const PublicEnum = {
186
- getPublicenumEnums: "/api/app/public-enum/enums", //get 获取所有枚举信息
187
- };
188
-
189
- // 移库相关接口
190
- export const Relocation = {
191
- getRelocationRelocationpages: "/api/app/relocation/relocation-pages", //get 获取移库单分页
192
- getRelocationRelocationdetailpages: "/api/app/relocation/relocation-detail-pages", //get 获取移库单明细的分页
193
- getRelocationRelocationrecordpages: "/api/app/relocation/relocation-record-pages", //get 获取移库记录的分页
194
- postRelocationJudgerelocationstock: "/api/app/relocation/judge-relocation-stock", //post 判断库存是否可以生成移库明细
195
- getRelocationCreatrelocation: "/api/app/relocation/creat-relocation", //get 插入移库单
196
- postRelocationCreatrelocationdetail: "/api/app/relocation/creat-relocation-detail", //post 插入移库单明细
197
- getRelocationMovebilltypeenumvalue: "/api/app/relocation/move-bill-type-enum-value", //get 单据移动类型(人工\自动)
198
- getRelocationMovetypeenumvalue: "/api/app/relocation/move-type-enum-value", //get 移动类型(移入,移出,平移)
199
- getRelocationMovebillstatevalue: "/api/app/relocation/move-bill-state-value", //get 单据所处状态(等待,成功,取消)
200
- getRelocationStagingsvalue: "/api/app/relocation/stagings-value", //get 获取拣选台
201
- postRelocationDownrelocationtask: "/api/app/relocation/down-relocation-task", //post 下达任务 通过明细下达任务
202
- postRelocationDeletarelocation: "/api/app/relocation/deleta-relocation", //post
203
- deleteRelocationRelocationdetail: "/api/app/relocation/relocation-detail", //delete 单条删除
204
- postRelocationExportrelocationrecord: "/api/app/relocation/export-relocation-record", //post
205
- postRelocationExportrelocationtemplet: "/api/app/relocation/export-relocation-templet", //post 导出模板
206
- postRelocationExportinrelocationdata: "/api/app/relocation/export-in-relocation-data", //post
207
- postRelocationCreatrelocationdata: "/api/app/relocation/creat-relocation-data", //post
208
- };
209
-
210
- // 报表接口
211
- export const Report = {
212
- getReportStowagecargolocationreportinfos: "/api/app/report/stowage-cargo-location-report-infos", //get 获取集货信息
213
- getReportDeliverreportinfos: "/api/app/report/deliver-report-infos", //get 获取
214
- postReportExportwcsequipmentstatistic: "/api/app/report/export-wcs-equip-ment-statistic", //post 导出
215
- getReportWcsequipmentstatistic: "/api/app/report/wcs-equip-ment-statistic", //get wcs效率分析报表
216
- };
217
-
218
- // 库存接口管理
219
- export const Stock = {
220
- postStockGetproductprints: "/api/app/stock/get-product-prints", //post 获取打印信息
221
- getStockPagelistsort: "/api/app/stock/page-list-sort", //get 获取库存分页带排序
222
- getStockStockpages: "/api/app/stock/stock-pages", //get 获取库存分页数据信息
223
- getStockProductstockpages: "/api/app/stock/product-stock-pages", //get 物料库存统计
224
- postStockExportprostock: "/api/app/stock/export-pro-stock", //post 物料库存统计导出
225
- getStockStockearlywarningpages: "/api/app/stock/stock-early-warning-pages", //get 库存预警报表
226
- getStockStockshelflifepages: "/api/app/stock/stock-shelf-life-pages", //get 保质期预警报表
227
- postStockFreezestock: "/api/app/stock/freeze-stock", //post 冻结库存
228
- postStockUnfreezestock: "/api/app/stock/un-freeze-stock", //post 解冻库存
229
- postStockUpdatestockqty: "/api/app/stock/update-stock-qty", //post 修改库存(只能修改收货暂存区的库存)
230
- getStockStockhistorypages: "/api/app/stock/stock-history-pages", //get 获取库存流水分页数据信息
231
- postStockExportstock: "/api/app/stock/export-stock", //post 库存导出
232
- postStockExportstockhistory: "/api/app/stock/export-stock-history", //post 库存导出
233
- getStockStockanomalpages: "/api/app/stock/stock-anomal-pages", //get 获取库存异常分页数据
234
- postStockConfirmanomals: "/api/app/stock/confirm-anomals", //post 确认异常
235
- postStockExportstockinventoryanmaly: "/api/app/stock/export-stock-inventory-anmaly", //post 库存异常导出
236
- getStockAbnormaltype: "/api/app/stock/abnormal-type", //get 获取异常类型下拉框
237
- };
238
-
239
- // 入库相关接口
240
- export const StockIn = {
241
- getStockinStockindetailpages: "/api/app/stock-in/stock-in-detail-pages", //get 获取入库单明细行详情
242
- getStockinStockinpages: "/api/app/stock-in/stock-in-pages", //get 获取入库单单头信息
243
- getStockinStockinbusinesstype: "/api/app/stock-in/stock-in-business-type", //get 获取入库单业务类型下拉接口
244
- getStockinStockinorderstatetype: "/api/app/stock-in/stock-in-order-state-type", //get 获取入库单状态
245
- getStockinWarehouseselect: "/api/app/stock-in/warehouse-select", //get 获取归属仓库下拉
246
- postStockinExportstockin: "/api/app/stock-in/export-stock-in", //post 入库单详情导出
247
- postStockinDownstockintemplate: "/api/app/stock-in/down-stock-in-template", //post 入库单导入模板下载
248
- postStockinDownbatchstocktemplate: "/api/app/stock-in/down-batch-stock-template", //post 入库单批量导入模板下载
249
- postStockinImportstockinold: "/api/app/stock-in/import-stock-in-old", //post 导入入库单
250
- postStockinImportstockin: "/api/app/stock-in/import-stock-in", //post 入库单导入
251
- postStockinDownloadstockinexclemodel: "/api/app/stock-in/download-stock-in-excle-model", //post 入库单导入模板下载
252
- postStockinBatchimportstockin: "/api/app/stock-in/batch-import-stock-in", //post 批量导入入库单
253
- postStockinBuildselfstockin: "/api/app/stock-in/build-self-stock-in", //post 自建入库单
254
- postStockinTempstorestockin: "/api/app/stock-in/temp-store-stock-in", //post 暂存入库单信息
255
- postStockin: "/api/app/stock-in/stock-in", //post 创建入库单
256
- putStockinByStockInId: "/api/app/stock-in/stock-in", //put 更新入库单
257
- putStockinByStockInIdCompleteUrl: "/api/app/stock-in/stock-in/{StockInId}", //put 更新入库单
258
- postStockinUpdatestockindetail: "/api/app/stock-in/update-stock-in-detail", //post 编辑入库单明细
259
- postStockinDeletestockindetail: "/api/app/stock-in/delete-stock-in-detail", //post 删除入库单明细
260
- postStockinConifrmstockins: "/api/app/stock-in/conifrm-stock-ins", //post 确认订单
261
- postStockinDeletestockin: "/api/app/stock-in/delete-stock-in", //post 删除入库单
262
- postStockinDiposestockin: "/api/app/stock-in/dipose-stock-in", //post 手动结束入库单
263
- getStockinProductselect: "/api/app/stock-in/product-select", //get 获取物料信息下拉框
264
- postStockinRandomoutpreposemethod: "/api/app/stock-in/random-out-prepose-method", //post 随机移出前置
265
- getStockinBindrecorddetailpages: "/api/app/stock-in/bind-record-detail-pages", //get 获取码盘记录明细数据
266
- getStockinBindrecordpages: "/api/app/stock-in/bind-record-pages", //get 获取码盘记录汇总数据
267
- getStockinBindcontainerinfo: "/api/app/stock-in/bind-container-info", //get 获取物料详情
268
- postStockinExportbindrecorddetail: "/api/app/stock-in/export-bind-record-detail", //post 码盘记录明细导出
269
- postStockinExportbindrecord: "/api/app/stock-in/export-bind-record", //post 码盘记录汇总导出
270
- postStockinCanclebindrecord: "/api/app/stock-in/cancle-bind-record", //post 撤销码盘
271
- };
272
-
273
- // 出库业务相关接口
274
- export const StockOut = {
275
- getStockoutStockoutpages: "/api/app/stock-out/stock-out-pages", //get 获取出库订单分页数据信息
276
- getStockoutStockoutdetailpages: "/api/app/stock-out/stock-out-detail-pages", //get 获取出库订单明细分页数据信息
277
- postStockoutExportstockout: "/api/app/stock-out/export-stock-out", //post 出库单详情导出
278
- postStockoutImportstockout: "/api/app/stock-out/import-stock-out", //post 导入出库单
279
- postStockoutDownbatchstoctemplate: "/api/app/stock-out/down-batch-stoc-template", //post 出库单批量导入模板下载
280
- postStockoutBatchimportstockout: "/api/app/stock-out/batch-import-stock-out", //post 批量导入出库单
281
- getStockoutStockoutbusinesstype: "/api/app/stock-out/stock-out-business-type", //get 获取出库单业务类型下拉接口
282
- getStockoutStockoutorderstatetype: "/api/app/stock-out/stock-out-order-state-type", //get 获取出库单状态
283
- getStockoutPickstate: "/api/app/stock-out/pick-state", //get 获取拣货单状态
284
- postStockoutBuildselfstockout: "/api/app/stock-out/build-self-stock-out", //post 自建出库单
285
- postStockout: "/api/app/stock-out/stock-out", //post 创建出库单
286
- postStockoutConfirmstockout: "/api/app/stock-out/confirm-stock-out", //post 确认出库单
287
- postStockoutUpdatestockoutdetail: "/api/app/stock-out/update-stock-out-detail", //post 编辑出库单明细
288
- postStockoutDeletestockoutdetail: "/api/app/stock-out/delete-stock-out-detail", //post 删除出库单明细
289
- putStockoutByStockOutId: "/api/app/stock-out/stock-out", //put 更新出库单
290
- putStockoutByStockOutIdCompleteUrl: "/api/app/stock-out/stock-out/{StockOutId}", //put 更新出库单
291
- postStockoutDeletestockout: "/api/app/stock-out/delete-stock-out", //post 删除出库单
292
- postStockoutDiposestockout: "/api/app/stock-out/dipose-stock-out", //post 手动结束
293
- postStockoutRevisepriority: "/api/app/stock-out/revise-priority", //post 优先级维护
294
- postStockoutExportstock: "/api/app/stock-out/export-stock", //post 出库信息导出
295
- postStockoutSetmaxwavecustomers: "/api/app/stock-out/set-max-wave-customers", //post 设置单播最小下发客户数
296
- getStockoutWavepages: "/api/app/stock-out/wave-pages", //get 获取波次 订单分页数据信息
297
- getStockoutWaveoutboundinfopages: "/api/app/stock-out/wave-out-bound-info-pages", //get 分页获取波次出库信息表
298
- getStockoutWavepicktaskpages: "/api/app/stock-out/wave-pick-task-pages", //get 分页获取波次拣选任务信息表
299
- getStockoutWavepickallocationpages: "/api/app/stock-out/wave-pick-allocation-pages", //get 分页获取波次分配任务信息表
300
- postStockoutExportwavepickallocation: "/api/app/stock-out/export-wave-pick-allocation", //post 波次分配任务导出
301
- getStockoutBundlerecordpages: "/api/app/stock-out/bundle-record-pages", //get 获取捆包记录分页
302
- postStockoutExportwave: "/api/app/stock-out/export-wave", //post 波次导出
303
- postStockoutExportwavepick: "/api/app/stock-out/export-wave-pick", //post 拣选任务导出
304
- postStockoutExportbundlerecord: "/api/app/stock-out/export-bundle-record", //post 捆包导出
305
- getStockoutWavepickserialnumberpages: "/api/app/stock-out/wave-pick-serial-number-pages", //get 分页获取拣选物料序列号分页信息
306
- postStockoutExportwavepickserialnumber: "/api/app/stock-out/export-wave-pick-serial-number", //post 拣选物料序列号导出
307
- postStockoutChangeproductserialnumber: "/api/app/stock-out/change-product-serial-number", //post 更改序列号
308
- getStockoutEntrances: "/api/app/stock-out/entrances", //get 获取出库口下拉框
309
- putStockoutEntrance: "/api/app/stock-out/entrance", //put 修改出库口
310
- getStockoutWavesendrecordpages: "/api/app/stock-out/wave-send-record-pages", //get 获取波次发货记录分页
311
- postStockoutExportwavesendrecord: "/api/app/stock-out/export-wave-send-record", //post 波次发货记录导出
312
- getStockoutCargolocationpickjhpages: "/api/app/stock-out/cargo-location-pick-jh-pages", //get 波次业务库存详情
313
- getStockoutWaitjointlabelcodes: "/api/app/stock-out/wait-joint-label-codes", //get 获取待交接捆包箱号
314
- postStockoutAransportconfirm: "/api/app/stock-out/aransport-confirm", //post 运输交接
315
- getStockoutPicklabeloperationrecordpages: "/api/app/stock-out/pick-label-operation-record-pages", //get 获取捆包箱操作日志分页
316
- postStockoutExportpicklabeloperationrecord: "/api/app/stock-out/export-pick-label-operation-record", //post 获取捆包箱操作日志记录
317
- getStockoutPickpages: "/api/app/stock-out/pick-pages", //get 获取拣货单分页记录
318
- postStockoutCargolocationpicksync: "/api/app/stock-out/cargo-location-picksync", //post 波次制单
319
- };
320
-
321
- // 仓库管理
322
- export const Warehouse = {
323
- putWarehouseShipperByShipperId: "/api/app/warehouse/shipper", //put 编辑出货方信息
324
- putWarehouseShipperByShipperIdCompleteUrl: "/api/app/warehouse/shipper/{ShipperId}", //put 编辑出货方信息
325
- deleteWarehouseShipperByShipperId: "/api/app/warehouse/shipper", //delete 删除出货方信息
326
- deleteWarehouseShipperByShipperIdCompleteUrl: "/api/app/warehouse/shipper/{ShipperId}", //delete 删除出货方信息
327
- getWarehouseShipperpages: "/api/app/warehouse/shipper-pages", //get 获取出货方分页数据信息
328
- getWarehouseShipperselect: "/api/app/warehouse/shipper-select", //get 获取出货方下拉框数据
329
- getWarehouseStagingtypeselect: "/api/app/warehouse/staging-type-select", //get 获取工作台下拉框数据
330
- getWarehouseShippertypeselect: "/api/app/warehouse/shipper-type-select", //get 获取出货方下拉框数据
331
- getWarehouseShipperbyidByShipperId: "/api/app/warehouse/shipper-by-id", //get 根据ID获取单条数据
332
- getWarehouseShipperbyidByShipperIdCompleteUrl: "/api/app/warehouse/shipper-by-id/{ShipperId}", //get 根据ID获取单条数据
333
- postWarehouseStaging: "/api/app/warehouse/staging", //post 创建工作台
334
- postWarehouseExportstaging: "/api/app/warehouse/export-staging", //post 工作台信息导出
335
- deleteWarehouseStagingByStagingId: "/api/app/warehouse/staging", //delete 删除工作台信息
336
- deleteWarehouseStagingByStagingIdCompleteUrl: "/api/app/warehouse/staging/{StagingId}", //delete 删除工作台信息
337
- putWarehouseStagingByStagingId: "/api/app/warehouse/staging", //put 编辑工作台信息
338
- putWarehouseStagingByStagingIdCompleteUrl: "/api/app/warehouse/staging/{StagingId}", //put 编辑工作台信息
339
- getWarehouseStagingpages: "/api/app/warehouse/staging-pages", //get 获取工作台分页数据信息
340
- getWarehouseStagingselect: "/api/app/warehouse/staging-select", //get 获取工作台下拉框数据
341
- getWarehouseStagingbyidByStagingId: "/api/app/warehouse/staging-by-id", //get 根据ID获取单条数据
342
- getWarehouseStagingbyidByStagingIdCompleteUrl: "/api/app/warehouse/staging-by-id/{StagingId}", //get 根据ID获取单条数据
343
- postWarehouseUserbindwork: "/api/app/warehouse/user-bind-work", //post 用户绑定工作台
344
- postWarehouseSupplier: "/api/app/warehouse/supplier", //post 创建供应商
345
- postWarehouseExportsupplier: "/api/app/warehouse/export-supplier", //post 供应商信息导出
346
- deleteWarehouseSupplierBySupplierId: "/api/app/warehouse/supplier", //delete 删除供应商信息
347
- deleteWarehouseSupplierBySupplierIdCompleteUrl: "/api/app/warehouse/supplier/{SupplierId}", //delete 删除供应商信息
348
- putWarehouseSupplierBySupplierId: "/api/app/warehouse/supplier", //put 编辑供应商信息
349
- putWarehouseSupplierBySupplierIdCompleteUrl: "/api/app/warehouse/supplier/{SupplierId}", //put 编辑供应商信息
350
- getWarehouseSupplierpages: "/api/app/warehouse/supplier-pages", //get 获取供应商分页数据信息
351
- getWarehouseSupplierselect: "/api/app/warehouse/supplier-select", //get 获取供应商下拉框数据
352
- getWarehouseOrgselect: "/api/app/warehouse/org-select", //get 获取公司下拉框数据
353
- getWarehouseSupplierbyidBySupplierId: "/api/app/warehouse/supplier-by-id", //get 根据ID获取单条数据
354
- getWarehouseSupplierbyidBySupplierIdCompleteUrl: "/api/app/warehouse/supplier-by-id/{SupplierId}", //get 根据ID获取单条数据
355
- postWarehouseLine: "/api/app/warehouse/line", //post 创建线路
356
- postWarehouseExportline: "/api/app/warehouse/export-line", //post 线路信息导出
357
- deleteWarehouseLineByLineId: "/api/app/warehouse/line", //delete 删除线路信息
358
- deleteWarehouseLineByLineIdCompleteUrl: "/api/app/warehouse/line/{LineId}", //delete 删除线路信息
359
- putWarehouseLineByLineId: "/api/app/warehouse/line", //put 编辑线路信息
360
- putWarehouseLineByLineIdCompleteUrl: "/api/app/warehouse/line/{LineId}", //put 编辑线路信息
361
- getWarehouseLinepages: "/api/app/warehouse/line-pages", //get 获取线路分页数据信息
362
- getWarehouseRoadwayselect: "/api/app/warehouse/road-way-select", //get 获取通道/货架下拉框数据
363
- getWarehouseRoadwaypages: "/api/app/warehouse/road-way-pages", //get 获取巷道分页信息
364
- postWarehouseRoadway: "/api/app/warehouse/road-way", //post 创建巷道信息
365
- putWarehouseRoadwayByRoadWayId: "/api/app/warehouse/road-way", //put 编辑巷道信息
366
- putWarehouseRoadwayByRoadWayIdCompleteUrl: "/api/app/warehouse/road-way/{roadWayId}", //put 编辑巷道信息
367
- deleteWarehouseRoadwayByRoadWayId: "/api/app/warehouse/road-way", //delete 删除巷道信息
368
- deleteWarehouseRoadwayByRoadWayIdCompleteUrl: "/api/app/warehouse/road-way/{roadWayId}", //delete 删除巷道信息
369
- getWarehouseRowwaybyidByRoadWayId: "/api/app/warehouse/row-way-by-id", //get 根据ID获取单条数据通道信息
370
- getWarehouseRowwaybyidByRoadWayIdCompleteUrl: "/api/app/warehouse/row-way-by-id/{roadWayId}", //get 根据ID获取单条数据通道信息
371
- postWarehouseExportroadway: "/api/app/warehouse/export-road-way", //post 通道信息导出
372
- postWarehouseImportcontainer: "/api/app/warehouse/import-container", //post 导入容器信息
373
- postWarehouseExportcontainer: "/api/app/warehouse/export-container", //post 容器信息导出
374
- getWarehouseContainershapetypeselect: "/api/app/warehouse/container-shape-type-select", //get 获取容器属性 枚举下拉框数据
375
- getWarehouseUsagestatusselect: "/api/app/warehouse/usage-status-select", //get 使用状态下拉
376
- getWarehouseLoadstatusselect: "/api/app/warehouse/load-status-select", //get 获取承载状态下拉框数据
377
- getWarehouseContainerpagessort: "/api/app/warehouse/container-pages-sort", //get 获取容器分页信息数据-排序
378
- getWarehouseContainerpages: "/api/app/warehouse/container-pages", //get 获取容器分页信息数据
379
- postWarehouseContainer: "/api/app/warehouse/container", //post 创建容器信息
380
- putWarehouseContainerByContainerId: "/api/app/warehouse/container", //put 编辑容器信息
381
- putWarehouseContainerByContainerIdCompleteUrl: "/api/app/warehouse/container/{containerId}", //put 编辑容器信息
382
- deleteWarehouseContainerByContainerId: "/api/app/warehouse/container", //delete 删除容器信息
383
- deleteWarehouseContainerByContainerIdCompleteUrl: "/api/app/warehouse/container/{containerId}", //delete 删除容器信息
384
- getWarehouseContainerbyidByContainerId: "/api/app/warehouse/container-by-id", //get 根据ID获取单条数据
385
- getWarehouseContainerbyidByContainerIdCompleteUrl: "/api/app/warehouse/container-by-id/{ContainerId}", //get 根据ID获取单条数据
386
- postWarehouseImportcargolocation: "/api/app/warehouse/import-cargo-location", //post 库位信息导入
387
- getWarehouseLocationtypeselect: "/api/app/warehouse/location-type-select", //get 获取库位类型下拉框数据
388
- getWarehouseOutlocationselect: "/api/app/warehouse/out-location-select", //get 获取出库口下拉
389
- getWarehouseCargolocationpagessort: "/api/app/warehouse/cargo-location-pages-sort", //get 获取库位分页数据-排序
390
- getWarehouseCargolocationpages: "/api/app/warehouse/cargo-location-pages", //get 获取库位分页数据
391
- postWarehouseCargolocation: "/api/app/warehouse/cargo-location", //post 创建库位
392
- putWarehouseCargolocationByCargoLocationId: "/api/app/warehouse/cargo-location", //put 编辑库位
393
- putWarehouseCargolocationByCargoLocationIdCompleteUrl: "/api/app/warehouse/cargo-location/{cargoLocationId}", //put 编辑库位
394
- deleteWarehouseCargolocationByCargoLocationId: "/api/app/warehouse/cargo-location", //delete 删除库位
395
- deleteWarehouseCargolocationByCargoLocationIdCompleteUrl: "/api/app/warehouse/cargo-location/{cargoLocationId}", //delete 删除库位
396
- postWarehouseExportcargolocation: "/api/app/warehouse/export-cargo-location", //post 库位信息导出
397
- getWarehouseCargolocationselect: "/api/app/warehouse/cargo-location-select", //get 获取库位下拉框数据
398
- getWarehouseInoroutcargolocationselect: "/api/app/warehouse/in-or-out-cargo-location-select", //get 获取出入库口下拉
399
- getWarehouseCargolocationbyidByCargoLocationId: "/api/app/warehouse/cargo-location-by-id", //get 根据ID获取单条数据
400
- getWarehouseCargolocationbyidByCargoLocationIdCompleteUrl: "/api/app/warehouse/cargo-location-by-id/{CargoLocationId}", //get 根据ID获取单条数据
401
- getWarehouseCargolocationdepth: "/api/app/warehouse/cargo-location-depth", //get 获取库位深度值数据
402
- postWarehouse: "/api/app/warehouse/warehouse", //post 创建仓库
403
- postWarehouseExportwarehouse: "/api/app/warehouse/export-warehouse", //post 仓库信息导出
404
- deleteWarehouseByWarehouseId: "/api/app/warehouse/warehouse", //delete 删除仓库信息
405
- deleteWarehouseByWarehouseIdCompleteUrl: "/api/app/warehouse/warehouse/{warehouseId}", //delete 删除仓库信息
406
- putWarehouseByWarehouseId: "/api/app/warehouse/warehouse", //put 编辑仓库信息
407
- putWarehouseByWarehouseIdCompleteUrl: "/api/app/warehouse/warehouse/{WarehouseId}", //put 编辑仓库信息
408
- getWarehouseWarehousepages: "/api/app/warehouse/warehouse-pages", //get 获取仓库分页数据信息
409
- getWarehouseWarehouseselect: "/api/app/warehouse/warehouse-select", //get 获取仓库下拉框数据
410
- getWarehouseWarehousebyidByWarehouseId: "/api/app/warehouse/warehouse-by-id", //get 根据ID获取单条数据
411
- getWarehouseWarehousebyidByWarehouseIdCompleteUrl: "/api/app/warehouse/warehouse-by-id/{warehouseId}", //get 根据ID获取单条数据
412
- postWarehouseExportregion: "/api/app/warehouse/export-region", //post 区域信息导出
413
- getWarehouseRegionselect: "/api/app/warehouse/region-select", //get 获取区域下拉框数据
414
- getWarehouseRegiontypeselect: "/api/app/warehouse/region-type-select", //get · 获取区域下拉框数据-根据所属区域属性
415
- getWarehouseRegionpdabusinessselect: "/api/app/warehouse/region-pda-business-select", //get 获取pda业务下拉框
416
- getWarehouseContainerinfo: "/api/app/warehouse/container-info", //get 获取空容器展示信息
417
- getWarehouseRegionenumselect: "/api/app/warehouse/region-enum-select", //get 获取区域属性下拉框数据
418
- getWarehouseRegionpages: "/api/app/warehouse/region-pages", //get 获取区域分页数据信息
419
- postWarehouseRegion: "/api/app/warehouse/region", //post 创建区域
420
- putWarehouseRegionByRegionId: "/api/app/warehouse/region", //put 编辑区域信息
421
- putWarehouseRegionByRegionIdCompleteUrl: "/api/app/warehouse/region/{regionId}", //put 编辑区域信息
422
- deleteWarehouseRegionByRegionId: "/api/app/warehouse/region", //delete 删除区域信息
423
- deleteWarehouseRegionByRegionIdCompleteUrl: "/api/app/warehouse/region/{regionId}", //delete 删除区域信息
424
- getWarehouseRegionbyidByRegionId: "/api/app/warehouse/region-by-id", //get 根据ID获取单条数据
425
- getWarehouseRegionbyidByRegionIdCompleteUrl: "/api/app/warehouse/region-by-id/{RegionId}", //get 根据ID获取单条数据
426
- postWarehouseExportarea: "/api/app/warehouse/export-area", //post 库区信息导出
427
- getWarehouseAreaselect: "/api/app/warehouse/area-select", //get 获取库区下拉框数据
428
- getWarehouseAreapages: "/api/app/warehouse/area-pages", //get 获取库区分页数据
429
- postWarehouseArea: "/api/app/warehouse/area", //post 创建库区
430
- putWarehouseAreaByAreaId: "/api/app/warehouse/area", //put 编辑库区
431
- putWarehouseAreaByAreaIdCompleteUrl: "/api/app/warehouse/area/{areaId}", //put 编辑库区
432
- deleteWarehouseAreaByAreaId: "/api/app/warehouse/area", //delete 删除库区
433
- deleteWarehouseAreaByAreaIdCompleteUrl: "/api/app/warehouse/area/{areaId}", //delete 删除库区
434
- getWarehouseAreabyidByAreaId: "/api/app/warehouse/area-by-id", //get 根据ID获取单条数据
435
- getWarehouseAreabyidByAreaIdCompleteUrl: "/api/app/warehouse/area-by-id/{AreaId}", //get 根据ID获取单条数据
436
- postWarehouseGetcontainerimagebase64String: "/api/app/warehouse/get-container-image-base64String", //post 获取图片的Base64字符串
437
- postWarehouseContainertype: "/api/app/warehouse/container-type", //post 创建容器类型
438
- postWarehouseExportcontainertype: "/api/app/warehouse/export-container-type", //post 容器类型信息导出
439
- deleteWarehouseContainertypeByContainerTypeId: "/api/app/warehouse/container-type", //delete 删除容器类型信息
440
- deleteWarehouseContainertypeByContainerTypeIdCompleteUrl: "/api/app/warehouse/container-type/{ContainerTypeId}", //delete 删除容器类型信息
441
- putWarehouseContainertypeByContainerTypeId: "/api/app/warehouse/container-type", //put 编辑容器类型信息
442
- putWarehouseContainertypeByContainerTypeIdCompleteUrl: "/api/app/warehouse/container-type/{ContainerTypeId}", //put 编辑容器类型信息
443
- getWarehouseContainertypepages: "/api/app/warehouse/container-type-pages", //get 获取容器类型分页数据信息
444
- getWarehouseContainertypeselect: "/api/app/warehouse/container-type-select", //get 获取容器类型下拉框数据
445
- getWarehouseContainertypebyidByContainerTypeId: "/api/app/warehouse/container-type-by-id", //get 根据ID获取单条数据
446
- getWarehouseContainertypebyidByContainerTypeIdCompleteUrl: "/api/app/warehouse/container-type-by-id/{ContainerTypeId}", //get 根据ID获取单条数据
447
- postWarehouseGrade: "/api/app/warehouse/grade", //post 创建等级
448
- postWarehouseExportgrade: "/api/app/warehouse/export-grade", //post 等级信息导出
449
- deleteWarehouseGradeByGradeId: "/api/app/warehouse/grade", //delete 删除等级信息
450
- deleteWarehouseGradeByGradeIdCompleteUrl: "/api/app/warehouse/grade/{GradeId}", //delete 删除等级信息
451
- putWarehouseGradeByGradeId: "/api/app/warehouse/grade", //put 编辑等级信息
452
- putWarehouseGradeByGradeIdCompleteUrl: "/api/app/warehouse/grade/{GradeId}", //put 编辑等级信息
453
- getWarehouseGradepages: "/api/app/warehouse/grade-pages", //get 获取等级分页数据信息
454
- getWarehouseGradeselect: "/api/app/warehouse/grade-select", //get 获取等级下拉框数据
455
- getWarehouseGradebyidByGradeId: "/api/app/warehouse/grade-by-id", //get 根据ID获取单条数据
456
- getWarehouseGradebyidByGradeIdCompleteUrl: "/api/app/warehouse/grade-by-id/{GradeId}", //get 根据ID获取单条数据
457
- postWarehousePoint: "/api/app/warehouse/point", //post 创建出入库点位
458
- postWarehouseExportpoint: "/api/app/warehouse/export-point", //post 出入库点位信息导出
459
- deleteWarehousePointByPointId: "/api/app/warehouse/point", //delete 删除出入库点位信息
460
- deleteWarehousePointByPointIdCompleteUrl: "/api/app/warehouse/point/{PointId}", //delete 删除出入库点位信息
461
- putWarehousePointByPointId: "/api/app/warehouse/point", //put 编辑出入库点位信息
462
- putWarehousePointByPointIdCompleteUrl: "/api/app/warehouse/point/{PointId}", //put 编辑出入库点位信息
463
- getWarehousePointpages: "/api/app/warehouse/point-pages", //get 获取出入库点位分页数据信息
464
- getWarehousePointselect: "/api/app/warehouse/point-select", //get 获取出入库点位下拉框数据
465
- getWarehousePointtypeselect: "/api/app/warehouse/point-type-select", //get 获取点位类型下拉框数据
466
- getWarehousePointbyidByPointId: "/api/app/warehouse/point-by-id", //get 根据ID获取单条数据
467
- getWarehousePointbyidByPointIdCompleteUrl: "/api/app/warehouse/point-by-id/{PointId}", //get 根据ID获取单条数据
468
- postWarehouseShipper: "/api/app/warehouse/shipper", //post 创建出货方
469
- postWarehouseExportshipper: "/api/app/warehouse/export-shipper", //post 出货方信息导出
470
- };
471
-
472
- // 新无条件入库
473
- export const PdaStockInNew1 = {
474
- postPdastockinnew1Valiteproduct: "/api/app/pda-stock-in-new1/valite-product", //post 校验物料号
475
- postPdastockinnew1Stonckinbindingplate: "/api/app/pda-stock-in-new1/stonck-in-binding-plate", //post 无条件入库绑盘(港华)
476
- };
477
-