|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="单号:">
|
|
|
|
|
<el-input v-model="filterQuery.billNo" placeholder="单号:"
|
|
|
|
|
<el-input v-model="filterQuery.billNo" placeholder="单号"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -37,10 +37,10 @@
|
|
|
|
|
<el-form-item class="query-form-item" label="所属仓库:">
|
|
|
|
|
<el-select v-model="filterQuery.invCode" placeholder="请选择所属仓库" clearable="true"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
@change="subInvChange"
|
|
|
|
|
@change="invChange"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in subInvList"
|
|
|
|
|
v-for="item in invList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
@ -140,8 +140,8 @@
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="reviewOrder(scope.row)"
|
|
|
|
|
>验收单据
|
|
|
|
|
@click.native.stop="checkOrder(scope.row.id)"
|
|
|
|
|
>校验单据
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</template>
|
|
|
|
@ -245,7 +245,7 @@
|
|
|
|
|
v-show="bizTotal>0"
|
|
|
|
|
:total="bizTotal"
|
|
|
|
|
:page.sync="bizQuery.page"
|
|
|
|
|
:limit.sync="codeQuery.limit"
|
|
|
|
|
:limit.sync="bizQuery.limit"
|
|
|
|
|
@pagination="getBizDetailList"
|
|
|
|
|
/>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
@ -444,40 +444,21 @@
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="单据验收"
|
|
|
|
|
:visible.sync="acceptOrderVisible"
|
|
|
|
|
width="80%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="acceptOrderVisible"
|
|
|
|
|
>
|
|
|
|
|
<accept-order
|
|
|
|
|
:closeDialog="closeAcceptDialog"
|
|
|
|
|
:orderQuery="acceptQuery"
|
|
|
|
|
v-on:childByValue="parentByFn"
|
|
|
|
|
></accept-order>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getDraft,
|
|
|
|
|
deleteByOrderId,
|
|
|
|
|
getOrderList
|
|
|
|
|
} from "../../api/inout/order";
|
|
|
|
|
import {filterAllByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {getLocalJoinByUser} from "@/api/basic/busType";
|
|
|
|
|
import {filterSubByInv} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import {getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {selectSysParamByKey} from "@/api/param/systemParamConfig";
|
|
|
|
|
import {getBizDetailList} from "@/api/inout/orderDetailBiz";
|
|
|
|
|
import {getCodeDetailList} from "@/api/inout/orderDetailCode";
|
|
|
|
|
import {getResultDetailList} from "@/api/inout/orderDetailResult";
|
|
|
|
|
import AcceptOrder from "@/views/inout/IoReviewOrder";
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
|
site_id: "",
|
|
|
|
@ -487,16 +468,17 @@ const formJson = {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "IoCheckSuccessOrder",
|
|
|
|
|
name: "IoUnCheckedOrder",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
showSearch: true,
|
|
|
|
|
filterQuery: {
|
|
|
|
|
id: "",
|
|
|
|
|
billNo: null,
|
|
|
|
|
mainAction: null,
|
|
|
|
|
action: null,
|
|
|
|
|
statusType: "checkSuccess",
|
|
|
|
|
page: 1,
|
|
|
|
|
status: 6,
|
|
|
|
|
limit: 10,
|
|
|
|
|
startTime: null,
|
|
|
|
|
endTime: null,
|
|
|
|
@ -510,9 +492,9 @@ export default {
|
|
|
|
|
3: "校验异常",
|
|
|
|
|
4: "校验成功",
|
|
|
|
|
},
|
|
|
|
|
list: [],
|
|
|
|
|
storageList: [],
|
|
|
|
|
subInvList: [],
|
|
|
|
|
invList: [],
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: false,
|
|
|
|
|
index: null,
|
|
|
|
@ -539,7 +521,9 @@ export default {
|
|
|
|
|
formData: formJson,
|
|
|
|
|
deleteLoading: false,
|
|
|
|
|
busTypes: [],
|
|
|
|
|
currentRow: {},
|
|
|
|
|
currentRow: {
|
|
|
|
|
billNo: ""
|
|
|
|
|
},
|
|
|
|
|
actDateRange: [],
|
|
|
|
|
pickerOptions: {
|
|
|
|
|
shortcuts: [
|
|
|
|
@ -597,22 +581,25 @@ export default {
|
|
|
|
|
resultTotal: 0,
|
|
|
|
|
resultDetailLoading: false,
|
|
|
|
|
resultDetailList: [],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
acceptQuery: null,
|
|
|
|
|
acceptOrderVisible: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {AcceptOrder},
|
|
|
|
|
components: {},
|
|
|
|
|
methods: {
|
|
|
|
|
onReset() {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
|
this.filterQuery = {
|
|
|
|
|
status: 10,
|
|
|
|
|
id: "",
|
|
|
|
|
billNo: null,
|
|
|
|
|
mainAction: null,
|
|
|
|
|
action: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
statusType: "unCheck",
|
|
|
|
|
limit: 10,
|
|
|
|
|
startTime: null,
|
|
|
|
|
endTime: null,
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
};
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
@ -631,57 +618,23 @@ export default {
|
|
|
|
|
hideSearch() {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
},
|
|
|
|
|
handleSizeChange(val) {
|
|
|
|
|
this.filterQuery.limit = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.filterQuery.page = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
invChange() {
|
|
|
|
|
this.filterQuery.action = null;
|
|
|
|
|
this.getBusType();
|
|
|
|
|
},
|
|
|
|
|
getBusType() {
|
|
|
|
|
if (this.subInvList.length > 0) {
|
|
|
|
|
this.filterQuery.locStorageCode = this.subInvList.find(item => item.code == this.filterQuery.invWarehouseCode).parentId
|
|
|
|
|
}
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.filterQuery.invWarehouseCode,
|
|
|
|
|
code: this.filterQuery.invCode,
|
|
|
|
|
enabled: true,
|
|
|
|
|
};
|
|
|
|
|
getLocalJoinByUser(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
this.filterQuery.billAction = this.busTypes[0].action;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getStorage() {
|
|
|
|
|
this.storageList = [];
|
|
|
|
|
filterAllByUser()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.storageList = response.data || [];
|
|
|
|
|
if (this.storageList.length > 0) {
|
|
|
|
|
this.getSubInvList();
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
this.filterQuery.action = this.busTypes[0].action;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getStorageName(code) {
|
|
|
|
|
for (let i = 0; i < this.storageList.length; i++) {
|
|
|
|
|
if (this.storageList[i].code === code) {
|
|
|
|
|
return this.storageList[i].name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getSubStorageName(code) {
|
|
|
|
|
for (let i = 0; i < this.subInvList.length; i++) {
|
|
|
|
|
if (this.subInvList[i].code === code) {
|
|
|
|
|
return this.subInvList[i].name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
handleSelectionChange(val) {
|
|
|
|
|
this.currentRow = val;
|
|
|
|
|
this.getOrderDetails();
|
|
|
|
@ -706,9 +659,10 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
//获取订单列表
|
|
|
|
|
getList() {
|
|
|
|
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getDraft(this.filterQuery)
|
|
|
|
|
this.currentRow = {billNo: ""};
|
|
|
|
|
this.clearDetailList();
|
|
|
|
|
getOrderList(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
@ -724,34 +678,12 @@ export default {
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.loading = true;
|
|
|
|
|
// this.currentRow = null;
|
|
|
|
|
// this.clearDetailList();
|
|
|
|
|
// getOrderList(this.filterQuery)
|
|
|
|
|
// .then((response) => {
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// if (response.code === 20000) {
|
|
|
|
|
// this.list = response.data.list || [];
|
|
|
|
|
// this.total = response.data.total || 0;
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$message.error(response.message);
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch((error) => {
|
|
|
|
|
// this.$message.error(error.message)
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// this.list = [];
|
|
|
|
|
// this.total = 0;
|
|
|
|
|
// });
|
|
|
|
|
},
|
|
|
|
|
deleteOrders(data) {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.deleteData.id = data;
|
|
|
|
|
deleteByOrderId(this.deleteData)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$message({
|
|
|
|
@ -779,34 +711,14 @@ export default {
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
invChange() {
|
|
|
|
|
this.subInvList = [];
|
|
|
|
|
this.filterQuery.invWarehouseCode = "";
|
|
|
|
|
let query = {
|
|
|
|
|
pcode: this.filterQuery.locStorageCode
|
|
|
|
|
};
|
|
|
|
|
filterSubByInv(query)
|
|
|
|
|
getInvList() {
|
|
|
|
|
getInvListByUser()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.subInvList = response.data || [];
|
|
|
|
|
this.invList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getSubInvList() {
|
|
|
|
|
let query = {
|
|
|
|
|
filter: 3,
|
|
|
|
|
};
|
|
|
|
|
filterSubByInv(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.subInvList = response.data || [];
|
|
|
|
|
this.getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
subInvChange() {
|
|
|
|
|
this.getBusType();
|
|
|
|
|
},
|
|
|
|
|
checkOrder(orderId) {
|
|
|
|
|
},
|
|
|
|
|
onBizReset() {
|
|
|
|
@ -929,22 +841,6 @@ export default {
|
|
|
|
|
editResultDialog(row) {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//验收结束
|
|
|
|
|
closeAcceptDialog() {
|
|
|
|
|
this.acceptOrderVisible = false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//开始验收
|
|
|
|
|
reviewOrder(row) {
|
|
|
|
|
this.acceptQuery = row;
|
|
|
|
|
this.acceptOrderVisible = true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
parentByFn: function (childValue) {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
@ -962,7 +858,7 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getSubInvList();
|
|
|
|
|
this.getInvList();
|
|
|
|
|
this.getBusType();
|
|
|
|
|
let query = this.$route.query;
|
|
|
|
|
this.filterQuery = Object.assign(this.filterQuery, query);
|
|
|
|
@ -973,7 +869,7 @@ export default {
|
|
|
|
|
this.enableDept = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|