|
|
|
@ -6,7 +6,7 @@
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-bottom-right"
|
|
|
|
|
@click="onSubmit"
|
|
|
|
|
>登记
|
|
|
|
|
>登记
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-form
|
|
|
|
@ -169,7 +169,7 @@
|
|
|
|
|
row-key="id"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55"> </el-table-column>
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="发票编码"
|
|
|
|
@ -265,15 +265,16 @@ import {
|
|
|
|
|
insertInvoice,
|
|
|
|
|
updateOrder,
|
|
|
|
|
filterBizOrderList,
|
|
|
|
|
updateorderBiz,parseInvoice
|
|
|
|
|
updateorderBiz, parseInvoice
|
|
|
|
|
} from "@/api/inout/orderDetailBiz";
|
|
|
|
|
import AcceptOrder from "@/views/inout/DialogReviewOrder";
|
|
|
|
|
import DialogInvoice from "@/views/inout/DialogInvoice";
|
|
|
|
|
import InvoiceRegister from "@/views/inout/InvoiceRegister";
|
|
|
|
|
|
|
|
|
|
import { previewImage } from "@/api/purchase/supCompany";
|
|
|
|
|
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: "",
|
|
|
|
@ -354,10 +355,10 @@ export default {
|
|
|
|
|
// { required: true, message: "请输入发票代码", trigger: "blur" },
|
|
|
|
|
// ],
|
|
|
|
|
invoiceEncode: [
|
|
|
|
|
{ required: true, message: "请输入发票编码", trigger: "blur" },
|
|
|
|
|
{required: true, message: "请输入发票编码", trigger: "blur"},
|
|
|
|
|
],
|
|
|
|
|
price: [{ required: true, message: "请输入发票价格", trigger: "blur" }],
|
|
|
|
|
invoiceDate: [{ required: true, message: "请输入备注", trigger: "blur" }],
|
|
|
|
|
price: [{required: true, message: "请输入发票价格", trigger: "blur"}],
|
|
|
|
|
invoiceDate: [{required: true, message: "请输入备注", trigger: "blur"}],
|
|
|
|
|
},
|
|
|
|
|
certFileUrl: "",
|
|
|
|
|
Upinvoice: false,
|
|
|
|
@ -478,21 +479,13 @@ export default {
|
|
|
|
|
subRow: null,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: { AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer },
|
|
|
|
|
components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer},
|
|
|
|
|
methods: {
|
|
|
|
|
onSubmit() {
|
|
|
|
|
if (this.invoiceRow == null) {
|
|
|
|
|
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;
|
|
|
|
@ -506,15 +499,30 @@ export default {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.inputQuery.list = this.invoiceRow;
|
|
|
|
|
let mount=0;
|
|
|
|
|
for(var i=0;i<this.invoiceRow.length;i++){
|
|
|
|
|
mount+=this.invoiceRow[i].amount
|
|
|
|
|
let mount = 0;
|
|
|
|
|
for (var i = 0; i < this.invoiceRow.length; i++) {
|
|
|
|
|
mount += this.invoiceRow[i].amount
|
|
|
|
|
}
|
|
|
|
|
if(mount != this.inputQuery.price){
|
|
|
|
|
this.$message.error("价格不匹配!");
|
|
|
|
|
if (mount != this.inputQuery.price) {
|
|
|
|
|
this.$confirm("价格不匹配,是否确定提交?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.postInvoice();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
this.postInvoice();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
postInvoice() {
|
|
|
|
|
insertInvoice(this.inputQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
@ -537,14 +545,14 @@ export default {
|
|
|
|
|
event.currentTarget.select();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
enterKey(){
|
|
|
|
|
let param={
|
|
|
|
|
code :this.inputQuery.code
|
|
|
|
|
enterKey() {
|
|
|
|
|
let param = {
|
|
|
|
|
code: this.inputQuery.code
|
|
|
|
|
}
|
|
|
|
|
parseInvoice(param)
|
|
|
|
|
.then((res)=>{
|
|
|
|
|
if(res.code == 20000){
|
|
|
|
|
this.inputQuery=res.data;
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.inputQuery = res.data;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
@ -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 =
|
|
|
|
|