Commit 1147f4c5 authored by honghy's avatar honghy

需求121 PDA-集运签收-批量签收

parent 9c67c3bc
...@@ -66,7 +66,7 @@ export const selectPda = (params) => { ...@@ -66,7 +66,7 @@ export const selectPda = (params) => {
* 生成快递单号 * 生成快递单号
*/ */
export function getCourierNumber() { export function getCourierNumber() {
return http(`/ecw/cons/getCourierNumber`, { return http(`/ecw/cons/courier/number`, {
method: 'GET', method: 'GET',
}) })
} }
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
@submit="keyword=$event;search()" @submit="keyword=$event;search()"
></scanlistener> ></scanlistener>
<!-- <text class="cuIcon-scan" style="font-size: 21px;" @click="scanCode"></text> --> <!-- <text class="cuIcon-scan" style="font-size: 21px;" @click="scanCode"></text> -->
<button class="margin-left-xs" type="primary" size="mini" @click="batchSign()" <button class="margin-left-xs" type="primary" size="mini" @click="getCourierNumber()"
style="float: right;margin-top: 10rpx"> style="float: right;margin-top: 10rpx">
{{ $t('生成单号') }} {{ $t('生成单号') }}
</button> </button>
...@@ -128,15 +128,17 @@ ...@@ -128,15 +128,17 @@
</view> </view>
</uni-forms> </uni-forms>
<uni-row class="padding-xl"> <uni-row class="padding-xl text-center">
<uni-col :span="12"> <uni-col :span="12">
<button type="primary" size="mini" @click="submit('form')">{{ $t('签收完成') }}</button> <button type="primary" size="mini" @click="submit('form')" v-if="!newTag">
{{ $t('签收完成') }}
</button>
</uni-col> </uni-col>
<uni-col :span="12"> <uni-col :span="12">
<button size="mini" @click="goList">{{ $t('取消') }}</button> <button size="mini" @click="goList">{{ $t('取消') }}</button>
</uni-col> </uni-col>
<uni-col :span="12"> <uni-col :span="12">
<button type="primary" size="mini" @click="submitModel('form')"> <button type="primary" size="mini" @click="submitModel('form')" v-if="newTag">
{{ $t('添加包裹并签收完成') }} {{ $t('添加包裹并签收完成') }}
</button> </button>
</uni-col> </uni-col>
...@@ -192,7 +194,15 @@ ...@@ -192,7 +194,15 @@
<script> <script>
import {createCons, getConsById, getConsWarehouseApp, getExpressApp, selectPda, signedPda} from "@/api/cons"; import {
createCons,
getConsById,
getConsWarehouseApp,
getCourierNumber,
getExpressApp,
selectPda,
signedPda
} from "@/api/cons";
import {DICT_TYPE, getDictDatas} from "@/util/dict"; import {DICT_TYPE, getDictDatas} from "@/util/dict";
import {getProductList} from "@/pages/warehousing/api"; import {getProductList} from "@/pages/warehousing/api";
import selectCombox from "@/components/select-combox/select-combox.vue"; import selectCombox from "@/components/select-combox/select-combox.vue";
...@@ -280,6 +290,12 @@ export default { ...@@ -280,6 +290,12 @@ export default {
this.getProductList(); this.getProductList();
}, },
methods: { methods: {
getCourierNumber() {
getCourierNumber().then(row => {
this.keyword = row
this.getList()
})
},
goList() { goList() {
uni.navigateBack({ uni.navigateBack({
delta: 1 delta: 1
...@@ -299,7 +315,6 @@ export default { ...@@ -299,7 +315,6 @@ export default {
console.log(row) console.log(row)
}, },
getList() { getList() {
console.log(this.keyword)
if (this.keyword !== '') { if (this.keyword !== '') {
getConsById({expressNo: this.keyword}).then(row => { getConsById({expressNo: this.keyword}).then(row => {
if (row !== null) { if (row !== null) {
...@@ -329,7 +344,6 @@ export default { ...@@ -329,7 +344,6 @@ export default {
}) })
this.newTag = false this.newTag = false
this.form = row this.form = row
console.log(this.form, '1234143212')
} else { } else {
// 获取当前时间精确至[年、月、日、时、分、秒] // 获取当前时间精确至[年、月、日、时、分、秒]
var now = new Date() var now = new Date()
...@@ -457,6 +471,7 @@ export default { ...@@ -457,6 +471,7 @@ export default {
uni.scanCode({ uni.scanCode({
success: (res) => { success: (res) => {
this.keyword = res.result this.keyword = res.result
this.goList()
} }
}) })
}, },
...@@ -512,10 +527,12 @@ export default { ...@@ -512,10 +527,12 @@ export default {
} }
var form = { var form = {
...this.form, ...this.form,
mediaUrl: this.form.mediaUrl.map(e => e.url).join(','), mediaUrl: this.form.mediaUrl.map(e => e.url).join(',')
status: 1, }
signer: this.$store.getters.userInfo().id, if (form.needInspect === 0) {
signed: 1 form.status = 1
form.signer = this.$store.getters.userInfo().id
form.signed = 1
} }
if (form.mediaUrl === "") { if (form.mediaUrl === "") {
uni.showToast({ uni.showToast({
......
...@@ -355,10 +355,7 @@ export default { ...@@ -355,10 +355,7 @@ export default {
this.$refs[ref].validate().then(res => { this.$refs[ref].validate().then(res => {
var form = { var form = {
...this.cons, ...this.cons,
mediaUrl: this.cons.mediaUrl.map(e => e.url).join(','), mediaUrl: this.cons.mediaUrl.map(e => e.url).join(',')
status: 1,
signer: this.$store.getters.userInfo().id,
signed: 1
} }
if (form.mediaUrl === "") { if (form.mediaUrl === "") {
uni.showToast({ uni.showToast({
...@@ -367,6 +364,11 @@ export default { ...@@ -367,6 +364,11 @@ export default {
}) })
return return
} }
if (form.needInspect === 0) {
form.status = 1
form.signer = this.$store.getters.userInfo().id
form.signed = 1
}
signedPda(form).then(() => { signedPda(form).then(() => {
uni.showToast({ uni.showToast({
title: `签收成功` title: `签收成功`
......
...@@ -72,8 +72,8 @@ export default { ...@@ -72,8 +72,8 @@ export default {
}, },
}; };
}, },
created() { onShow() {
this.getData(this.keyword); this.getData();
}, },
methods: { methods: {
scanCode() { scanCode() {
...@@ -83,7 +83,7 @@ export default { ...@@ -83,7 +83,7 @@ export default {
} }
}) })
}, },
getData(keyword) { getData() {
let that = this let that = this
const params = { const params = {
page: this.page, page: this.page,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment