|
|
|
@ -566,31 +566,38 @@
|
|
|
|
|
prop="goodsName" |
|
|
|
|
class="el-times" |
|
|
|
|
> |
|
|
|
|
<el-input v-model="item.goodsName" placeholder="货物名称" disabled /> |
|
|
|
|
<!-- <SelectBox |
|
|
|
|
ref="goodsNameRef" |
|
|
|
|
className="goodsName" |
|
|
|
|
:input="() => debounce(handleFindGoods(item.goodsName, item, 1), 1000)" |
|
|
|
|
:focus="handleCloseSelcet" |
|
|
|
|
v-model="item.goodsName" |
|
|
|
|
placeholder="货物名称" |
|
|
|
|
> |
|
|
|
|
<div v-loading="item.loading"> |
|
|
|
|
<template v-if="item.goodsListOptions.length > 0"> |
|
|
|
|
<div |
|
|
|
|
:class="{ goodsNameRow: true, active: val.goodsId === item.goodsId }" |
|
|
|
|
v-for="val in item.goodsListOptions" |
|
|
|
|
:key="val.goodsId" |
|
|
|
|
@click="handleChooseGoods(item, val)" |
|
|
|
|
> |
|
|
|
|
{{ val.goodsName }} |
|
|
|
|
<!-- 有数据 --> |
|
|
|
|
<template v-if="details.submitType === 'haveData'"> |
|
|
|
|
<el-input v-model="item.goodsName" placeholder="货物名称" disabled /> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<!-- 无数据 --> |
|
|
|
|
<template v-else> |
|
|
|
|
<SelectBox |
|
|
|
|
ref="goodsNameRef" |
|
|
|
|
className="goodsName" |
|
|
|
|
:input="() => debounce(handleFindGoods(item.goodsName, item, 1), 1000)" |
|
|
|
|
:focus="handleCloseSelcet" |
|
|
|
|
v-model="item.goodsName" |
|
|
|
|
placeholder="货物名称" |
|
|
|
|
> |
|
|
|
|
<div v-loading="item.loading"> |
|
|
|
|
<template v-if="item.goodsListOptions.length > 0"> |
|
|
|
|
<div |
|
|
|
|
:class="{ goodsNameRow: true, active: val.goodsId === item.goodsId }" |
|
|
|
|
v-for="val in item.goodsListOptions" |
|
|
|
|
:key="val.goodsId" |
|
|
|
|
@click="handleChooseGoods(item, val)" |
|
|
|
|
> |
|
|
|
|
{{ val.goodsName }} |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<template v-else> |
|
|
|
|
<div class="goodsNameRow" @click="handleCloseSelcet">暂无数据</div> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<template v-else> |
|
|
|
|
<div class="goodsNameRow" @click="handleCloseSelcet">暂无数据</div> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</SelectBox> --> |
|
|
|
|
</SelectBox> |
|
|
|
|
</template> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="件数:" label-width="fit-content" prop="num" class="el-times"> |
|
|
|
@ -674,7 +681,14 @@
|
|
|
|
|
<div> |
|
|
|
|
<span class="mr20"> 合计 </span> |
|
|
|
|
|
|
|
|
|
<el-button type="primary" icon="Edit" @click="handleShow"> 配置包条品类 </el-button> |
|
|
|
|
<el-button |
|
|
|
|
v-if="details.submitType === 'haveData'" |
|
|
|
|
type="primary" |
|
|
|
|
icon="Edit" |
|
|
|
|
@click="handleShow" |
|
|
|
|
> |
|
|
|
|
配置包条品类 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- 货物名称 --> |
|
|
|
|
<div>{{ details.goodsList.length }}</div> |
|
|
|
@ -1689,176 +1703,6 @@ const details = reactive<any>({
|
|
|
|
|
vehicleTypeArr: [], |
|
|
|
|
/** 到站地区数组 */ |
|
|
|
|
regionOptione: [], |
|
|
|
|
/** 支付字典 */ |
|
|
|
|
payOption: [ |
|
|
|
|
{ |
|
|
|
|
label: '现金', |
|
|
|
|
value: 1, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '银行卡', |
|
|
|
|
value: 2, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '微信', |
|
|
|
|
value: 3, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '支付宝', |
|
|
|
|
value: 4, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '支票', |
|
|
|
|
value: 5, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '账本', |
|
|
|
|
value: 6, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 开单付款字典 */ |
|
|
|
|
paymentOption: [ |
|
|
|
|
{ |
|
|
|
|
label: '现付', |
|
|
|
|
value: 1, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '到付', |
|
|
|
|
value: 2, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '月结', |
|
|
|
|
value: 3, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '回付', |
|
|
|
|
value: 4, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '内部结算', |
|
|
|
|
value: 5, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '多笔付', |
|
|
|
|
value: 6, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 紧急度 */ |
|
|
|
|
emergencyOption: [ |
|
|
|
|
{ |
|
|
|
|
label: '正常', |
|
|
|
|
value: 1, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '急', |
|
|
|
|
value: 2, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '特急', |
|
|
|
|
value: 3, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '加急', |
|
|
|
|
value: 4, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 送货方式字典 */ |
|
|
|
|
shippingOption: [ |
|
|
|
|
{ |
|
|
|
|
label: '自提', |
|
|
|
|
value: 1, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '送货', |
|
|
|
|
value: 2, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '送货上门', |
|
|
|
|
value: 3, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '送货上门(有电梯)', |
|
|
|
|
value: 4, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '送货上门(无电梯)', |
|
|
|
|
value: 5, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '送货卸货', |
|
|
|
|
value: 6, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '送货安装', |
|
|
|
|
value: 7, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 开单回单方式 */ |
|
|
|
|
receiptOption: [ |
|
|
|
|
{ |
|
|
|
|
label: '签回单', |
|
|
|
|
value: 1, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '打收条', |
|
|
|
|
value: 2, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '签信封', |
|
|
|
|
value: 3, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '签回单盖章', |
|
|
|
|
value: 4, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '1份回单', |
|
|
|
|
value: 5, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '2份回单', |
|
|
|
|
value: 6, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '3份回单', |
|
|
|
|
value: 7, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '4份回单', |
|
|
|
|
value: 8, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '5份回单', |
|
|
|
|
value: 9, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 运输方式 */ |
|
|
|
|
transportationOption: [ |
|
|
|
|
{ |
|
|
|
|
label: '公路快运', |
|
|
|
|
value: 1, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '海运', |
|
|
|
|
value: 2, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '卡车航班', |
|
|
|
|
value: 3, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '空运', |
|
|
|
|
value: 4, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '普通汽班', |
|
|
|
|
value: 5, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '快递', |
|
|
|
|
value: 6, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 收货方 -- 收货单位 */ |
|
|
|
|
consigneeOptions: [], |
|
|
|
|
/** 收货方 -- 收货人 */ |
|
|
|
@ -2036,24 +1880,11 @@ const details = reactive<any>({
|
|
|
|
|
submitData: {}, |
|
|
|
|
/** tab标签有无数据 */ |
|
|
|
|
orderStatus: 'haveData', |
|
|
|
|
priceArr: [ |
|
|
|
|
/** 单价 */ |
|
|
|
|
{ name: '运费', key: 'price' }, |
|
|
|
|
/** 送货费 */ |
|
|
|
|
{ name: '配送费', key: 'deliveryFee' }, |
|
|
|
|
// { name: '提货费', key: 'pickupFee' }, |
|
|
|
|
/** 仓库管理费 */ |
|
|
|
|
{ name: '仓库管理费', key: 'warehouseManagementFee' }, |
|
|
|
|
/** 仓储费 */ |
|
|
|
|
{ name: '仓库存储费', key: 'storageFee' }, |
|
|
|
|
/** 装卸费 */ |
|
|
|
|
// { name: '仓库存储费', key: 'storageFee' }, |
|
|
|
|
], |
|
|
|
|
/** 提交类型 */ |
|
|
|
|
submitType: 'haveData' as 'haveData' | 'notHaveData', |
|
|
|
|
/** 修改原因 */ |
|
|
|
|
causeForm: {}, |
|
|
|
|
/** 修改列表 */ |
|
|
|
|
/** 修改列表 -- 表头 */ |
|
|
|
|
changeColumnList: [ |
|
|
|
|
{ |
|
|
|
|
prop: 'itemName', |
|
|
|
@ -2348,6 +2179,8 @@ const onLoad = async (idsArr = []) => {
|
|
|
|
|
}), |
|
|
|
|
// 获取包件数据 |
|
|
|
|
postFindAdvanceDetailListByAdvanceIds({ advanceIds: ids }).then(async res => { |
|
|
|
|
if (details.submitType === 'notHaveData') return; |
|
|
|
|
|
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
details.package.data = data || []; |
|
|
|
@ -2524,6 +2357,8 @@ const onEditLoad = async () => {
|
|
|
|
|
}), |
|
|
|
|
// 获取包件数据 |
|
|
|
|
postFindAdvanceDetailListByWaybillId({ waybillId: details.pageInfo.id }).then(async res => { |
|
|
|
|
if (details.submitType === 'notHaveData') return; |
|
|
|
|
|
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
details.package.data = data || []; |
|
|
|
|