1.完成新增盘点单页面功能

feature-order-fix
x_z 2 years ago
parent 6645e2ef42
commit af40695ede

@ -42,7 +42,7 @@ export function submitAudit(params) {
export function deleteCountOrderDetail(data) { export function deleteCountOrderDetail(data) {
return axios({ return axios({
url: "/invCount/codes/deleteCode", url: "/invCount/order/detail/deleteOrderDetail",
method: "post", method: "post",
data: data data: data
}); });

@ -287,6 +287,7 @@
> >
<countOrderCodes <countOrderCodes
:codeQuery="codeQuery" :codeQuery="codeQuery"
:getCountOrderDetail="getCountOrderDetail"
></countOrderCodes> ></countOrderCodes>
</el-dialog> </el-dialog>
</div> </div>
@ -371,7 +372,8 @@ export default {
codesNum: 0, codesNum: 0,
codeQuery: { codeQuery: {
productId: null, productId: null,
orderIdFk: null orderIdFk: null,
edit: true
}, },
codesVisible: false codesVisible: false
}; };
@ -399,6 +401,7 @@ export default {
let detailData = { let detailData = {
orderIdFk: this.formData.orderId, orderIdFk: this.formData.orderId,
productId: product.relIdFk, productId: product.relIdFk,
nameCode: product.nameCode,
batchNo: product.batchNo, batchNo: product.batchNo,
produceDate: product.productionDate, produceDate: product.productionDate,
expireDate: product.expireDate expireDate: product.expireDate
@ -512,10 +515,11 @@ export default {
this.selectInvProductVisible = false; this.selectInvProductVisible = false;
}, },
deleteOrderDetail(index, row) { deleteOrderDetail(index, row) {
if (isBlank(row.id)) { this.$confirm('此操作将删除单据详情, 是否继续?', '提示', {
// confirmButtonText: '确定',
this.codeArray.splice(index, 1); cancelButtonText: '取消',
} else { type: 'warning'
}).then(() => {
// //
let params = {id: row.id} let params = {id: row.id}
deleteCountOrderDetail(params).then((res) => { deleteCountOrderDetail(params).then((res) => {
@ -528,16 +532,18 @@ export default {
this.codeArray = result.data.list || []; this.codeArray = result.data.list || [];
}); });
} else { } else {
this.$message.error(res.data); this.$message.error(res.data.message);
} }
}) })
} }).catch(() => {
});
}, },
showCodes(row) { showCodes(row) {
this.codesVisible = true; this.codesVisible = true;
this.codeQuery = { this.codeQuery = {
orderIdFk: this.formData.orderId, orderIdFk: this.formData.orderId,
productId: row.productId productId: row.productId,
edit: true
} }
}, },
getInputFocus(event) { getInputFocus(event) {
@ -559,7 +565,8 @@ export default {
this.codeArray = res.data.list || []; this.codeArray = res.data.list || [];
this.detailTotal = res.data.total || 0; this.detailTotal = res.data.total || 0;
} }
}) });
this.getCountOrderCodesNum();
}, },
addCode() { addCode() {
this.formData.code.trim(); this.formData.code.trim();

@ -22,6 +22,24 @@
width="500" width="500"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column
label="操作"
width="120"
fixed="right"
v-if="codeQuery.edit"
show-overflow-tooltip
>
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.stop="true"
@click.native="deleteCountCode(scope.row)"
>减一
</el-button
>
</template>
</el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination
@ -37,7 +55,7 @@
<script> <script>
import {getCountCodesList} from "@/api/inventory/invCountCodes"; import {getCountCodesList, deleteCode} from "@/api/inventory/invCountCodes";
export default { export default {
name: "codeQuery", name: "codeQuery",
@ -46,6 +64,10 @@ export default {
type: Object, type: Object,
required: true, required: true,
}, },
getCountOrderDetail: {
type: Function,
required: true
}
}, },
data() { data() {
return { return {
@ -111,9 +133,28 @@ export default {
this.total = 0; this.total = 0;
}) })
}, },
deleteCountCode(row) {
intentBack() { this.$confirm('是否删除此条码?', '提示', {
this.$router.go(-1); confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
let params = {
orderIdFk: row.orderIdFk,
productId: row.productId,
code: row.code
};
deleteCode(params).then((res) => {
if (res.code === 20000) {
this.$message.success("删除成功!");
this.getCodeList();
this.getCountOrderDetail();
} else {
this.$message.error(res.data.message);
}
})
}).catch(() => {
});
}, },
}, },
created() { created() {

Loading…
Cancel
Save