发票登记显示问题

dev
anthonywj 2 years ago
parent 7e95fb3425
commit 42f7da0483

@ -680,7 +680,6 @@ export default {
// this.resultDetailList = []; // this.resultDetailList = [];
}, },
handleInvoiceChange(val) { handleInvoiceChange(val) {
debugger
this.cowEn=val; this.cowEn=val;
this.getOrderList(val) this.getOrderList(val)
this.getProductDetailList(val) this.getProductDetailList(val)

@ -1,6 +1,8 @@
<template> <template>
<div style="display: flex; flex-direction: column"> <div style="display: flex; flex-direction: column">
<el-button size="small" style="margin-left: auto; margin-right: 15px" type="primary" icon="el-icon-bottom-right" @click="onSubmit"></el-button> <el-button size="small" style="margin-left: auto; margin-right: 15px" type="primary" icon="el-icon-bottom-right"
@click="onSubmit">登记
</el-button>
<el-form :model="inputQuery" :rules="formRules" ref="dataForm" label-width="150px" style="padding-top: 40px"> <el-form :model="inputQuery" :rules="formRules" ref="dataForm" label-width="150px" style="padding-top: 40px">
<el-card style="margin-top: -30px"> <el-card style="margin-top: -30px">
<el-row> <el-row>
@ -150,7 +152,8 @@
>选择单据 >选择单据
</el-button> </el-button>
</el-button-group> </el-button-group>
<el-table v-loading="loading" @current-change="handleSelectionChange" :data="list" style="width: 100%" highlight-current-row border> <el-table v-loading="loading" @current-change="handleSelectionChange" :data="list" style="width: 100%"
highlight-current-row border>
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="单据号" prop="billNo" show-overflow-tooltip width="180"></el-table-column> <el-table-column label="单据号" prop="billNo" show-overflow-tooltip width="180"></el-table-column>
<el-table-column label="单据类型" prop="billTypeName" width="150"></el-table-column> <el-table-column label="单据类型" prop="billTypeName" width="150"></el-table-column>
@ -167,17 +170,17 @@
<el-table-column label="总金额" prop="allAmount" width="120"></el-table-column> <el-table-column label="总金额" prop="allAmount" width="120"></el-table-column>
<el-table-column label="操作" width="100" fixed="right"> <el-table-column label="操作" width="100" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="delectSub(scope.row)">删除</el-button> <el-button type="text" size="small" @click.native.stop="delectSub(scope.row)">删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<pagination <!-- <pagination-->
v-show="total > 0" <!-- v-show="total > 0"-->
:total="total" <!-- :total="total"-->
:page.sync="filterQuery.page" <!-- :page.sync="filterQuery.page"-->
:limit.sync="filterQuery.limit" <!-- :limit.sync="filterQuery.limit"-->
@pagination="getCodeDetailLists" <!-- @pagination="getCodeDetailLists"-->
/> <!-- />-->
</el-tabs> </el-tabs>
@ -248,17 +251,17 @@ import {
uploadInvoice, uploadInvoice,
updateOrder, updateOrder,
filterBizOrderList, filterBizOrderList,
updateorderBiz, parseInvoice, deleteInvoiceByOrderFk,checkInvoiceCode updateorderBiz, parseInvoice, deleteInvoiceByOrderFk, checkInvoiceCode
} from '@/api/inout/orderDetailBiz' } from '@/api/inout/orderDetailBiz'
import AcceptOrder from '@/views/inout/DialogReviewOrder' import AcceptOrder from '@/views/inout/DialogReviewOrder'
import DialogInvoice from '@/views/inout/DialogInvoice' import DialogInvoice from '@/views/inout/DialogInvoice'
import InvoiceRegister from '@/views/inout/InvoiceRegister' import InvoiceRegister from '@/views/inout/InvoiceRegister'
import { previewImage, previewFile } from '@/api/purchase/supCompany' import {previewImage, previewFile} from '@/api/purchase/supCompany'
import ElImageViewer from 'element-ui/packages/image/src/image-viewer' import ElImageViewer from 'element-ui/packages/image/src/image-viewer'
import store from '@/store' import store from '@/store'
import invoiceSelectRegByOrder from '@/views/inout/InvoiceSelectRegByOrder' import invoiceSelectRegByOrder from '@/views/inout/InvoiceSelectRegByOrder'
import { filterInvoiceList } from '@/api/inout/order' import {filterInvoiceList} from '@/api/inout/order'
import { isBlank } from '@/utils/strUtil' import {isBlank} from '@/utils/strUtil'
const formJson = { const formJson = {
site_id: '', site_id: '',
@ -309,9 +312,7 @@ export default {
billNo: null, billNo: null,
mainAction: null, mainAction: null,
action: null, action: null,
page: 1,
supInoivceSearch: 'supInvoice', supInoivceSearch: 'supInvoice',
limit: 10,
startTime: null, startTime: null,
endTime: null, endTime: null,
}, },
@ -331,10 +332,10 @@ export default {
// { required: true, message: "", trigger: "blur" }, // { required: true, message: "", trigger: "blur" },
// ], // ],
invoiceEncode: [ invoiceEncode: [
{ required: true, message: '请输入发票编码', trigger: 'blur' } {required: true, message: '请输入发票编码', trigger: 'blur'}
], ],
price: [{ required: true, message: '请输入发票价格', trigger: 'blur' }], price: [{required: true, message: '请输入发票价格', trigger: 'blur'}],
invoiceDate: [{ required: true, message: '请选择开票日期', trigger: 'blur' }] invoiceDate: [{required: true, message: '请选择开票日期', trigger: 'blur'}]
}, },
certFileUrl: '', certFileUrl: '',
Upinvoice: false, Upinvoice: false,
@ -455,10 +456,10 @@ export default {
subRow: null subRow: null
} }
}, },
components: { AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, invoiceSelectRegByOrder }, components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, invoiceSelectRegByOrder},
methods: { methods: {
onSubmit() { onSubmit() {
if (this.list == null || this.list.length==0) { if (this.list == null || this.list.length == 0) {
this.$message.error('请选择要登记的物资! ') this.$message.error('请选择要登记的物资! ')
return false return false
} }
@ -592,8 +593,8 @@ export default {
getOrderDetail() { getOrderDetail() {
this.codeQuery.page = 1 this.codeQuery.page = 1
this.getCodeDetailLists() this.getCodeDetailLists()
this.codeDetailList=[] this.codeDetailList = []
this.currentRow={ this.currentRow = {
billNo: '' billNo: ''
} }
//this.getResultDetailList(); //this.getResultDetailList();
@ -683,7 +684,7 @@ export default {
let binaryData = [] let binaryData = []
previewFile(this.certFileUrl).then(res => { previewFile(this.certFileUrl).then(res => {
binaryData.push(res) binaryData.push(res)
let URL = window.URL.createObjectURL(new Blob(binaryData, { type: pdf })) let URL = window.URL.createObjectURL(new Blob(binaryData, {type: pdf}))
window.open(URL) window.open(URL)
}) })
// window.open(this.imgList[0]) // window.open(this.imgList[0])
@ -712,9 +713,9 @@ export default {
this.$message.error('发票编码不能为空!') this.$message.error('发票编码不能为空!')
return return
} }
if(this.list.length==0){ if (this.list.length == 0) {
// //
checkInvoiceCode({invoiceEncode:this.inputQuery.invoiceEncode}) checkInvoiceCode({invoiceEncode: this.inputQuery.invoiceEncode})
.then((response) => { .then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
this.invoiceSelectRegByOrderVisible = true this.invoiceSelectRegByOrderVisible = true
@ -725,16 +726,16 @@ export default {
.catch((response) => { .catch((response) => {
this.$message.error(response.message) this.$message.error(response.message)
}) })
}else{ } else {
this.invoiceSelectRegByOrderVisible = true this.invoiceSelectRegByOrderVisible = true
} }
}, },
closeAcceptDialog(){ closeAcceptDialog() {
this.invoiceSelectRegByOrderVisible = false this.invoiceSelectRegByOrderVisible = false
this.getCodeDetailLists() this.getCodeDetailLists()
}, },
delectSub(row){ delectSub(row) {
deleteInvoiceByOrderFk({billNo:row.billNo,invoiceEncode:this.inputQuery.invoiceEncode}) deleteInvoiceByOrderFk({billNo: row.billNo, invoiceEncode: this.inputQuery.invoiceEncode})
.then((response) => { .then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
this.getOrderDetail(); this.getOrderDetail();
@ -788,8 +789,8 @@ export default {
ADMIN_ID: store.getters.adminId, ADMIN_ID: store.getters.adminId,
ADMIN_TOKEN: store.getters.token ADMIN_TOKEN: store.getters.token
} }
if(this.curInvoice.id!=null){ if (this.curInvoice.id != null) {
this.inputQuery=this.curInvoice this.inputQuery = this.curInvoice
this.getOrderDetail(); this.getOrderDetail();
} }
} }

@ -460,7 +460,7 @@ export default {
targetInvChange() { targetInvChange() {
let query = { let query = {
enable: true, enable: true,
spUse: 1, spUse: true,
invCode: this.formData.invCode invCode: this.formData.invCode
} }
getLocalJoinByUser(query) getLocalJoinByUser(query)

Loading…
Cancel
Save