Browse Source

2025-10-31

优化
master
fengyuan_yang 2 months ago
parent
commit
57813b730a
  1. 1
      src/views/modules/print/rePrintPoPart.vue
  2. 14
      src/views/modules/qc/inboundNotification.vue
  3. 6
      src/views/modules/qc/outboundNotification.vue

1
src/views/modules/print/rePrintPoPart.vue

@ -38,6 +38,7 @@
<el-option label="在库" value="在库"></el-option>
<el-option label="在途" value="在途"></el-option>
<el-option label="冻结" value="冻结"></el-option>
<el-option label="出库" value="出库"></el-option>
</el-select>
</el-form-item>
</el-form>

14
src/views/modules/qc/inboundNotification.vue

@ -1439,8 +1439,8 @@
//
partClickRow1 (row) {
const tableRef = this.detailSearchData.orderType === '其他入库'
? this.$refs.partTable1Other
const tableRef = this.detailSearchData.orderType === '其他入库'
? this.$refs.partTable1Other
: this.$refs.partTable1Production
if (tableRef) {
tableRef.toggleRowSelection(row)
@ -1449,8 +1449,8 @@
//
partClickRow2 (row) {
const tableRef = this.detailSearchData.orderType === '其他入库'
? this.$refs.partTable2Other
const tableRef = this.detailSearchData.orderType === '其他入库'
? this.$refs.partTable2Other
: this.$refs.partTable2Production
if (tableRef) {
tableRef.toggleRowSelection(row)
@ -1584,7 +1584,11 @@
//
inboundDetailModal (row) {
getInboundDetail2(row).then(({data}) => {
let tempData = {
...row,
orderType: this.currentRow.orderType
}
getInboundDetail2(tempData).then(({data}) => {
if (data && data.code === 0) {
this.detailList2 = data.rows
} else {

6
src/views/modules/qc/outboundNotification.vue

@ -1595,7 +1595,11 @@
//
outboundDetailModal (row) {
getOutboundDetail2(row).then(({data}) => {
let tempData = {
...row,
orderType: this.currentRow.orderType
}
getOutboundDetail2(tempData).then(({data}) => {
if (data && data.code === 0) {
this.detailList2 = data.rows
} else {

Loading…
Cancel
Save