|
|
|
@ -29,7 +29,7 @@
|
|
|
|
|
<span>{{ fromTypeMap[scope.row.fromType] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="往来单位" prop="fromName" width="220">
|
|
|
|
|
<el-table-column label="往来单位" prop="fromCorpName" width="220">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="当前部门" prop="deptName" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -382,6 +382,7 @@
|
|
|
|
|
>
|
|
|
|
|
<IoEditOrderCodeDetail
|
|
|
|
|
:order="order"
|
|
|
|
|
:getOrderList="getList"
|
|
|
|
|
></IoEditOrderCodeDetail>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
@ -534,6 +535,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
//获取订单列表
|
|
|
|
|
getList() {
|
|
|
|
|
if (isBlank(this.filterQuery.billNo)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.currentRow = {billNo: ""};
|
|
|
|
|
this.orderIds = [];
|
|
|
|
@ -575,6 +579,8 @@ export default {
|
|
|
|
|
this.$message.success("删除成功");
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
this.filterQuery.billNo = null;
|
|
|
|
|
this.clearDetailList();
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("删除失败");
|
|
|
|
|