|
|
|
@ -1,6 +1,8 @@
|
|
|
|
|
<template>
|
|
|
|
|
<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-card style="margin-top: -30px">
|
|
|
|
|
<el-row>
|
|
|
|
@ -150,7 +152,8 @@
|
|
|
|
|
>选择单据
|
|
|
|
|
</el-button>
|
|
|
|
|
</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="单据号" prop="billNo" show-overflow-tooltip width="180"></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="操作" width="100" fixed="right">
|
|
|
|
|
<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>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total > 0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
@pagination="getCodeDetailLists"
|
|
|
|
|
/>
|
|
|
|
|
<!-- <pagination-->
|
|
|
|
|
<!-- v-show="total > 0"-->
|
|
|
|
|
<!-- :total="total"-->
|
|
|
|
|
<!-- :page.sync="filterQuery.page"-->
|
|
|
|
|
<!-- :limit.sync="filterQuery.limit"-->
|
|
|
|
|
<!-- @pagination="getCodeDetailLists"-->
|
|
|
|
|
<!-- />-->
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -248,17 +251,17 @@ import {
|
|
|
|
|
uploadInvoice,
|
|
|
|
|
updateOrder,
|
|
|
|
|
filterBizOrderList,
|
|
|
|
|
updateorderBiz, parseInvoice, deleteInvoiceByOrderFk,checkInvoiceCode
|
|
|
|
|
updateorderBiz, parseInvoice, deleteInvoiceByOrderFk, checkInvoiceCode
|
|
|
|
|
} from '@/api/inout/orderDetailBiz'
|
|
|
|
|
import AcceptOrder from '@/views/inout/DialogReviewOrder'
|
|
|
|
|
import DialogInvoice from '@/views/inout/DialogInvoice'
|
|
|
|
|
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 store from '@/store'
|
|
|
|
|
import invoiceSelectRegByOrder from '@/views/inout/InvoiceSelectRegByOrder'
|
|
|
|
|
import { filterInvoiceList } from '@/api/inout/order'
|
|
|
|
|
import { isBlank } from '@/utils/strUtil'
|
|
|
|
|
import {filterInvoiceList} from '@/api/inout/order'
|
|
|
|
|
import {isBlank} from '@/utils/strUtil'
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
|
site_id: '',
|
|
|
|
@ -309,9 +312,7 @@ export default {
|
|
|
|
|
billNo: null,
|
|
|
|
|
mainAction: null,
|
|
|
|
|
action: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
supInoivceSearch: 'supInvoice',
|
|
|
|
|
limit: 10,
|
|
|
|
|
startTime: null,
|
|
|
|
|
endTime: null,
|
|
|
|
|
},
|
|
|
|
@ -331,10 +332,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,
|
|
|
|
@ -455,10 +456,10 @@ export default {
|
|
|
|
|
subRow: null
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: { AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, invoiceSelectRegByOrder },
|
|
|
|
|
components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, invoiceSelectRegByOrder},
|
|
|
|
|
methods: {
|
|
|
|
|
onSubmit() {
|
|
|
|
|
if (this.list == null || this.list.length==0) {
|
|
|
|
|
if (this.list == null || this.list.length == 0) {
|
|
|
|
|
this.$message.error('请选择要登记的物资! ')
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
@ -592,8 +593,8 @@ export default {
|
|
|
|
|
getOrderDetail() {
|
|
|
|
|
this.codeQuery.page = 1
|
|
|
|
|
this.getCodeDetailLists()
|
|
|
|
|
this.codeDetailList=[]
|
|
|
|
|
this.currentRow={
|
|
|
|
|
this.codeDetailList = []
|
|
|
|
|
this.currentRow = {
|
|
|
|
|
billNo: ''
|
|
|
|
|
}
|
|
|
|
|
//this.getResultDetailList();
|
|
|
|
@ -683,7 +684,7 @@ export default {
|
|
|
|
|
let binaryData = []
|
|
|
|
|
previewFile(this.certFileUrl).then(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(this.imgList[0])
|
|
|
|
@ -712,9 +713,9 @@ export default {
|
|
|
|
|
this.$message.error('发票编码不能为空!')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if(this.list.length==0){
|
|
|
|
|
if (this.list.length == 0) {
|
|
|
|
|
//查询发票编码有没有重复
|
|
|
|
|
checkInvoiceCode({invoiceEncode:this.inputQuery.invoiceEncode})
|
|
|
|
|
checkInvoiceCode({invoiceEncode: this.inputQuery.invoiceEncode})
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.invoiceSelectRegByOrderVisible = true
|
|
|
|
@ -725,16 +726,16 @@ export default {
|
|
|
|
|
.catch((response) => {
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
} else {
|
|
|
|
|
this.invoiceSelectRegByOrderVisible = true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
closeAcceptDialog(){
|
|
|
|
|
closeAcceptDialog() {
|
|
|
|
|
this.invoiceSelectRegByOrderVisible = false
|
|
|
|
|
this.getCodeDetailLists()
|
|
|
|
|
},
|
|
|
|
|
delectSub(row){
|
|
|
|
|
deleteInvoiceByOrderFk({billNo:row.billNo,invoiceEncode:this.inputQuery.invoiceEncode})
|
|
|
|
|
delectSub(row) {
|
|
|
|
|
deleteInvoiceByOrderFk({billNo: row.billNo, invoiceEncode: this.inputQuery.invoiceEncode})
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.getOrderDetail();
|
|
|
|
@ -788,8 +789,8 @@ export default {
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
ADMIN_TOKEN: store.getters.token
|
|
|
|
|
}
|
|
|
|
|
if(this.curInvoice.id!=null){
|
|
|
|
|
this.inputQuery=this.curInvoice
|
|
|
|
|
if (this.curInvoice.id != null) {
|
|
|
|
|
this.inputQuery = this.curInvoice
|
|
|
|
|
this.getOrderDetail();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|