|
|
|
@ -367,6 +367,7 @@
|
|
|
|
|
<el-form-item label="运费小计:" label-width="fit-content" class="el-times"> |
|
|
|
|
<el-input-number |
|
|
|
|
:controls="false" |
|
|
|
|
@change="handlePayWay" |
|
|
|
|
v-model="item.subtotalFreight" |
|
|
|
|
controls-position="right" |
|
|
|
|
:precision="2" |
|
|
|
@ -402,7 +403,7 @@
|
|
|
|
|
<div class="table-row-title" style="margin-bottom: 10px"> |
|
|
|
|
<div class="table-row-title-item fwb"> |
|
|
|
|
合计费用 |
|
|
|
|
<span class="red">{{ totalCost }}</span> |
|
|
|
|
<span class="red" style="margin-left: 10px">{{ totalCost }}</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
@ -560,6 +561,7 @@
|
|
|
|
|
v-model="query.payWay" |
|
|
|
|
:teleported="false" |
|
|
|
|
class="m-2" |
|
|
|
|
@change="handlePayWay" |
|
|
|
|
placeholder="付款方式" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
@ -739,15 +741,35 @@
|
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<div class="flex-c-c"> |
|
|
|
|
<el-button icon="Close" @click="back">关闭</el-button> |
|
|
|
|
<el-button type="primary" icon="Position" @click="handleSubmit(ruleFormRef)" |
|
|
|
|
>提交</el-button |
|
|
|
|
> |
|
|
|
|
<!-- <el-button type="primary" icon="Refresh" @click="handleRefresh">重置</el-button> --> |
|
|
|
|
<el-button type="primary" icon="Close" @click="back">关闭</el-button> |
|
|
|
|
<!-- <el-button type="primary" icon="Refresh" @click="onLoad">重置</el-button> --> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-form> |
|
|
|
|
</basic-container> |
|
|
|
|
|
|
|
|
|
<!-- 选取订单 --> |
|
|
|
|
<el-dialog |
|
|
|
|
title="提示" |
|
|
|
|
:center="true" |
|
|
|
|
:align-center="true" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
:close-on-press-escape="false" |
|
|
|
|
:show-close="false" |
|
|
|
|
:visible.sync="details.popUpShow.titleVisited" |
|
|
|
|
width="30%" |
|
|
|
|
v-model="details.popUpShow.titleVisited" |
|
|
|
|
> |
|
|
|
|
<div style="text-align: center">是否继续开单</div> |
|
|
|
|
<div class="flex-c-c mt20"> |
|
|
|
|
<el-button icon="CircleClose" @click="back">取 消</el-button> |
|
|
|
|
<el-button type="primary" icon="CircleCheck" @click="handleRepetition">确 认</el-button> |
|
|
|
|
<!-- <el-button type="primary" icon="Printer" @click="handlePrint">打 印</el-button> --> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -869,7 +891,7 @@ const details = reactive<any>({
|
|
|
|
|
/** 支付方式 */ |
|
|
|
|
payType: '', |
|
|
|
|
/** 付款方式 */ |
|
|
|
|
payWay: '', |
|
|
|
|
payWay: '2', |
|
|
|
|
/** 现付 */ |
|
|
|
|
xianPay: 0, |
|
|
|
|
/** 到付 */ |
|
|
|
@ -884,13 +906,13 @@ const details = reactive<any>({
|
|
|
|
|
/** 三方操作费 */ |
|
|
|
|
thirdOperationFee: 0, |
|
|
|
|
/** 送货方式 */ |
|
|
|
|
deliveryWay: '', |
|
|
|
|
deliveryWay: '1', |
|
|
|
|
/** 紧急度 */ |
|
|
|
|
urgency: '', |
|
|
|
|
urgency: '1', |
|
|
|
|
/** 回单方式(多选) */ |
|
|
|
|
receipt: '', |
|
|
|
|
receipt: [], |
|
|
|
|
/** 运输方式 */ |
|
|
|
|
transportType: '', |
|
|
|
|
transportType: '1', |
|
|
|
|
/** 开单人 */ |
|
|
|
|
openOrderUserName: '', |
|
|
|
|
/** 回单数 */ |
|
|
|
@ -900,7 +922,7 @@ const details = reactive<any>({
|
|
|
|
|
/** 备注 */ |
|
|
|
|
remark: '', |
|
|
|
|
/** 运单类型 */ |
|
|
|
|
waybillType: 1, |
|
|
|
|
waybillType: 2, |
|
|
|
|
}, |
|
|
|
|
/** 合计 */ |
|
|
|
|
totalObj: { |
|
|
|
@ -1233,8 +1255,11 @@ const details = reactive<any>({
|
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
payRules: [], |
|
|
|
|
|
|
|
|
|
/** 弹出层显示 */ |
|
|
|
|
popUpShow: { |
|
|
|
|
/** 是否继续开单 */ |
|
|
|
|
titleVisited: false, |
|
|
|
|
}, |
|
|
|
|
itemRules: { |
|
|
|
|
/** 计价方式 */ |
|
|
|
|
chargeType: [ |
|
|
|
@ -1281,7 +1306,7 @@ const details = reactive<any>({
|
|
|
|
|
submitData: {}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { query, data, drawerShow, page, loadingObj } = toRefs(details); |
|
|
|
|
const { query, data, drawerShow, loadingObj } = toRefs(details); |
|
|
|
|
|
|
|
|
|
// 合计费用 |
|
|
|
|
const totalCost = computed(() => { |
|
|
|
@ -1378,6 +1403,8 @@ const initPageInfo = async () => {
|
|
|
|
|
details.query.openOrderDate = data.warehouseWaybill.createTime; |
|
|
|
|
details.query.orderCode = data.warehouseWaybill.orderNo; |
|
|
|
|
details.query.transportType = '1'; |
|
|
|
|
details.query.deliveryWay = '1'; |
|
|
|
|
details.query.urgency = '1'; |
|
|
|
|
details.query.receipt = data.warehouseWaybill.receipt |
|
|
|
|
? data.warehouseWaybill.receipt.split(',') |
|
|
|
|
: []; |
|
|
|
@ -1471,6 +1498,9 @@ const onLoad = async () => {
|
|
|
|
|
details.info.payWayList.find(val => val.dictValue === '到付').dictKey || '2'; |
|
|
|
|
} |
|
|
|
|
details.query.transportType = '1'; |
|
|
|
|
details.query.deliveryWay = '1'; |
|
|
|
|
details.query.urgency = '1'; |
|
|
|
|
details.query.destination = ''; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 新增 */ |
|
|
|
@ -1567,6 +1597,7 @@ const handleComputed = (row: any) => {
|
|
|
|
|
else if (row.chargeType === 3) |
|
|
|
|
row.subtotalFreight = computeNumber(row.weight, '*', row.price).result; |
|
|
|
|
// row.subtotalFreight = 1; |
|
|
|
|
handlePayWay(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
let _ant = null; |
|
|
|
@ -1840,13 +1871,14 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (res.data.code !== 200) return; |
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '开单成功', |
|
|
|
|
message: msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
back(); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
// 开启提示框, 是否继续开单 |
|
|
|
|
if (details.pageInfo.type === 'add') details.popUpShow.titleVisited = true; |
|
|
|
|
} else { |
|
|
|
|
console.log('error submit!'); |
|
|
|
|
return false; |
|
|
|
@ -1854,6 +1886,11 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 重复开单 */ |
|
|
|
|
const handleRepetition = () => { |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
watch( |
|
|
|
|
() => $route.query, |
|
|
|
|
() => { |
|
|
|
|