|
|
@ -410,10 +410,29 @@
|
|
|
|
:idQuery="idQuery"
|
|
|
|
:idQuery="idQuery"
|
|
|
|
></auditDetail>
|
|
|
|
></auditDetail>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
|
|
title="审批详情"
|
|
|
|
|
|
|
|
:visible.sync="approvalFlowDetailVisible"
|
|
|
|
|
|
|
|
width="80%"
|
|
|
|
|
|
|
|
v-if="approvalFlowDetailVisible"
|
|
|
|
|
|
|
|
@close='closeDialog'
|
|
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
|
|
|
:before-close="handleClose"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<approvalFlowDetail
|
|
|
|
|
|
|
|
:isChang="false"
|
|
|
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
|
|
|
:idQuery="idQuery"
|
|
|
|
|
|
|
|
></approvalFlowDetail>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
import approvalFlowDetail from "@/components/ApprovalFlow/index";
|
|
|
|
import {getOrderDetail, getReceiveOrder, printOrder} from "@/api/inout/receiveOrder";
|
|
|
|
import {getOrderDetail, getReceiveOrder, printOrder} from "@/api/inout/receiveOrder";
|
|
|
|
import auditDetail from "@/views/inout/receive/receiveAuditDetail"
|
|
|
|
import auditDetail from "@/views/inout/receive/receiveAuditDetail"
|
|
|
|
import {delReceive} from "@/api/thrsys/thrOrderReceive";
|
|
|
|
import {delReceive} from "@/api/thrsys/thrOrderReceive";
|
|
|
@ -441,15 +460,16 @@ export default {
|
|
|
|
targetInvCode: null,
|
|
|
|
targetInvCode: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
statusMap: {
|
|
|
|
statusMap: {
|
|
|
|
1: "草稿",
|
|
|
|
0: "草稿",
|
|
|
|
2: "未审核",
|
|
|
|
1: "未审核",
|
|
|
|
3: "已审核",
|
|
|
|
2: "已审核",
|
|
|
|
4: "已拒绝"
|
|
|
|
3: "已拒绝"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
idQuery: null,
|
|
|
|
idQuery: null,
|
|
|
|
invList: [],
|
|
|
|
invList: [],
|
|
|
|
invCodebe: null,
|
|
|
|
invCodebe: null,
|
|
|
|
newSpDistributionVisible: false,
|
|
|
|
newSpDistributionVisible: false,
|
|
|
|
|
|
|
|
approvalFlowDetailVisible: false,
|
|
|
|
total: 0,
|
|
|
|
total: 0,
|
|
|
|
tableHeader:[],
|
|
|
|
tableHeader:[],
|
|
|
|
queryList:[],
|
|
|
|
queryList:[],
|
|
|
@ -543,6 +563,13 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
handleClose() {
|
|
|
|
|
|
|
|
this.approvalFlowDetailVisible = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
showApprovalFlowDetail(_this,row) {
|
|
|
|
|
|
|
|
_this.idQuery = row
|
|
|
|
|
|
|
|
_this.approvalFlowDetailVisible = true;
|
|
|
|
|
|
|
|
},
|
|
|
|
onReset() {
|
|
|
|
onReset() {
|
|
|
|
this.$router.push({
|
|
|
|
this.$router.push({
|
|
|
|
path: "",
|
|
|
|
path: "",
|
|
|
@ -715,6 +742,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
closeDialog() {
|
|
|
|
closeDialog() {
|
|
|
|
this.newSpDistributionVisible = false;
|
|
|
|
this.newSpDistributionVisible = false;
|
|
|
|
|
|
|
|
this.approvalFlowDetailVisible = false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
executeFuc(row,type,clickFuc,value){
|
|
|
|
executeFuc(row,type,clickFuc,value){
|
|
|
|
return executeFuc(this,row,type,clickFuc,value);
|
|
|
|
return executeFuc(this,row,type,clickFuc,value);
|
|
|
@ -727,7 +755,7 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
components: {
|
|
|
|
auditDetail
|
|
|
|
auditDetail,approvalFlowDetail
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
mounted() {
|
|
|
|
},
|
|
|
|
},
|
|
|
|