sov
This commit is contained in:
@@ -107,11 +107,26 @@ uni-button:after {
|
|||||||
text-align-last: justify;
|
text-align-last: justify;
|
||||||
text-justify: inter-ideograph;/*兼容ie*/
|
text-justify: inter-ideograph;/*兼容ie*/
|
||||||
}
|
}
|
||||||
|
.filter_label_1 {
|
||||||
|
line-height: 30rpx;
|
||||||
|
}
|
||||||
.filter_input_wraper {
|
.filter_input_wraper {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 80rpx;
|
height: 80rpx;
|
||||||
padding: 5rpx 0;
|
padding: 5rpx 0;
|
||||||
margin-left: 30rpx;
|
margin-left: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.filter_input_wraper_1 {
|
||||||
|
height: 30rpx;
|
||||||
|
}
|
||||||
|
.filter_input_wraper_inn_text {
|
||||||
|
line-height: 30rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #606266;
|
||||||
|
margin-left: 10rpx;
|
||||||
}
|
}
|
||||||
.filter_input {
|
.filter_input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
handleChange ($event) {
|
handleChange ($event) {
|
||||||
this.cur = $event.target.value
|
this.cur = $event.target.value
|
||||||
this.$emit('input', this.cur)
|
this.$emit('input', this.cur)
|
||||||
|
this.$emit('handleChange', this.cur)
|
||||||
},
|
},
|
||||||
toSearch () {
|
toSearch () {
|
||||||
this.$emit('toSearch', this.cur)
|
this.$emit('toSearch', this.cur)
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
<view class="filter_input_wraper">
|
<view class="filter_input_wraper">
|
||||||
<search-box
|
<search-box
|
||||||
v-model="val1"
|
v-model="val1"
|
||||||
|
@handleChange="handleChange"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -23,6 +24,15 @@
|
|||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label_wraper">
|
||||||
|
<span class="filter_label filter_label_1"></span>
|
||||||
|
</view>
|
||||||
|
<view class="filter_input_wraper filter_input_wraper_1">
|
||||||
|
<view class="iconfont icon_unchecked" :class="{'icon_checked': isV === '1'}" @tap="isVirtual"></view>
|
||||||
|
<view class="filter_input_wraper_inn_text">虚拟库</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd_wrapper grid-wraper">
|
<view class="zd_wrapper grid-wraper">
|
||||||
<view class="slide_new">
|
<view class="slide_new">
|
||||||
@@ -50,9 +60,8 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="submit-bar">
|
<view class="submit-bar">
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId || !val2}" :disabled="disabled" @tap="_stConfirm">入库确认</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="_stConfirm">入库确认</button>
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled1" @tap="_stPrint">补码</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled1" @tap="_stPrint">补码</button>
|
||||||
<button class="submit-button" @tap="_boxQuery">查询</button>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -70,6 +79,7 @@
|
|||||||
return {
|
return {
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
|
isV: '0',
|
||||||
dataList: [],
|
dataList: [],
|
||||||
pkId: '',
|
pkId: '',
|
||||||
pkObj: {},
|
pkObj: {},
|
||||||
@@ -77,24 +87,28 @@
|
|||||||
disabled1: false
|
disabled1: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created () {
|
|
||||||
this._boxQuery()
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
|
/** 虚拟库 */
|
||||||
|
isVirtual () {
|
||||||
|
this.isV = this.isV === '0' ? '1' : '0'
|
||||||
|
},
|
||||||
|
handleChange (e) {
|
||||||
|
this._boxQuery(e)
|
||||||
|
},
|
||||||
/** 初始化查询 */
|
/** 初始化查询 */
|
||||||
async _boxQuery () {
|
async _boxQuery () {
|
||||||
let res = await boxQuery(this.val1, this.val2, '2')
|
let res = await boxQuery(e, '2')
|
||||||
this.dataList = [...res.data]
|
this.dataList = [...res.data]
|
||||||
},
|
},
|
||||||
/** 确认 */
|
/** 确认 */
|
||||||
async _stConfirm () {
|
async _stConfirm () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
if (!this.val2 || !this.pkId) {
|
if (!this.pkId) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await stConfirm(this.pkObj, this.val2)
|
let res = await stConfirm(this.pkObj, this.val2, '2', this.isV)
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -102,7 +116,7 @@
|
|||||||
this.pkId = ''
|
this.pkId = ''
|
||||||
this.pkObj = {}
|
this.pkObj = {}
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
this._boxQuery()
|
this._boxQuery(this.val1)
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
<view class="filter_input_wraper">
|
<view class="filter_input_wraper">
|
||||||
<search-box
|
<search-box
|
||||||
v-model="val1"
|
v-model="val1"
|
||||||
|
@handleChange="handleChange"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -23,6 +24,21 @@
|
|||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label_wraper">
|
||||||
|
<span class="filter_label filter_label_1"></span>
|
||||||
|
</view>
|
||||||
|
<view class="filter_input_wraper filter_input_wraper_1">
|
||||||
|
<view class="iconfont icon_unchecked" :class="{'icon_checked': isV === '1'}" @tap="isVirtual"></view>
|
||||||
|
<view class="filter_input_wraper_inn_text">虚拟库</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label">木箱料号</view>
|
||||||
|
<view class="filter_input_wraper">
|
||||||
|
<input type="text" class="filter_input" v-model="val3">
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd_wrapper grid-wraper">
|
<view class="zd_wrapper grid-wraper">
|
||||||
<view class="slide_new">
|
<view class="slide_new">
|
||||||
@@ -50,8 +66,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="submit-bar">
|
<view class="submit-bar">
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId || !val2}" :disabled="disabled" @tap="_stConfirm">入库确认</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="_stConfirm">入库确认</button>
|
||||||
<button class="submit-button" @tap="_boxQuery">查询</button>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -69,30 +84,36 @@
|
|||||||
return {
|
return {
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
|
val3: '',
|
||||||
|
isV: '0',
|
||||||
dataList: [],
|
dataList: [],
|
||||||
pkId: '',
|
pkId: '',
|
||||||
pkObj: {},
|
pkObj: {},
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created () {
|
|
||||||
this._boxQuery()
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
|
/** 虚拟库 */
|
||||||
|
isVirtual () {
|
||||||
|
this.isV = this.isV === '0' ? '1' : '0'
|
||||||
|
},
|
||||||
|
handleChange (e) {
|
||||||
|
this._boxQuery(e)
|
||||||
|
},
|
||||||
/** 初始化查询 */
|
/** 初始化查询 */
|
||||||
async _boxQuery () {
|
async _boxQuery (e) {
|
||||||
let res = await boxQuery(this.val1, this.val2, '3')
|
let res = await boxQuery(e, '3')
|
||||||
this.dataList = [...res.data]
|
this.dataList = [...res.data]
|
||||||
},
|
},
|
||||||
/** 确认 */
|
/** 确认 */
|
||||||
async _stConfirm () {
|
async _stConfirm () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
if (!this.val2 || !this.pkId) {
|
if (!this.pkId) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await stConfirm(this.pkObj, this.val2)
|
let res = await stConfirm(this.pkObj, this.val2, '3', this.isV, this.val3)
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -100,7 +121,7 @@
|
|||||||
this.pkId = ''
|
this.pkId = ''
|
||||||
this.pkObj = {}
|
this.pkObj = {}
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
this._boxQuery()
|
this._boxQuery(this.val1)
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
<view class="filter_input_wraper">
|
<view class="filter_input_wraper">
|
||||||
<search-box
|
<search-box
|
||||||
v-model="val1"
|
v-model="val1"
|
||||||
|
@handleChange="handleChange"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -23,6 +24,15 @@
|
|||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label_wraper">
|
||||||
|
<span class="filter_label filter_label_1"></span>
|
||||||
|
</view>
|
||||||
|
<view class="filter_input_wraper filter_input_wraper_1">
|
||||||
|
<view class="iconfont icon_unchecked" :class="{'icon_checked': isV === '1'}" @tap="isVirtual"></view>
|
||||||
|
<view class="filter_input_wraper_inn_text">虚拟库</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd_wrapper grid-wraper">
|
<view class="zd_wrapper grid-wraper">
|
||||||
<view class="slide_new">
|
<view class="slide_new">
|
||||||
@@ -50,8 +60,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="submit-bar">
|
<view class="submit-bar">
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId || !val2}" :disabled="disabled" @tap="_stConfirm">入库确认</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="_stConfirm">入库确认</button>
|
||||||
<button class="submit-button" @tap="_boxQuery">查询</button>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -69,30 +78,35 @@
|
|||||||
return {
|
return {
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
|
isV: '0',
|
||||||
dataList: [],
|
dataList: [],
|
||||||
pkId: '',
|
pkId: '',
|
||||||
pkObj: {},
|
pkObj: {},
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created () {
|
|
||||||
this._boxQuery()
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
|
/** 虚拟库 */
|
||||||
|
isVirtual () {
|
||||||
|
this.isV = this.isV === '0' ? '1' : '0'
|
||||||
|
},
|
||||||
|
handleChange (e) {
|
||||||
|
this._boxQuery(e)
|
||||||
|
},
|
||||||
/** 初始化查询 */
|
/** 初始化查询 */
|
||||||
async _boxQuery () {
|
async _boxQuery (e) {
|
||||||
let res = await boxQuery(this.val1, this.val2, '1')
|
let res = await boxQuery(e, '1')
|
||||||
this.dataList = [...res.data]
|
this.dataList = [...res.data]
|
||||||
},
|
},
|
||||||
/** 确认 */
|
/** 确认 */
|
||||||
async _stConfirm () {
|
async _stConfirm () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
if (!this.val2 || !this.pkId) {
|
if (!this.pkId) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await stConfirm(this.pkObj, this.val2)
|
let res = await stConfirm(this.pkObj, this.val2, '1', this.isV)
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -100,7 +114,7 @@
|
|||||||
this.pkId = ''
|
this.pkId = ''
|
||||||
this.pkObj = {}
|
this.pkObj = {}
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
this._boxQuery()
|
this._boxQuery(this.val1)
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
|
|||||||
@@ -62,7 +62,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="submit-bar">
|
<view class="submit-bar">
|
||||||
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="_outconfirmInstor">确认出库</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId || !val1}" :disabled="disabled" @tap="_outconfirmInstor">确认出库</button>
|
||||||
<button class="submit-button" @tap="_outcoolIOQuery">查询</button>
|
<button class="submit-button" @tap="_outcoolIOQuery">查询</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -104,18 +104,18 @@
|
|||||||
},
|
},
|
||||||
/** 初始化查询 */
|
/** 初始化查询 */
|
||||||
async _outcoolIOQuery () {
|
async _outcoolIOQuery () {
|
||||||
let res = await outcoolIOQuery(this.val2, this.index, this.val1)
|
let res = await outcoolIOQuery(this.val2, this.index)
|
||||||
this.dataList = [...res.data]
|
this.dataList = [...res.data]
|
||||||
},
|
},
|
||||||
/** 确认 */
|
/** 确认 */
|
||||||
async _outconfirmInstor () {
|
async _outconfirmInstor () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
if (!this.pkId) {
|
if (!this.pkId || !this.val1) {
|
||||||
this.disabled = false
|
this.disabled = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await outconfirmInstor(this.pkObj)
|
let res = await outconfirmInstor(this.pkObj, this.val1)
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
|
|||||||
@@ -24,7 +24,11 @@
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
<<<<<<< HEAD
|
||||||
menu: [{url: '/pages/ProductManage/SboProdProgress', name: '生箔生产进度'}, {url: '/pages/ProductManage/SboProcess', name: '生箔工序'}, {url: '/pages/ProductManage/BakeProcess', name: '烘烤工序'}, {url: '/pages/ProductManage/PointManage', name: '点位管理'}, {url: '/pages/ProductManage/EmptyPipeInStore', name: '空管入库'}, {url: '/pages/ProductManage/ZjCasing', name: '子卷套管'}, {url: '/pages/ProductManage/ZjDelivery', name: '子卷配送'}, {url: '/pages/ProductManage/ZjOutStore', name: '子卷出站'}, {url: '/pages/WarehouseManage/SemifinishedInStore', name: '半成品入库'}, {url: '/pages/WarehouseManage/SemifinishedOutStore', name: '半成品出库'}, {url: '/pages/WarehouseManage/ReturngoodsInStore', name: '退货入库'}, {url: '/pages/WarehouseManage/ScrapInStore', name: '报废入库'}, {url: '/pages/WarehouseManage/InStoreConfirm', name: '入库确认'}, {url: '/pages/WarehouseManage/ProdDeliveryConfirm', name: '生产区发货确认'}, {url: '/pages/WarehouseManage/XuniDeliveryConfirm', name: '虚拟区发货确认'}, {url: '/pages/WarehouseManage/EmptyInStore', name: '空载具入库'}, {url: '/pages/WarehouseManage/EmptyOutStore', name: '空载具出库'}]
|
menu: [{url: '/pages/ProductManage/SboProdProgress', name: '生箔生产进度'}, {url: '/pages/ProductManage/SboProcess', name: '生箔工序'}, {url: '/pages/ProductManage/BakeProcess', name: '烘烤工序'}, {url: '/pages/ProductManage/PointManage', name: '点位管理'}, {url: '/pages/ProductManage/EmptyPipeInStore', name: '空管入库'}, {url: '/pages/ProductManage/ZjCasing', name: '子卷套管'}, {url: '/pages/ProductManage/ZjDelivery', name: '子卷配送'}, {url: '/pages/ProductManage/ZjOutStore', name: '子卷出站'}, {url: '/pages/WarehouseManage/SemifinishedInStore', name: '半成品入库'}, {url: '/pages/WarehouseManage/SemifinishedOutStore', name: '半成品出库'}, {url: '/pages/WarehouseManage/ReturngoodsInStore', name: '退货入库'}, {url: '/pages/WarehouseManage/ScrapInStore', name: '报废入库'}, {url: '/pages/WarehouseManage/InStoreConfirm', name: '入库确认'}, {url: '/pages/WarehouseManage/ProdDeliveryConfirm', name: '生产区发货确认'}, {url: '/pages/WarehouseManage/XuniDeliveryConfirm', name: '虚拟区发货确认'}, {url: '/pages/WarehouseManage/EmptyInStore', name: '空载具入库'}, {url: '/pages/WarehouseManage/EmptyOutStore', name: '空载具出库'}]
|
||||||
|
=======
|
||||||
|
menu: [{url: '/pages/ProductManage/SboProdProgress', name: '生箔生产进度'}, {url: '/pages/ProductManage/SboProcess', name: '生箔工序'}, {url: '/pages/ProductManage/BakeProcess', name: '烘烤工序'}, {url: '/pages/ProductManage/PointManage', name: '点位管理'}, {url: '/pages/ProductManage/EmptyPipeInStore', name: '空管入库'}, {url: '/pages/ProductManage/ZjCasing', name: '子卷套管'}, {url: '/pages/ProductManage/ZjDelivery', name: '子卷配送'}, {url: '/pages/ProductManage/ZjOutStore', name: '子卷出站'}, {url: '/pages/WarehouseManage/SemifinishedInStore', name: '半成品入库'}, {url: '/pages/WarehouseManage/SemifinishedOutStore', name: '半成品出库'}, {url: '/pages/WarehouseManage/ReturngoodsInStore', name: '退货入库'}, {url: '/pages/WarehouseManage/ScrapInStore', name: '报废入库'}, {url: '/pages/WarehouseManage/InStoreConfirm', name: '生产入库'}]
|
||||||
|
>>>>>>> 622a0f92be7f55d52a19e61e766a1a4fd6beb281
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
|
|||||||
@@ -122,15 +122,15 @@ export const outcoolIOQuery = (name, area, code) => request({
|
|||||||
url:'api/pda/coolOut/coolIOQuery',
|
url:'api/pda/coolOut/coolIOQuery',
|
||||||
data: {
|
data: {
|
||||||
container_name: name,
|
container_name: name,
|
||||||
product_area: area,
|
product_area: area
|
||||||
point_code: code
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
// 1.2确认出库
|
// 1.2确认出库
|
||||||
export const outconfirmInstor = (raw_jo, code, is_bake) => request({
|
export const outconfirmInstor = (raw_jo, code, is_bake) => request({
|
||||||
url:'api/pda/coolOut/confirmInstor',
|
url:'api/pda/coolOut/confirmInstor',
|
||||||
data: {
|
data: {
|
||||||
raw_jo: raw_jo
|
raw_jo: raw_jo,
|
||||||
|
point_code: code
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -142,21 +142,23 @@ export const boxQuery = (no, option, code) => request({
|
|||||||
url:'api/pda/st/boxQuery',
|
url:'api/pda/st/boxQuery',
|
||||||
data: {
|
data: {
|
||||||
box_no: no,
|
box_no: no,
|
||||||
option: option,
|
option: option
|
||||||
point_code: code
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
// 1.2确认出库
|
// 1.2确认入库
|
||||||
export const stConfirm = (box_jo, code) => request({
|
export const stConfirm = (box_jo, code, option, is, mcode) => request({
|
||||||
url:'api/pda/st/confirm',
|
url:'api/pda/st/confirm',
|
||||||
data: {
|
data: {
|
||||||
box_jo: box_jo,
|
box_jo: box_jo,
|
||||||
point_code: code
|
point_code: code,
|
||||||
|
option: option,
|
||||||
|
is_virtual: is,
|
||||||
|
material_code: mcode
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 入库确认
|
* 生产入库
|
||||||
*/
|
*/
|
||||||
// 1.3补码
|
// 1.3补码
|
||||||
export const stPrint = (box_jo) => request({
|
export const stPrint = (box_jo) => request({
|
||||||
|
|||||||
Reference in New Issue
Block a user