接口
This commit is contained in:
@@ -21,39 +21,9 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd_wrapper grid-wraper">
|
|
||||||
<view class="slide_new">
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>木箱码</th>
|
|
||||||
<th>子卷号</th>
|
|
||||||
<th>物料编码</th>
|
|
||||||
<th>物料名称</th>
|
|
||||||
<th>重量kg</th>
|
|
||||||
<th>更换外包</th>
|
|
||||||
<th>更换内包</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.package_box_sn === pkId, 'bgyellow': e.colro_flag === '1'}">
|
|
||||||
<td>{{e.package_box_sn}}</td>
|
|
||||||
<td>{{e.container_name}}</td>
|
|
||||||
<td>{{e.product_name}}</td>
|
|
||||||
<td>{{e.product_description}}</td>
|
|
||||||
<td>{{e.net_weight}}</td>
|
|
||||||
<td>{{e.change_out}}</td>
|
|
||||||
<td>{{e.change_in}}</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
<view class="submit-bar">
|
<view class="submit-bar">
|
||||||
<button class="submit-button" :class="{'btn-disabled': !dataList.length}" :disabled="disabled1" @tap="_stoutConfirm">出库确认</button>
|
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled1" @tap="_abnormalOut">解锁</button>
|
||||||
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled2" @tap="_stdeliverApply">发货申请</button>
|
|
||||||
<button class="submit-button" @tap="_stivtQuery(val1, val2)">查询</button>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -61,7 +31,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import NavBar from '@/components/NavBar.vue'
|
import NavBar from '@/components/NavBar.vue'
|
||||||
import SearchBox from '@/components/SearchBox.vue'
|
import SearchBox from '@/components/SearchBox.vue'
|
||||||
import {stivtQuery, stoutConfirm, stoutPrint, stdeliverApply} from '@/utils/getData1.js'
|
import {abnormalOut} from '@/utils/getData1.js'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
NavBar,
|
NavBar,
|
||||||
@@ -71,72 +41,23 @@
|
|||||||
return {
|
return {
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
dataList: [],
|
disabled1: false
|
||||||
pkId: '',
|
|
||||||
pkObj: {},
|
|
||||||
disabled1: false,
|
|
||||||
disabled2: false
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created () {
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
handleChange1 (e) {
|
handleChange1 (e) {
|
||||||
this._stivtQuery(e, this.val2)
|
|
||||||
},
|
},
|
||||||
handleChange2 (e) {
|
handleChange2 (e) {
|
||||||
this._stivtQuery(this.val1, e)
|
|
||||||
},
|
},
|
||||||
/** 初始化查询 */
|
async _abnormalOut () {
|
||||||
async _stivtQuery (val1, val2) {
|
|
||||||
let res = await stivtQuery(val1, val2)
|
|
||||||
this.dataList = [...res.data]
|
|
||||||
},
|
|
||||||
async _stoutConfirm () {
|
|
||||||
this.disabled1 = true
|
this.disabled1 = true
|
||||||
try {
|
|
||||||
let res = await stoutConfirm(this.dataList, this.val1)
|
|
||||||
this.disabled1 = false
|
|
||||||
this.pkId = ''
|
|
||||||
this.pkObj = {}
|
|
||||||
this._stivtQuery(this.val1, this.val2)
|
|
||||||
uni.showToast({
|
|
||||||
title: res.message,
|
|
||||||
icon: 'none'
|
|
||||||
})
|
|
||||||
} catch (e) {
|
|
||||||
this.disabled1 = false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
async _stdeliverApply () {
|
|
||||||
this.disabled2 = true
|
|
||||||
if (!this.val1 || !this.val2) {
|
if (!this.val1 || !this.val2) {
|
||||||
this.disabled2 = false
|
|
||||||
return
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
let res = await stdeliverApply(this.val1, this.val2)
|
|
||||||
this.disabled2 = false
|
|
||||||
uni.showToast({
|
|
||||||
title: res.message,
|
|
||||||
icon: 'none'
|
|
||||||
})
|
|
||||||
} catch (e) {
|
|
||||||
this.disabled2 = false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
async _stoutPrint () {
|
|
||||||
this.disabled1 = true
|
|
||||||
if (!this.pkId) {
|
|
||||||
this.disabled1 = false
|
this.disabled1 = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await stoutPrint(this.pkObj)
|
let res = await abnormalOut(this.val1, this.val2)
|
||||||
this.disabled1 = false
|
this.disabled1 = false
|
||||||
this.pkId = ''
|
|
||||||
this.pkObj = {}
|
|
||||||
this._stivtQuery(this.val1, this.val2)
|
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: res.message,
|
title: res.message,
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
@@ -144,10 +65,6 @@
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.disabled1 = false
|
this.disabled1 = false
|
||||||
}
|
}
|
||||||
},
|
|
||||||
toCheck (e) {
|
|
||||||
this.pkId = this.pkId === e.package_box_sn ? '' : e.package_box_sn
|
|
||||||
this.pkObj = this.pkId === e.package_box_sn ? e : {}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -310,3 +310,15 @@ export const checknormal = (crows, ccode) => request({
|
|||||||
check_code: ccode
|
check_code: ccode
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 异常出库解锁
|
||||||
|
*/
|
||||||
|
// 1.1解锁
|
||||||
|
export const abnormalOut = (bno, pcode) => request({
|
||||||
|
url: 'api/pda/st/abnormalOut',
|
||||||
|
data: {
|
||||||
|
box_no: bno,
|
||||||
|
point_code: pcode
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user