隐藏普通发货功能,使用分包裹发货

master
chc 2024-02-18 16:12:26 +08:00
parent 4f7846dc4e
commit c0385414ca
1 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,7 @@
<Button @click="orderLogModal = true" type="primary">订单日志</Button> <Button @click="orderLogModal = true" type="primary">订单日志</Button>
<Button @click="printOrder" type="primary" ghost style="float:right;">打印发货单</Button> <Button @click="printOrder" type="primary" ghost style="float:right;">打印发货单</Button>
<Button v-if="allowOperation.take" @click="orderTake" type="primary"></Button> <Button v-if="allowOperation.take" @click="orderTake" type="primary"></Button>
<Button v-if="allowOperation.ship" @click="orderDeliver" type="primary"></Button> <!-- <Button v-if="allowOperation.ship" @click="orderDeliver" type="primary"></Button> -->
<Button v-if="allowOperation.ship" @click="groupShip" type="primary"></Button> <Button v-if="allowOperation.ship" @click="groupShip" type="primary"></Button>
@ -420,7 +420,7 @@
<Form :model="faceSheetForm" ref="faceSheetForm" v-if="facesheetFlag" :rules="faceSheetFormValidate"> <Form :model="faceSheetForm" ref="faceSheetForm" v-if="facesheetFlag" :rules="faceSheetFormValidate">
<FormItem label="物流公司" prop="logisticsId" style="position: relative" :label-width="90"> <FormItem label="物流公司" prop="logisticsId" style="position: relative" :label-width="90">
<Select v-model="faceSheetForm.logisticsId" placeholder="请选择" style="width: 250px"> <Select v-model="faceSheetForm.logisticsId" placeholder="请选择" style="width: 250px">
<Option v-for="(item, i) in checkedLogistics" :key="i" :value="item.logisticsId">{{ item.name }} <Option v-for="(item, i) in checkedLogistics" :key="i" :value="item.id">{{ item.name }}
</Option> </Option>
</Select> </Select>
</FormItem> </FormItem>
@ -429,7 +429,7 @@
:rules="orderDeliverFormValidate" style="position: relative"> :rules="orderDeliverFormValidate" style="position: relative">
<FormItem label="物流公司" prop="logisticsId"> <FormItem label="物流公司" prop="logisticsId">
<Select v-model="orderDeliveryForm.logisticsId" placeholder="请选择" style="width: 250px"> <Select v-model="orderDeliveryForm.logisticsId" placeholder="请选择" style="width: 250px">
<Option v-for="(item, i) in checkedLogistics" :key="i" :value="item.logisticsId">{{ item.name }} <Option v-for="(item, i) in checkedLogistics" :key="i" :value="item.id">{{ item.name }}
</Option> </Option>
</Select> </Select>
</FormItem> </FormItem>
@ -1116,6 +1116,7 @@ export default {
} }
}) })
} else { } else {
console.log("this.orderDeliveryForm",this.orderDeliveryForm)
this.$refs['orderDeliveryForm'].validate((valid) => { this.$refs['orderDeliveryForm'].validate((valid) => {
if (valid) { if (valid) {
API_Order.orderDelivery(this.sn, this.orderDeliveryForm).then( API_Order.orderDelivery(this.sn, this.orderDeliveryForm).then(