|
|
|
@ -274,6 +274,7 @@ import InvoiceRegister from "@/views/inout/InvoiceRegister";
|
|
|
|
|
import {previewImage} from "@/api/purchase/supCompany";
|
|
|
|
|
import ElImageViewer from "element-ui/packages/image/src/image-viewer";
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
import {deleteRe} from "@/api/auth/register";
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
|
site_id: "",
|
|
|
|
@ -485,14 +486,6 @@ export default {
|
|
|
|
|
this.$message.error("请选择要登记的物资! ");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// if (this.$isBlank(this.inputQuery.machineNo)) {
|
|
|
|
|
// this.$message.error("机器编码不能为空!");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// if (this.$isBlank(this.inputQuery.invoiceCode)) {
|
|
|
|
|
// this.$message.error("发票代码不能为空!");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
if (this.$isBlank(this.inputQuery.invoiceEncode)) {
|
|
|
|
|
this.$message.error("发票编码不能为空!");
|
|
|
|
|
return;
|
|
|
|
@ -511,10 +504,25 @@ export default {
|
|
|
|
|
mount += this.invoiceRow[i].amount
|
|
|
|
|
}
|
|
|
|
|
if (mount != this.inputQuery.price) {
|
|
|
|
|
this.$message.error("价格不匹配!");
|
|
|
|
|
this.$confirm("价格不匹配,是否确定提交?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.postInvoice();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
this.postInvoice();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
postInvoice() {
|
|
|
|
|
insertInvoice(this.inputQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
@ -552,7 +560,8 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uploadHandleError() {},
|
|
|
|
|
uploadHandleError() {
|
|
|
|
|
},
|
|
|
|
|
uploadHandleSuccess(response, file, fileList) {
|
|
|
|
|
debugger;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
@ -681,7 +690,8 @@ export default {
|
|
|
|
|
.then((res) => {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
})
|
|
|
|
|
.catch((error) => {});
|
|
|
|
|
.catch((error) => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
showImgViewer(row) {
|
|
|
|
|
this.certFileUrl =
|
|
|
|
|