|
|
@@ -16,8 +16,22 @@
|
|
|
<view>{{ outObj.type == 4 ? '带料委外' : '无料委外' }}</view>
|
|
|
</view>
|
|
|
|
|
|
+
|
|
|
+
|
|
|
</view>
|
|
|
|
|
|
+ <view class="item_box rx-bc">
|
|
|
+ <view class="item_one perce50 rx-sc">
|
|
|
+ <view class="lable">仓库直发:</view>
|
|
|
+ <view>{{ outObj.isStraight == 1 ? '是' : '否' }}</view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
</view>
|
|
|
|
|
|
<u-tabs :list="tabList" @click="handTab" lineWidth="30" lineColor="#157A2C" :activeStyle="{
|
|
|
@@ -33,7 +47,7 @@
|
|
|
<u-list @scrolltolower="scrolltolower" class="z_list">
|
|
|
|
|
|
<view v-if="actTab == '物品清单'">
|
|
|
- <view class="rx-bc">
|
|
|
+ <view class="rx-bc" v-if="outObj.isStraight != 1">
|
|
|
<view style="margin-left: 24rpx">
|
|
|
<checkbox v-if="!seletedAll" color="#fff" :checked="seletedAll" @tap="_seletedAll">全选
|
|
|
</checkbox>
|
|
|
@@ -54,7 +68,7 @@
|
|
|
<view class="listBox-sel">
|
|
|
<checkbox
|
|
|
v-if=' (item.rootCategoryLevelId != 11 || (item.rootCategoryLevelId == 11 && item.status != 1))'
|
|
|
- :value="item.code" color="#fff" :disabled="item.disabled"
|
|
|
+ :value="item.code" color="#fff" :disabled="outObj.isStraight == 1"
|
|
|
:checked="item.checked" />
|
|
|
</view>
|
|
|
|
|
|
@@ -149,7 +163,7 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="items" v-if="item.isDemandQuantity">
|
|
|
- <text>数量</text>{{ item.demandQuantity }}
|
|
|
+ <text>数量</text>{{ item.count * ( checkListLen || 1 ) }}
|
|
|
</view>
|
|
|
<view class="items content_num" v-if="!item.isDemandQuantity">
|
|
|
<text>数量</text> <input style="8rpx !important"
|
|
|
@@ -343,7 +357,7 @@
|
|
|
},
|
|
|
|
|
|
close() {
|
|
|
- EventBus.$off('outEvent');
|
|
|
+
|
|
|
this.show = false
|
|
|
},
|
|
|
|
|
|
@@ -421,15 +435,16 @@
|
|
|
...this.outObj,
|
|
|
isRelease: 0,
|
|
|
bomMaterialList: this.bomMaterialList,
|
|
|
- pickOutInList: this.pickOutInList.filter(f => f.checked == true) ,
|
|
|
+ pickOutInList: this.pickOutInList.filter(f => f.checked == true),
|
|
|
materialList: this.materialList,
|
|
|
standardOutputList: this.standardOutputList,
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
applyoutsourceSave(param).then(res => {
|
|
|
- this.$emit('close', true)
|
|
|
- this.close()
|
|
|
-
|
|
|
+ this.$emit('close', true)
|
|
|
+ this.checkListLen = 0
|
|
|
+ this.close()
|
|
|
+
|
|
|
})
|
|
|
},
|
|
|
}
|