Browse Source

'优化改单'

dev-xx
qb 1 year ago
parent
commit
28e0e6acd5
  1. 2
      src/views/distribution/inventory/BookingNote.vue
  2. 40
      src/views/distribution/inventory/CreateOrder.vue
  3. 69
      src/views/waybill/CreateZeroOrder.vue

2
src/views/distribution/inventory/BookingNote.vue

@ -539,7 +539,7 @@
<div class="table-row-title" style="margin-bottom: 10px"> <div class="table-row-title" style="margin-bottom: 10px">
<div class="table-row-title-item fwb"> <div class="table-row-title-item fwb">
合计费用 合计费用
<span class="red">{{ totalCost }}</span> <span class="red" style="margin-left: 10px">{{ totalCost }}</span>
</div> </div>
</div> </div>
<div> <div>

40
src/views/distribution/inventory/CreateOrder.vue

@ -432,9 +432,9 @@
<div style="margin-right: 10px; width: 60%; flex: none"> <div style="margin-right: 10px; width: 60%; flex: none">
<div style="flex: 1"> <div style="flex: 1">
<div class="table-row-title" style="margin-bottom: 10px"> <div class="table-row-title" style="margin-bottom: 10px">
<div class="table-row-title-item"> <div class="table-row-title-item fwb">
合计费用 合计费用
<span class="red">{{ totalCost }}</span> <span class="red" style="margin-left: 10px">{{ totalCost }}</span>
</div> </div>
</div> </div>
<div> <div>
@ -557,7 +557,7 @@
<div class="border-left"> <div class="border-left">
<div style="flex: 1"> <div style="flex: 1">
<div class="table-row-title" style="margin-bottom: 10px"> <div class="table-row-title" style="margin-bottom: 10px">
<div class="table-row-title-item">付款方式</div> <div class="table-row-title-item fwb">付款方式</div>
</div> </div>
<div> <div>
<el-row> <el-row>
@ -1371,6 +1371,7 @@ const details = reactive<any>({
popUpShow: { popUpShow: {
/** 订单选择 */ /** 订单选择 */
columnListVisited: false, columnListVisited: false,
/** 是否继续开单 */
titleVisited: false, titleVisited: false,
}, },
/** 列表Dom节点 */ /** 列表Dom节点 */
@ -2315,14 +2316,14 @@ $borderColor: #172e60;
align-items: center; align-items: center;
font-size: 14px; font-size: 14px;
&::before { // &::before {
content: ''; // content: '';
display: block; // display: block;
width: 2px; // width: 2px;
height: 25px; // height: 25px;
background-color: var(--el-color-primary); // background-color: var(--el-color-primary);
margin-right: 10px; // margin-right: 10px;
} // }
} }
.table_row_number { .table_row_number {
@ -2417,4 +2418,21 @@ $borderColor: #172e60;
color: var(--el-color-primary); color: var(--el-color-primary);
font-weight: bold; font-weight: bold;
} }
.fwb {
display: flex;
align-items: center;
font-weight: bold;
color: var(--el-color-danger) !important;
position: relative;
&::before {
content: '';
margin-right: 10px;
display: block;
width: 2px;
height: 1rem;
background: #f00;
}
}
</style> </style>

69
src/views/waybill/CreateZeroOrder.vue

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

Loading…
Cancel
Save