发票修改

ywj_dev
wangwei 2 years ago
parent c18a159f88
commit 2473e562dc

@ -147,6 +147,14 @@ export function filterOrder(query) {
}); });
} }
export function filterOrderList(query) {
return axios({
url: "/udiwms/inout/order/filterList",
method: "get",
params: query
});
}
export function selectNew(query) { export function selectNew(query) {
return axios({ return axios({
url: "/admin/warehouse/inout/order/selectNew", url: "/admin/warehouse/inout/order/selectNew",

@ -8,6 +8,15 @@ export function getBizDetailList(params) {
}); });
} }
export function getBizDetailListInv(params) {
return axios({
url: "/udiwms/inout/bizDetail/filterListInv",
method: "get",
params: params
});
}
export function filterListInvoice(params) { export function filterListInvoice(params) {
return axios({ return axios({
url: "/udiwms/inout/bizDetail/filterListInvoice", url: "/udiwms/inout/bizDetail/filterListInvoice",
@ -19,8 +28,8 @@ export function filterListInvoice(params) {
export function deleteById(params) { export function deleteById(params) {
return axios({ return axios({
url: "/udiwms/inout/biz/deleteById", url: "/udiwms/inout/biz/deleteById",
method: "get", method: "post",
params: params data: params
}); });
} }
@ -40,6 +49,14 @@ export function insertInvoice(params) {
}); });
} }
export function updateorderBiz(params) {
return axios({
url: "/udiwms/inout/biz/updateorderBiz",
method: "post",
data: params
});
}
export function getCheckDetailList(params) { export function getCheckDetailList(params) {
return axios({ return axios({

@ -179,6 +179,19 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="登记状态" prop="checkStatus" width="100">
<template slot-scope="scope">
<el-tag type="danger" v-if="scope.row.allCout==0">
未登记
</el-tag>
<el-tag type="warning" v-if="scope.row.partCount>0 && scope.row.allCout>0">
未全部登记
</el-tag>
<el-tag type="success" v-if="scope.row.partCount == 0 && scope.row.allCout>0">
全部登记
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="160" fixed="right"> <el-table-column label="操作" width="160" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" :disabled="scope.row.checkStatus==1" size="small" @click.native.stop="determine(scope.row)">确认</el-button> <el-button type="text" :disabled="scope.row.checkStatus==1" size="small" @click.native.stop="determine(scope.row)">确认</el-button>
@ -259,6 +272,16 @@
prop="certCode" prop="certCode"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column label="登记状态" prop="regStatus" width="100">
<template slot-scope="scope">
<el-tag type="danger" v-if="scope.row.regStatus==0">
未登记
</el-tag>
<el-tag type="success" v-if="scope.row.regStatus==1">
全部登记
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="160" fixed="right"> <el-table-column label="操作" width="160" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
@ -358,7 +381,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="deleteInvoice(scope.row.id)" @click.native.stop="deleteInvoice(scope.row)"
>删除 >删除
</el-button </el-button
> >
@ -379,7 +402,7 @@
:total="invTotal" :total="invTotal"
:page.sync="bizQuery.page" :page.sync="bizQuery.page"
:limit.sync="bizQuery.limit" :limit.sync="bizQuery.limit"
@pagination="getBizDetailList" @pagination="getBizDetailListInv"
/> />
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
@ -449,13 +472,13 @@
<script> <script>
import { import {
deleteByOrderId, deleteByOrderId,
getOrderList, rollUnReceivebackOrder, filterInvoice, filterOrder getOrderList, rollUnReceivebackOrder, filterInvoice, filterOrder,filterOrderList
} from '../../api/inout/order' } from '../../api/inout/order'
import {getLocalJoinByUser} from "@/api/basic/busType"; import {getLocalJoinByUser} from "@/api/basic/busType";
import {getInvListByUser} from "@/api/system/invWarehouse"; import {getInvListByUser} from "@/api/system/invWarehouse";
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";
import {selectSysParamByKey} from "@/api/param/systemParamConfig"; import {selectSysParamByKey} from "@/api/param/systemParamConfig";
import {filterListInvoice, getBizDetailList, deleteById, insertInvoice} from '@/api/inout/orderDetailBiz' import {filterListInvoice, getBizDetailListInv, deleteById, insertInvoice,updateorderBiz} from '@/api/inout/orderDetailBiz'
import {getCodeList} from "@/api/inout/code"; import {getCodeList} from "@/api/inout/code";
import AcceptOrder from "@/views/inout/DialogReviewOrder"; import AcceptOrder from "@/views/inout/DialogReviewOrder";
import DialogInvoice from "@/views/inout/DialogInvoice"; import DialogInvoice from "@/views/inout/DialogInvoice";
@ -499,6 +522,8 @@ export default {
determineData:null, determineData:null,
corpLoading: false, corpLoading: false,
fromOptions: [], fromOptions: [],
regId:null,
par:[],
formName: 1, formName: 1,
formMap: { formMap: {
@ -668,7 +693,10 @@ export default {
}); });
}).catch(() => { }).catch(() => {
}); });
//
updateorderBiz(row).then(res =>{
})
}, },
onSubmit() { onSubmit() {
@ -728,7 +756,7 @@ export default {
}, },
freshen() { freshen() {
this.Upinvoice = false; this.Upinvoice = false;
this.getBizDetailList(); this.getBizDetailListInv();
}, },
printOrder(row) { printOrder(row) {
this.currentManufacturer = row; this.currentManufacturer = row;
@ -755,11 +783,12 @@ export default {
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {
let params = {id: row} this.par=row;
deleteById(params) this.par.regId=this.regId;
deleteById(row)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.getBizDetailList(this.subRow); this.getBizDetailListInv(this.subRow);
this.$message({ this.$message({
type: "success", type: "success",
message: "删除成功!", message: "删除成功!",
@ -804,7 +833,7 @@ export default {
this.currentRow = {billNo: ""}; this.currentRow = {billNo: ""};
this.clearDetailList(); this.clearDetailList();
this.filterQuery.vueType = "supInvoice"; this.filterQuery.vueType = "supInvoice";
filterOrder(this.filterQuery) filterOrderList(this.filterQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code === 20000) { if (response.code === 20000) {
@ -919,7 +948,7 @@ export default {
this.codeQuery.orderIdFk = this.currentRow.billNo; this.codeQuery.orderIdFk = this.currentRow.billNo;
this.codeDetailLoading = true; this.codeDetailLoading = true;
getBizDetailList(this.codeQuery).then((res) => { getBizDetailListInv(this.codeQuery).then((res) => {
this.codeDetailLoading = false; this.codeDetailLoading = false;
if (res.code === 20000) { if (res.code === 20000) {
this.codeDetailList = res.data.list || []; this.codeDetailList = res.data.list || [];
@ -943,13 +972,13 @@ export default {
page: 1, page: 1,
limit: 10 limit: 10
}; };
this.getBizDetailList(); this.getBizDetailListInv();
}, },
onBizSubmit() { onBizSubmit() {
this.bizQuery.page = 1; this.bizQuery.page = 1;
this.getBizDetailList(); this.getBizDetailListInv();
}, },
getBizDetailList(row) { getBizDetailListInv(row) {
if (isBlank(this.currentRow.billNo)) { if (isBlank(this.currentRow.billNo)) {
this.$message.error("请先选择需要查询的单据!") this.$message.error("请先选择需要查询的单据!")
return; return;
@ -980,9 +1009,10 @@ export default {
BizDetail(row) { BizDetail(row) {
this.regId=row.id;
this.bizQuery.page = 1; this.bizQuery.page = 1;
this.subRow = row; this.subRow = row;
this.getBizDetailList(row); this.getBizDetailListInv(row);
}, },
determine(row){ determine(row){
this.determineData=row; this.determineData=row;
@ -1013,12 +1043,12 @@ export default {
// //
closeAcceptDialog() { closeAcceptDialog() {
this.Upinvoice = false; this.Upinvoice = false;
this.getBizDetailList(); this.getBizDetailListInv();
}, },
closeInvoice(row) { closeInvoice(row) {
this.InvoiceRegisterv = false; this.InvoiceRegisterv = false;
this.getBizDetailList(row); this.getBizDetailListInv(row);
}, },
// //

Loading…
Cancel
Save