发票问题

pro
anthonywj 2 years ago
parent e2ab90dfa4
commit 6092a68ae7

@ -7,7 +7,7 @@ ENV = 'production'
#林纪裕
# VUE_APP_BASE_API = 'http://101.43.77.55:9150/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:5005/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://r.jiyuudims.cloud:82/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_SPMS_SERVER/'
@ -15,14 +15,18 @@ ENV = 'production'
# VUE_APP_BASE_API = 'http://116.204.106.103:9150/UDI_SPMS_SERVER/'
# 平潭
# VUE_APP_BASE_API = 'http://121.204.169.96:9150/UDI_SPMS_SERVER/'
VUE_APP_BASE_API = 'http://121.204.169.96:9150/UDI_SPMS_SERVER/'
# 文明懂
VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_SPMS_SERVER/'
# VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_SPMS_SERVER/'
# 刘恩典
# VUE_APP_BASE_API = 'http://192.168.0.54:9150/UDI_SPMS_SERVER/'
# 漳州中医院
# VUE_APP_BASE_API = 'http://116.204.116.198:9150/UDI_SPMS_SERVER/'
# 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/UDI_SPMS_CLIENT/'

@ -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 =

@ -2,7 +2,7 @@
<div class="login-container">
<div>
<el-row>
<h3 class="toptitle">协和医院平潭分</h3>
<h3 class="toptitle">平潭协和医院</h3>
</el-row>
<el-row>
<h3 class="topSubtitle">医院UDI管理系统</h3>
@ -246,7 +246,8 @@ export default {
.then((res) => {
this.$router
.push({path: this.redirect || "/"})
.catch((res) => {});
.catch((res) => {
});
})
.catch((res) => {
this.loading = false;
@ -366,6 +367,7 @@ $light_gray: #eee;
text-align: center;
font-weight: bold;
}
.topSubtitle {
position: absolute;
font-size: 45px;
@ -406,6 +408,7 @@ $light_gray: #eee;
width: 490px;
}
}
.el-input--mini .el-input__icon {
line-height: 32px;
}

Loading…
Cancel
Save