Merge remote-tracking branch 'origin/master'

prod
郑明梁 2 years ago
commit 3ef01b1eb3

@ -371,9 +371,10 @@
prop="action" prop="action"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column width="250" label="单据状态"> <el-table-column width="180" label="单据状态">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select <el-select
style="width: 80%"
v-model="scope.row.orderStatus" v-model="scope.row.orderStatus"
placeholder="请选择单据状态" placeholder="请选择单据状态"
> >
@ -384,6 +385,28 @@
</el-select> </el-select>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column width="180" label="目标单据状态">
<template slot-scope="scope">
<el-select style="width: 90%"
v-model="scope.row.syncStatus"
>
<el-option label="草稿" :value="1">草稿</el-option>
<el-option label="待审核" :value="3">待审核</el-option>
</el-select>
</template>
</el-table-column>
<el-table-column width="180" label="是否自动补单">
<template slot-scope="scope">
<el-select style="width: 90%"
v-model="scope.row.syncChange"
>
<el-option label="是" :value="true"></el-option>
<el-option label="否" :value="false"></el-option>
</el-select>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -465,9 +488,10 @@
prop="action" prop="action"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column width="250" label="单据状态"> <el-table-column width="180" label="单据状态">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select <el-select
style="width: 80%"
v-model="scope.row.orderStatus" v-model="scope.row.orderStatus"
placeholder="请选择单据状态" placeholder="请选择单据状态"
> >
@ -478,6 +502,29 @@
</el-select> </el-select>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column width="180" label="目标单据状态">
<template slot-scope="scope">
<el-select style="width: 90%"
v-model="scope.row.syncStatus"
>
<el-option label="草稿" :value="1">草稿</el-option>
<el-option label="待审核" :value="3">待审核</el-option>
</el-select>
</template>
</el-table-column>
<el-table-column width="180" label="是否自动补单">
<template slot-scope="scope">
<el-select style="width: 90%"
v-model="scope.row.syncChange"
>
<el-option label="是" :value="true"></el-option>
<el-option label="否" :value="false"></el-option>
</el-select>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -876,6 +923,8 @@ export default {
selectData.forEach((obj) => { selectData.forEach((obj) => {
obj.outChange = false; obj.outChange = false;
obj.orderStatus = 7; obj.orderStatus = 7;
obj.syncStatus = 3;
obj.syncChange = false;
obj.direct = 2; obj.direct = 2;
let isPut = true; let isPut = true;
for (let i = 0; i < this.checkedToInBusTypes.length; i++) { for (let i = 0; i < this.checkedToInBusTypes.length; i++) {
@ -894,6 +943,8 @@ export default {
obj.outChange = false; obj.outChange = false;
obj.direct = 1; obj.direct = 1;
obj.orderStatus = 7; obj.orderStatus = 7;
obj.syncStatus = 3;
obj.syncChange = false;
let isPut = true; let isPut = true;
for (let i = 0; i < this.checkedBusTypes.length; i++) { for (let i = 0; i < this.checkedBusTypes.length; i++) {
if (this.checkedBusTypes[i].action == obj.action) { if (this.checkedBusTypes[i].action == obj.action) {

Loading…
Cancel
Save