9/26 业务类型增加出入库方式

yanshishuju
wangwei 6 months ago
parent 0e4f2dbbe1
commit f2fb9849d2

@ -91,6 +91,17 @@
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="24" class="el-row">
<el-col :span="12" class="el-col">
<el-form-item label="出入库方式:" prop="inAndOutType" class="query-form-item">
<el-select v-model="formData.inAndOutType" style="width: 80%" placeholder="出入库方式">
<el-option label="入库" :value="1"></el-option>
<el-option label="出库" :value="2"></el-option>
<el-option label="流转" :value="3"></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-divider></el-divider>
<!--<el-col :span="12" class="el-col">-->
@ -330,6 +341,9 @@ export default {
workplaceType: [
{required: true, message: '请选择作业类型', trigger: 'blur'}
],
inAndOutType: [
{required: true, message: '请选择出入库方式', trigger: 'blur'}
],
invCode: [],
corpType: [
// { required: true, message: '', trigger: 'blur' }

@ -64,6 +64,11 @@
<span>{{ orderCirTypes[scope.row.orderCirType] }}</span>
</template>
</el-table-column>
<el-table-column label="出入库方式" prop="inAndOutType" width="120">
<template slot-scope="scope">
<span>{{ inAndOutTypes[scope.row.inAndOutType] }}</span>
</template>
</el-table-column>
<el-table-column label="扫码方式" prop="scanType" width="120">
<template slot-scope="scope">
<span>{{ operationTypes[scope.row.scanType] }}</span>
@ -300,6 +305,11 @@ export default {
1: '流通计量单位',
2: '使用计量单位'
},
inAndOutTypes: {
1: '入库',
2: '出库',
3: '流转'
},
workplaceStatusMap: {
0: '暂停',
1: '启用'

@ -244,6 +244,11 @@
<span>{{ orderCirTypes[scope.row.orderCirType] }}</span>
</template>
</el-table-column>
<el-table-column label="出入库方式" prop="inAndOutType" width="120">
<template slot-scope="scope">
<span>{{ inAndOutTypes[scope.row.inAndOutType] }}</span>
</template>
</el-table-column>
<el-table-column label="扫码方式" prop="scanType" width="120">
<template slot-scope="scope">
<span>{{ operationTypes[scope.row.scanType] }}</span>
@ -830,6 +835,11 @@ export default {
1: '流通计量单位',
2: '使用计量单位'
},
inAndOutTypes: {
1: '入库',
2: '出库',
3: '流转'
},
workplaceStatusMap: {
0: '暂停',
1: '启用'

Loading…
Cancel
Save