|
@@ -79,8 +79,8 @@
|
|
|
v-if="
|
|
v-if="
|
|
|
item.semiProductList &&
|
|
item.semiProductList &&
|
|
|
item.semiProductList.length != 0 &&
|
|
item.semiProductList.length != 0 &&
|
|
|
- taskObj.taskType != 4 &&
|
|
|
|
|
- taskObj.taskType != 6
|
|
|
|
|
|
|
+ taskObj?.taskType != 4 &&
|
|
|
|
|
+ taskObj?.taskType != 6
|
|
|
"
|
|
"
|
|
|
:item="item"
|
|
:item="item"
|
|
|
:list="item.semiProductList"
|
|
:list="item.semiProductList"
|
|
@@ -92,7 +92,7 @@
|
|
|
v-if="
|
|
v-if="
|
|
|
item.semiProductList &&
|
|
item.semiProductList &&
|
|
|
item.semiProductList.length != 0 &&
|
|
item.semiProductList.length != 0 &&
|
|
|
- taskObj.taskType == 6 &&
|
|
|
|
|
|
|
+ taskObj?.taskType == 6 &&
|
|
|
item.singleReport == 1
|
|
item.singleReport == 1
|
|
|
"
|
|
"
|
|
|
:item="item"
|
|
:item="item"
|
|
@@ -125,6 +125,19 @@
|
|
|
:objData="item"
|
|
:objData="item"
|
|
|
ref="packRef"
|
|
ref="packRef"
|
|
|
></packingBom>
|
|
></packingBom>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <packingTgBom
|
|
|
|
|
+ v-if="
|
|
|
|
|
+ item.pickOutInList &&
|
|
|
|
|
+ item.pickOutInList.length != 0 &&
|
|
|
|
|
+ taskObj?.taskType == 4 &&
|
|
|
|
|
+ clientEnvironmentId == 3
|
|
|
|
|
+ "
|
|
|
|
|
+ :list="item.pickOutInList"
|
|
|
|
|
+ :item="item"
|
|
|
|
|
+ ></packingTgBom>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -155,6 +168,7 @@
|
|
|
import turnoverBom from './components/turnoverBom.vue';
|
|
import turnoverBom from './components/turnoverBom.vue';
|
|
|
import aridRegion from '../feeding/components/aridRegion.vue';
|
|
import aridRegion from '../feeding/components/aridRegion.vue';
|
|
|
import packingBom from './components/packingBom.vue';
|
|
import packingBom from './components/packingBom.vue';
|
|
|
|
|
+ import packingTgBom from './components/packingTgBom';
|
|
|
export default {
|
|
export default {
|
|
|
components: {
|
|
components: {
|
|
|
pickingList,
|
|
pickingList,
|
|
@@ -171,7 +185,8 @@
|
|
|
byProductBom,
|
|
byProductBom,
|
|
|
turnoverBom,
|
|
turnoverBom,
|
|
|
aridRegion,
|
|
aridRegion,
|
|
|
- packingBom
|
|
|
|
|
|
|
+ packingBom,
|
|
|
|
|
+ packingTgBom
|
|
|
},
|
|
},
|
|
|
props: {
|
|
props: {
|
|
|
workListIds: {
|
|
workListIds: {
|