|
|
|
<template>
|
|
|
|
<basic-container>
|
|
|
|
<div class="avue-crud">
|
|
|
|
<!-- 基础信息 -->
|
|
|
|
<div class="w100">
|
|
|
|
<!-- 标题 -->
|
|
|
|
<el-divider content-position="left">基础信息</el-divider>
|
|
|
|
<!-- 表单内容 -->
|
|
|
|
<el-form :rules="details.rules" :model="details.form" ref="ruleFormRef" label-width="80px">
|
|
|
|
<!-- 仓库节点 -->
|
|
|
|
<el-steps finish-status="success" :active="details.active" space="300px">
|
|
|
|
<el-step v-for="(item, index) in details.nodeInfoData" :key="item">
|
|
|
|
<template #icon>
|
|
|
|
<el-icon size="20px" v-if="index === 0"><LocationFilled /></el-icon>
|
|
|
|
<el-icon size="20px" v-else><Van /></el-icon>
|
|
|
|
</template>
|
|
|
|
<template #title>
|
|
|
|
<div class="form_row">
|
|
|
|
<div class="flex-c-c steps_title">
|
|
|
|
<div class="count_icon">{{ index + 1 }}</div>
|
|
|
|
<div v-if="index === 0">始发仓</div>
|
|
|
|
<div v-else>目的仓</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 控件 -->
|
|
|
|
<div v-if="Number(details.pageType) === 1">
|
|
|
|
<!-- 删除节点 -->
|
|
|
|
<el-button icon="Delete" v-if="index !== 0" @click="handleDelNode(index)" />
|
|
|
|
<!-- 新增节点 -->
|
|
|
|
<el-button
|
|
|
|
v-if="index === details.nodeInfoData.length - 1"
|
|
|
|
type="primary"
|
|
|
|
icon="Plus"
|
|
|
|
@click="handleAddNode"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template #description>
|
|
|
|
<el-select
|
|
|
|
class="mt10"
|
|
|
|
v-model="item.nodeName"
|
|
|
|
filterable
|
|
|
|
remote
|
|
|
|
reserve-keyword
|
|
|
|
placeholder="目的仓"
|
|
|
|
@change="val => destinationWarehouseNameChange(val, index)"
|
|
|
|
:remote-method="remoteMethod"
|
|
|
|
:loading="details.loadingObj.loading"
|
|
|
|
:disabled="Number(details.pageType) !== 1 || index === 0"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="val in details.options"
|
|
|
|
:key="val.warehouseName"
|
|
|
|
:label="val.warehouseName"
|
|
|
|
:value="val.warehouseId"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</template>
|
|
|
|
</el-step>
|
|
|
|
</el-steps>
|
|
|
|
|
|
|
|
<div class="form_row mt10">
|
|
|
|
<!-- 车牌号 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="车牌号" prop="carNumber">
|
|
|
|
<el-select
|
|
|
|
v-model="form.carNumber"
|
|
|
|
filterable
|
|
|
|
remote
|
|
|
|
reserve-keyword
|
|
|
|
placeholder="输入车牌号"
|
|
|
|
@change="handleCarChange"
|
|
|
|
:remote-method="remoteMethodCar"
|
|
|
|
:loading="details.loadingObj.loading"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="val in details.carListByName"
|
|
|
|
:key="val.carNumber"
|
|
|
|
:label="val.carNumber"
|
|
|
|
:value="val.carId"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-button type="primary" @click="handleAddCar" icon="Plus"></el-button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 主驾司机 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="主驾司机" prop="driverName">
|
|
|
|
<el-select
|
|
|
|
v-model="form.driverName"
|
|
|
|
filterable
|
|
|
|
remote
|
|
|
|
@change="handleNameChange(1)"
|
|
|
|
reserve-keyword
|
|
|
|
placeholder="输入司机名称"
|
|
|
|
:remote-method="remoteMethodDriver"
|
|
|
|
:loading="details.loadingObj.loading"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="val in details.driverListByName"
|
|
|
|
:key="val.driverName"
|
|
|
|
:label="val.driverName"
|
|
|
|
:value="val.driverId"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-button type="primary" @click="handleAddDriver" icon="Plus"></el-button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 副驾司机 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="副驾司机">
|
|
|
|
<el-select
|
|
|
|
v-model="form.name"
|
|
|
|
filterable
|
|
|
|
remote
|
|
|
|
reserve-keyword
|
|
|
|
@change="handleNameChange(2)"
|
|
|
|
placeholder="输入司机名称"
|
|
|
|
:remote-method="remoteMethodDriver"
|
|
|
|
:loading="details.loadingObj.loading"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="val in details.driverListByName"
|
|
|
|
:key="val.driverName"
|
|
|
|
:label="val.driverName"
|
|
|
|
:value="val.driverId"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 装车方式 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="装车方式" prop="loadingType">
|
|
|
|
<el-radio-group
|
|
|
|
v-model="form.loadingType"
|
|
|
|
:disabled="Number(details.pageType) !== 1"
|
|
|
|
class="ml-4"
|
|
|
|
>
|
|
|
|
<el-radio label="1" size="large">手动装车(后台)</el-radio>
|
|
|
|
<el-radio label="2" size="large">扫描装车</el-radio>
|
|
|
|
</el-radio-group>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form_row">
|
|
|
|
<!-- 经办人 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="经办人">
|
|
|
|
<el-input v-model="userInfo.user_name" readonly />
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 配载类型 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="配载类型" prop="loadType">
|
|
|
|
<el-select v-model="form.loadType" class="m-2" filterable placeholder="配载类型">
|
|
|
|
<el-option
|
|
|
|
v-for="item in details.pageInfo.loadType"
|
|
|
|
:key="item.dictValue"
|
|
|
|
:label="item.dictValue"
|
|
|
|
:value="item.dictKey"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 分摊方式 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="分摊方式" prop="chargeType">
|
|
|
|
<el-select v-model="form.chargeType" class="m-2" filterable placeholder="分摊方式">
|
|
|
|
<el-option
|
|
|
|
v-for="item in details.pageInfo.chargeType"
|
|
|
|
:key="item.dictValue"
|
|
|
|
:label="item.dictValue"
|
|
|
|
:value="item.dictKey"
|
|
|
|
/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 合计运费 -->
|
|
|
|
<div class="form_row_item">
|
|
|
|
<el-form-item inline label="合计运费">
|
|
|
|
<el-input-number
|
|
|
|
v-model="form.countTransportCost"
|
|
|
|
controls-position="right"
|
|
|
|
:precision="2"
|
|
|
|
:min="0"
|
|
|
|
:step="1"
|
|
|
|
readonly
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 预计发车 -->
|
|
|
|
<!-- <div class="form_row_item">
|
|
|
|
<el-form-item inline label="预计发车">
|
|
|
|
<el-input />
|
|
|
|
</el-form-item>
|
|
|
|
</div> -->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<el-form-item label="备注">
|
|
|
|
<el-input autosize v-model="form.remark" type="textarea" placeholder="备注" />
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 节点信息 -->
|
|
|
|
<div class="w100">
|
|
|
|
<!-- 标题 -->
|
|
|
|
<el-divider content-position="left">节点信息</el-divider>
|
|
|
|
|
|
|
|
<tablecmt
|
|
|
|
class="nodeInfo"
|
|
|
|
:columnList="details.nodeInfoColumnList"
|
|
|
|
:tableData="details.nodeInfoData"
|
|
|
|
:loading="loadingObj.stowageLoading"
|
|
|
|
ref="nodeInfoRef"
|
|
|
|
>
|
|
|
|
<template #default="slotProps">
|
|
|
|
<el-input-number
|
|
|
|
controls-position="right"
|
|
|
|
:precision="2"
|
|
|
|
:min="0"
|
|
|
|
:step="1"
|
|
|
|
:disabled="
|
|
|
|
Number(details.pageType) === 2 ||
|
|
|
|
slotProps.scope.row.blackList.includes(slotProps.scope.column.property)
|
|
|
|
"
|
|
|
|
@input="handleComputedNum"
|
|
|
|
v-model="slotProps.scope.row[slotProps.scope.column.property]"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</tablecmt>
|
|
|
|
<!-- 列表 -->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 订单池和调度池 -->
|
|
|
|
<template v-if="details.nodeInfoData.length > 1">
|
|
|
|
<div class="add_row" v-for="(item, index) in details.nodeInfoData">
|
|
|
|
<template v-if="index !== 0">
|
|
|
|
<div style="width: 49%">
|
|
|
|
<!-- 头部 -->
|
|
|
|
<el-divider content-position="left">
|
|
|
|
<span style="margin-right: 20px">{{ details.nodeInfoData[0].nodeName }}</span>
|
|
|
|
<span>运单池</span>
|
|
|
|
</el-divider>
|
|
|
|
|
|
|
|
<!-- 搜索区域 -->
|
|
|
|
<div v-if="!search">
|
|
|
|
<el-form
|
|
|
|
:inline="true"
|
|
|
|
label-width="80px"
|
|
|
|
:model="details.oldQuery"
|
|
|
|
class="el-fr-d"
|
|
|
|
>
|
|
|
|
<div class="fo-fl">
|
|
|
|
<el-form-item label="订单号" class="el-times">
|
|
|
|
<el-input v-model.trim="query.orderCode" clearable></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="目的网点" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="到站" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="目标品类" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="备注" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="托盘码" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="开单时间" class="el-times">
|
|
|
|
<!-- <el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>-->
|
|
|
|
<el-date-picker
|
|
|
|
v-model="stockupDate"
|
|
|
|
type="daterange"
|
|
|
|
unlink-panels
|
|
|
|
range-separator="-"
|
|
|
|
start-placeholder="开始时间"
|
|
|
|
end-placeholder="结束时间"
|
|
|
|
:shortcuts="shortcuts"
|
|
|
|
clearable
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
icon="el-icon-search"
|
|
|
|
@click="initOriginWarehouseOrder()"
|
|
|
|
>搜 索</el-button
|
|
|
|
>
|
|
|
|
<el-button icon="el-icon-delete" @click="searchReset()">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 控件 -->
|
|
|
|
<div style="margin-bottom: 10px" class="flex-c-sb">
|
|
|
|
<!-- 控件 -->
|
|
|
|
<div class="avue-crud__right">
|
|
|
|
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
|
|
|
|
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<el-button type="text" style="cursor: pointer" @click="handleAddWaybill(index)">
|
|
|
|
加入调度池
|
|
|
|
<el-icon><CaretRight /></el-icon>
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 列表模块 -->
|
|
|
|
<tablecmt
|
|
|
|
ref="oldColumnListNode"
|
|
|
|
class="columnList"
|
|
|
|
:columnList="details.columnList"
|
|
|
|
:tableData="details.data"
|
|
|
|
:loading="loadingObj.oldListLoading"
|
|
|
|
@selection="selectionChange"
|
|
|
|
>
|
|
|
|
</tablecmt>
|
|
|
|
|
|
|
|
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
|
|
|
|
<div class="total_row" style="margin-top: 0">
|
|
|
|
选中: {{ details.selectionList.length }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 分页模块 -->
|
|
|
|
<el-pagination
|
|
|
|
style="zoom: 0.9"
|
|
|
|
align="right"
|
|
|
|
background
|
|
|
|
@size-change="sizeChange"
|
|
|
|
@current-change="currentChange"
|
|
|
|
:current-page="page.pageNum"
|
|
|
|
:teleported="false"
|
|
|
|
:page-sizes="[30, 50, 80, 120]"
|
|
|
|
:page-size="page.pageSize"
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
:total="page.total"
|
|
|
|
>
|
|
|
|
</el-pagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 列表模块 -->
|
|
|
|
<div style="width: 49%">
|
|
|
|
<!-- 头部 -->
|
|
|
|
<el-divider content-position="left">
|
|
|
|
<span style="margin-right: 20px">{{ item.nodeName }}</span>
|
|
|
|
<span>调度池</span>
|
|
|
|
</el-divider>
|
|
|
|
|
|
|
|
<!-- 搜索区域 -->
|
|
|
|
<div v-if="!search">
|
|
|
|
<el-form
|
|
|
|
:inline="true"
|
|
|
|
label-width="80px"
|
|
|
|
:model="details.newQuery"
|
|
|
|
class="el-fr-d"
|
|
|
|
>
|
|
|
|
<div class="fo-fl">
|
|
|
|
<el-form-item label="关键词" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="目的网点" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="到站" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="目标品类" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="备注" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="托盘码" class="el-times">
|
|
|
|
<el-input></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="开单时间" class="el-times">
|
|
|
|
<!-- <el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>-->
|
|
|
|
<el-date-picker
|
|
|
|
v-model="stockupDate"
|
|
|
|
type="daterange"
|
|
|
|
unlink-panels
|
|
|
|
range-separator="-"
|
|
|
|
start-placeholder="开始时间"
|
|
|
|
end-placeholder="结束时间"
|
|
|
|
:shortcuts="shortcuts"
|
|
|
|
clearable
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchReset()"
|
|
|
|
>搜 索</el-button
|
|
|
|
>
|
|
|
|
<el-button icon="el-icon-delete" @click="searchReset()">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</div>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 控件 -->
|
|
|
|
<div style="margin-bottom: 10px" class="flex-c-sb">
|
|
|
|
<el-button type="text" class="pointer" @click="handleRemoveWaybill(index)">
|
|
|
|
<el-icon><CaretLeft /></el-icon>
|
|
|
|
移除调度池
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
<!-- 展开搜索和刷新 -->
|
|
|
|
<div class="avue-crud__right">
|
|
|
|
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
|
|
|
|
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
<tablecmt
|
|
|
|
class="columnList"
|
|
|
|
ref="newColumnListNode"
|
|
|
|
:columnList="details.newColumnList"
|
|
|
|
:tableData="item.lineCarsOrderList"
|
|
|
|
:loading="item.loading"
|
|
|
|
@selection="list => item.selectionChange(list, index)"
|
|
|
|
>
|
|
|
|
<template #default="slotProps">
|
|
|
|
<template v-if="slotProps.scope.column.label === '计划数'">
|
|
|
|
<el-input-number
|
|
|
|
v-if="Number(details.pageType) === 1"
|
|
|
|
v-model="slotProps.scope.row.planNum"
|
|
|
|
controls-position="right"
|
|
|
|
:precision="0"
|
|
|
|
:min="0"
|
|
|
|
:max="slotProps.scope.row.stockNum"
|
|
|
|
:step="1"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<el-text
|
|
|
|
size="small"
|
|
|
|
v-else
|
|
|
|
text
|
|
|
|
@click="handleEditplanNum(slotProps.scope, item)"
|
|
|
|
>{{ slotProps.scope.row.planNum }}</el-text
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</tablecmt>
|
|
|
|
|
|
|
|
<div class="total_row">
|
|
|
|
<span> 选中: {{ item.selectionList.length }} 条 </span>
|
|
|
|
<span> 共 {{ item.lineCarsOrderList.length }} 条 </span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- 页面底部占位 -->
|
|
|
|
<div class="footer"></div>
|
|
|
|
<div class="button-container">
|
|
|
|
<el-button class="submitButton" @click="back"> 关闭 </el-button>
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
class="submitButton"
|
|
|
|
icon="Promotion"
|
|
|
|
type="primary"
|
|
|
|
:loading="btnLoadingObj.submitBtn"
|
|
|
|
@click="handleSubmit(ruleFormRef)"
|
|
|
|
>
|
|
|
|
提交
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</basic-container>
|
|
|
|
|
|
|
|
<!-- 包内产品 -->
|
|
|
|
<el-dialog
|
|
|
|
title="修改计划数量"
|
|
|
|
v-model="details.popUpShow.editPlanNumberVisited"
|
|
|
|
width="40%"
|
|
|
|
append-to-body
|
|
|
|
class="packageDetailColumnListVisited"
|
|
|
|
>
|
|
|
|
<div class="edit_title">订单号: {{ details.editInfo.orderCode }}</div>
|
|
|
|
<div class="flex-c-sb edit_row">
|
|
|
|
<div class="flex1">
|
|
|
|
<span>当前在库数</span>
|
|
|
|
{{ details.editInfo.stockNum }}
|
|
|
|
</div>
|
|
|
|
<div class="flex1">
|
|
|
|
<span>已装车数量</span>
|
|
|
|
{{ details.editInfo.realNum }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-form>
|
|
|
|
<el-form-item label="计划数量:" label-width="100px">
|
|
|
|
<el-input-number
|
|
|
|
controls-position="right"
|
|
|
|
:min="0"
|
|
|
|
:precision="0"
|
|
|
|
:max="details.editInfo.stockNum"
|
|
|
|
class="editInput"
|
|
|
|
v-model="details.editInfo.enterPlanNum"
|
|
|
|
style="flex: 1; text-align: left !important"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<div class="flex-c-c">
|
|
|
|
<el-button>取消</el-button>
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
:loading="btnLoadingObj.editPlanNumBtn"
|
|
|
|
icon="Promotion"
|
|
|
|
@click="handleSubmitEdit"
|
|
|
|
>
|
|
|
|
提交
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, onActivated, watch } from 'vue';
|
|
|
|
import functions from '@/utils/functions';
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
import { mapGetters } from 'vuex';
|
|
|
|
/** 获取字典 */
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict';
|
|
|
|
import { downloadXls, setNodeHeight, computeNumber, isNumer } from '@/utils/util';
|
|
|
|
import {
|
|
|
|
columnList,
|
|
|
|
nodeInfoColumnList,
|
|
|
|
newColumnList,
|
|
|
|
} from '@/option/distribution/addVehicleStowage';
|
|
|
|
import {
|
|
|
|
postloadFindLoadInitData,
|
|
|
|
postFindWarehouseListByName,
|
|
|
|
postFindAllOrderList,
|
|
|
|
postFindCarListByName,
|
|
|
|
postFindDriverListByName,
|
|
|
|
postSaveNew,
|
|
|
|
postSelectEditDetailByLoadId,
|
|
|
|
postFindUseOrderList,
|
|
|
|
postRemoveCarsOrderByCarsOrderId,
|
|
|
|
postUpdatePlanNumByCarsOrderId,
|
|
|
|
postAddOrderToFinalNodeId,
|
|
|
|
postUpdateCarsLoadBasicData,
|
|
|
|
} from '@/api/distribution/AddVehicleStowage';
|
|
|
|
import { useRouter, useRoute } from 'vue-router';
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus';
|
|
|
|
import { useStore } from 'vuex';
|
|
|
|
import type { FormInstance, FormRules } from 'element-plus';
|
|
|
|
|
|
|
|
// 获取节点信息列表, 除开节点名称
|
|
|
|
const nodeInfokeys = nodeInfoColumnList.slice(1).map(val => val.prop);
|
|
|
|
|
|
|
|
// 获取路由实例
|
|
|
|
const $router = useRouter();
|
|
|
|
const $route = useRoute();
|
|
|
|
|
|
|
|
// vuex 实例
|
|
|
|
const $store = useStore();
|
|
|
|
|
|
|
|
// 表单实例
|
|
|
|
const ruleFormRef = ref();
|
|
|
|
|
|
|
|
console.log('ruleFormRef :>> ', ruleFormRef);
|
|
|
|
|
|
|
|
// 获取用户信息
|
|
|
|
const userInfo = computed(() => $store.state.user.userInfo);
|
|
|
|
|
|
|
|
const details = reactive<any>({
|
|
|
|
/** 是否开启搜索 */
|
|
|
|
search: true,
|
|
|
|
/** 表格搜索条件 */
|
|
|
|
query: {},
|
|
|
|
/** 时间快捷选择设置 */
|
|
|
|
shortcuts: [
|
|
|
|
{
|
|
|
|
text: '最近一周',
|
|
|
|
value: () => {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
|
return [start, end];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '最近一个月',
|
|
|
|
value: () => {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
|
|
|
return [start, end];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: '最近三个月',
|
|
|
|
value: () => {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
|
|
|
return [start, end];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
/** 时间选择器数据 */
|
|
|
|
stockupDate: [],
|
|
|
|
/** 订单池表头 */
|
|
|
|
columnList,
|
|
|
|
/** 调度池表头 */
|
|
|
|
newColumnList,
|
|
|
|
/** 节点信息列表表头 */
|
|
|
|
nodeInfoColumnList,
|
|
|
|
/** 列表数据 */
|
|
|
|
data: [],
|
|
|
|
/** 节点信息数据 */
|
|
|
|
nodeInfoData: [],
|
|
|
|
/** 页面loading */
|
|
|
|
loadingObj: {
|
|
|
|
/** 列表加载loading */
|
|
|
|
list: false,
|
|
|
|
oldListLoading: false,
|
|
|
|
loading: false,
|
|
|
|
},
|
|
|
|
/** 列表复选框选中的数据 */
|
|
|
|
selectionList: [],
|
|
|
|
/** 是否显示设置表格 */
|
|
|
|
drawerShow: false,
|
|
|
|
/** 分页参数 */
|
|
|
|
page: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 30,
|
|
|
|
total: 0,
|
|
|
|
},
|
|
|
|
/** 装车明细分页参数 */
|
|
|
|
trickleLoadingPage: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 30,
|
|
|
|
total: 0,
|
|
|
|
},
|
|
|
|
/** 弹出层显示 */
|
|
|
|
popUpShow: {
|
|
|
|
/** 修改计划数量 */
|
|
|
|
editPlanNumberVisited: false,
|
|
|
|
},
|
|
|
|
/** 列表Dom节点 */
|
|
|
|
listNode: '',
|
|
|
|
form: { loadingType: '2' },
|
|
|
|
/** 全屏 */
|
|
|
|
fullscreenObj: {
|
|
|
|
/** 装车明细 */
|
|
|
|
truckLoadingDetailPopUp: false,
|
|
|
|
},
|
|
|
|
/** 匹配 */
|
|
|
|
rules: {
|
|
|
|
/** 车牌号 */
|
|
|
|
carNumber: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: '请填写并选择车牌号',
|
|
|
|
trigger: ['change'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
/** 主驾司机 */
|
|
|
|
driverName: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: '请填写并选择主驾司机',
|
|
|
|
trigger: ['change'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
/** 装车方式 */
|
|
|
|
loadingType: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: '请选择装车方式',
|
|
|
|
trigger: ['change'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
/** 配载类型 */
|
|
|
|
loadType: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: '请选择配载类型',
|
|
|
|
trigger: ['change'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
/** 分摊方式 */
|
|
|
|
chargeType: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
message: '请选择分摊方式',
|
|
|
|
trigger: ['change'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
/** 页面信息 */
|
|
|
|
pageInfo: {
|
|
|
|
startWarehouseInfo: {},
|
|
|
|
},
|
|
|
|
/** 目的仓 */
|
|
|
|
options: [],
|
|
|
|
/** 车牌号 */
|
|
|
|
carListByName: [],
|
|
|
|
/** 司机 */
|
|
|
|
driverListByName: [],
|
|
|
|
/** 当前页面类型 -- 1: 新增; 2: 编辑; 3: 节点费用 */
|
|
|
|
pageType: 1,
|
|
|
|
/** 编辑&节点费用下的loadId */
|
|
|
|
loadId: '',
|
|
|
|
/** 编辑模式下当前仓的位置索引 */
|
|
|
|
warehouseIndex: 0,
|
|
|
|
/** 步骤条激活位置 */
|
|
|
|
active: computed(() => {
|
|
|
|
if (Number(details.pageType) === 1) return details.nodeInfoData.length;
|
|
|
|
else if (Number(details.pageType) === 2) return details.warehouseIndex;
|
|
|
|
}),
|
|
|
|
/** 被选中的orderCode组成的list */
|
|
|
|
orderCodeList: [],
|
|
|
|
/** 计划数修改的信息 */
|
|
|
|
editInfo: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
const btnLoadingObj = reactive({
|
|
|
|
/** 提交按钮 */
|
|
|
|
submitBtn: false,
|
|
|
|
/** 修改计划数量 */
|
|
|
|
editPlanNumBtn: false,
|
|
|
|
});
|
|
|
|
const {
|
|
|
|
search,
|
|
|
|
query,
|
|
|
|
shortcuts,
|
|
|
|
stockupDate,
|
|
|
|
data,
|
|
|
|
loadingObj,
|
|
|
|
selectionList,
|
|
|
|
drawerShow,
|
|
|
|
page,
|
|
|
|
trickleLoadingPage,
|
|
|
|
zeroAdditionalRecordingInfo,
|
|
|
|
popUpShow,
|
|
|
|
form,
|
|
|
|
} = toRefs(details);
|
|
|
|
|
|
|
|
// 列表组件实例 -- 节点信息
|
|
|
|
const nodeInfoRef = ref(null);
|
|
|
|
|
|
|
|
const oldColumnListNode = ref();
|
|
|
|
const newColumnListNode = ref();
|
|
|
|
|
|
|
|
/** vuex */
|
|
|
|
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
|
|
|
|
console.log('permission :>> ', permission);
|
|
|
|
|
|
|
|
/** 设置页面表格高度 */
|
|
|
|
const setTabelHeight = async () => {
|
|
|
|
// 等待子组件渲染完成
|
|
|
|
await nextTick();
|
|
|
|
|
|
|
|
const _listNode = document.querySelectorAll('.columnList.maboxhi');
|
|
|
|
|
|
|
|
console.log('nodeInfoRef.value.$el :>> ', nodeInfoRef.value.$el);
|
|
|
|
|
|
|
|
// 节点信息列表高度
|
|
|
|
setNodeHeight(nodeInfoRef.value.$el, 'auto');
|
|
|
|
|
|
|
|
console.log('_listNode :>> ', _listNode);
|
|
|
|
|
|
|
|
if (_listNode.length === 0) return;
|
|
|
|
setNodeHeight(_listNode, '400px');
|
|
|
|
};
|
|
|
|
|
|
|
|
// 初始化设置列表高度
|
|
|
|
onMounted(() => {
|
|
|
|
setTabelHeight();
|
|
|
|
});
|
|
|
|
|
|
|
|
// 清空复选框
|
|
|
|
const clearSelectionList = () => {
|
|
|
|
details.selectionList = [];
|
|
|
|
console.log('newColumnListNode :>> ', newColumnListNode);
|
|
|
|
console.log('oldColumnListNode :>> ', oldColumnListNode);
|
|
|
|
newColumnListNode.value.forEach(val => {
|
|
|
|
console.log('val :>> ', val);
|
|
|
|
val.handleCheckSelect([]);
|
|
|
|
});
|
|
|
|
oldColumnListNode.value.forEach(val => {
|
|
|
|
val.handleCheckSelect([]);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 设置节点费用禁用 */
|
|
|
|
const handleEditForbidden = (_arr: []) => {
|
|
|
|
if (_arr.length === 0) return;
|
|
|
|
|
|
|
|
// 获取第一项 (第一项和后续项禁用项不同, 分开设置)
|
|
|
|
const _firstChild = _arr[0];
|
|
|
|
_firstChild.blackList = ['unloadCost', 'unloadOtherCost'];
|
|
|
|
|
|
|
|
const _otherList = _arr.slice(1);
|
|
|
|
|
|
|
|
// 其它项的白名单
|
|
|
|
const _otherwhiteList = ['tollFee', 'reachTransportCost'];
|
|
|
|
// 通过白名单筛选出黑名单
|
|
|
|
const _otherBlackList = nodeInfokeys.filter(val => _otherwhiteList.indexOf(val) === -1);
|
|
|
|
// 设置其他项的黑名单;
|
|
|
|
for (let item of _otherList) {
|
|
|
|
item.blackList = _otherBlackList;
|
|
|
|
}
|
|
|
|
|
|
|
|
return [_firstChild, ..._otherList];
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 请求运单数据 */
|
|
|
|
const initOriginWarehouseOrder = async (params = {}) => {
|
|
|
|
try {
|
|
|
|
details.loadingObj.oldListLoading = true;
|
|
|
|
const submitData = {
|
|
|
|
...details.page,
|
|
|
|
loadId: details.pageInfo.startWarehouseInfo.warehouseId,
|
|
|
|
orderCodes: details.orderCodeList,
|
|
|
|
...details.query,
|
|
|
|
...params,
|
|
|
|
};
|
|
|
|
if (submitData.orderCodes.length === 0) delete submitData.orderCodes;
|
|
|
|
const res = await postFindAllOrderList(submitData);
|
|
|
|
console.log('res :>> ', res);
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
details.data = data.records;
|
|
|
|
details.page.total = data.total;
|
|
|
|
} catch (error) {
|
|
|
|
console.log('error :>> ', error);
|
|
|
|
} finally {
|
|
|
|
details.loadingObj.oldListLoading = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 请求添加在调度池中的数据 */
|
|
|
|
const initDispatchOrder = async item => {
|
|
|
|
try {
|
|
|
|
// 开启列表加载动画
|
|
|
|
item.loading = true;
|
|
|
|
const submitData = {
|
|
|
|
loadId: details.loadId,
|
|
|
|
finalNodeId: item.nodeId,
|
|
|
|
};
|
|
|
|
const res = await postFindUseOrderList(submitData);
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
item.lineCarsOrderList = data;
|
|
|
|
} catch (error) {
|
|
|
|
} finally {
|
|
|
|
// 关闭列表加载动画
|
|
|
|
item.loading = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 请求页面数据 */
|
|
|
|
const onLoad = async () => {
|
|
|
|
// 获取当前页面的信息
|
|
|
|
details.loadId = $route.query.loadId;
|
|
|
|
details.pageType = $route.query.type;
|
|
|
|
|
|
|
|
// 新增
|
|
|
|
if (Number(details.pageType) === 1) {
|
|
|
|
details.form = {};
|
|
|
|
const res = await postloadFindLoadInitData();
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
details.pageInfo = data;
|
|
|
|
console.log('data.startWarehouseInfo.nodeName :>> ', data.startWarehouseInfo.nodeName);
|
|
|
|
details.nodeInfoData = [
|
|
|
|
{
|
|
|
|
nodeName: data.startWarehouseInfo.warehouseName,
|
|
|
|
nodeId: data.startWarehouseInfo.warehouseId,
|
|
|
|
linkMan: data.startWarehouseInfo.linkMan,
|
|
|
|
linkPhone: data.startWarehouseInfo.linkMobile,
|
|
|
|
linkAddress: data.startWarehouseInfo.linkAddress,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
details.nodeInfoData = handleEditForbidden(details.nodeInfoData);
|
|
|
|
console.log('details.nodeInfoData :>> ', details.nodeInfoData);
|
|
|
|
details.form.startWarehouseName = data.startWarehouseInfo.warehouseName;
|
|
|
|
details.form.startWarehouseId = data.startWarehouseInfo.warehouseId;
|
|
|
|
}
|
|
|
|
// 编辑
|
|
|
|
else if (Number(details.pageType) === 2) {
|
|
|
|
console.log('222 :>> ', 222);
|
|
|
|
const res = await postSelectEditDetailByLoadId({ loadId: details.loadId });
|
|
|
|
console.log('res :>> ', res);
|
|
|
|
const { code, data } = res.data;
|
|
|
|
details.nodeInfoData = handleEditForbidden(
|
|
|
|
data.allCarsLineList.map((val, index) => {
|
|
|
|
if (val.nodeName === data.warehouseName) {
|
|
|
|
// 显示当前节点
|
|
|
|
details.warehouseIndex = index;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 筛选
|
|
|
|
val.query = {};
|
|
|
|
// 复选框
|
|
|
|
val.selectionList = [];
|
|
|
|
// 参数
|
|
|
|
val.lineCarsOrderList = [];
|
|
|
|
val.filterData = [];
|
|
|
|
val.loading = false;
|
|
|
|
val.selectionChange = (list, index) => {
|
|
|
|
details.nodeInfoData[index].selectionList = list;
|
|
|
|
console.log('list :>> ', list);
|
|
|
|
};
|
|
|
|
initDispatchOrder(val);
|
|
|
|
return val;
|
|
|
|
})
|
|
|
|
);
|
|
|
|
details.form = data.carsLoadEntity;
|
|
|
|
details.pageInfo.loadType = data.loadType;
|
|
|
|
details.pageInfo.chargeType = data.chargeType;
|
|
|
|
details.pageInfo.startWarehouseInfo.warehouseId = data.carsLoadEntity.startWarehouseId;
|
|
|
|
details.pageInfo.startWarehouseInfo.warehouseName = data.carsLoadEntity.startWarehouseName;
|
|
|
|
// 请求节点
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
|
|
|
|
// 设置页面列表高度
|
|
|
|
setTabelHeight();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// 初始化调用
|
|
|
|
onLoad();
|
|
|
|
|
|
|
|
/** 查询仓库 */
|
|
|
|
const remoteMethod = async val => {
|
|
|
|
if (!val) return;
|
|
|
|
const res = await postFindWarehouseListByName({ warehouseName: val });
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
details.options = data;
|
|
|
|
console.log('res :>> ', res);
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 目的仓选择时给目的仓名称赋值 */
|
|
|
|
const destinationWarehouseNameChange = (val, index) => {
|
|
|
|
const _value = details.options.find(value => value.warehouseId === val);
|
|
|
|
details.nodeInfoData[index].nodeName = _value.warehouseName;
|
|
|
|
details.nodeInfoData[index].nodeId = _value.warehouseId;
|
|
|
|
details.nodeInfoData[index].linkMan = _value.linkMan;
|
|
|
|
details.nodeInfoData[index].linkPhone = _value.linkPhone;
|
|
|
|
details.nodeInfoData[index].linkAddress = _value.linkAddress;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 搜索 */
|
|
|
|
const searchChange = () => {
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 清空表单 */
|
|
|
|
const searchReset = () => {
|
|
|
|
details.query = {};
|
|
|
|
details.stockupDate = [];
|
|
|
|
details.page.pageNum = 1;
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 展开列表控件 */
|
|
|
|
const showdrawer = (_flag?: boolean) => {
|
|
|
|
details.drawerShow = _flag;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 是否开启搜索区 */
|
|
|
|
const searchHide = () => {
|
|
|
|
details.search = !details.search;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */
|
|
|
|
const inputsc = (index, row) => {
|
|
|
|
details.query[row.prop] = index;
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 表格表头时间选择 */
|
|
|
|
const timesc = (index, row) => {
|
|
|
|
console.log(index, row);
|
|
|
|
if (!!index) {
|
|
|
|
index = dayjs(index).format('YYYY-MM-DD');
|
|
|
|
}
|
|
|
|
details.query[row.prop] = index;
|
|
|
|
if (!index) {
|
|
|
|
delete details.query[row.prop];
|
|
|
|
}
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */
|
|
|
|
const btnsc = () => {};
|
|
|
|
|
|
|
|
/** 表格表头下拉框选择 */
|
|
|
|
const selectsc = (index, row) => {
|
|
|
|
details.query[row.prop] = index;
|
|
|
|
if (!index) delete details.query[row.prop];
|
|
|
|
if (row.prop === 'certificateTypeName') {
|
|
|
|
details.query['certificateType'] = index;
|
|
|
|
if (!index) delete details.query['certificateType'];
|
|
|
|
}
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 表格表头复选框选择 */
|
|
|
|
const selectionChange = (list: any) => {
|
|
|
|
details.selectionList = list;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 每页数量改变执行的回调 */
|
|
|
|
const sizeChange = (pageSize: number) => {
|
|
|
|
details.page.pageSize = pageSize;
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 页码改变执行的回调 */
|
|
|
|
const currentChange = pageNum => {
|
|
|
|
details.page.pageNum = pageNum;
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 设置列表 -- 固定函数
|
|
|
|
* 弹窗的勾选回调,用于更改头部数组
|
|
|
|
* 固定搭配,只需要更换 columnList
|
|
|
|
* */
|
|
|
|
const setnewcolum = (newarr, headarr, type) => {
|
|
|
|
if (type == 1) {
|
|
|
|
details.columnList = newarr;
|
|
|
|
functions.setStorage(window.location.pathname + 'checkList', headarr);
|
|
|
|
} else if (type == 2) {
|
|
|
|
details.columnList = newarr;
|
|
|
|
functions.setStorage(window.location.pathname + 'flexList', headarr);
|
|
|
|
} else if (type == 3) {
|
|
|
|
details.columnList = newarr;
|
|
|
|
functions.setStorage(window.location.pathname + 'sortlist', headarr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 弹出层开启前清除数据 */
|
|
|
|
const beforeClose = done => {
|
|
|
|
done();
|
|
|
|
details.form = {};
|
|
|
|
details.view = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 司机改变时 1: 主驾 2: 副驾 */
|
|
|
|
const handleNameChange = (type: number) => {
|
|
|
|
const findValue = type === 1 ? form.value.driverName : form.value.name;
|
|
|
|
|
|
|
|
const _value = details.driverListByName.find(value => value.driverId === findValue);
|
|
|
|
if (type === 1) {
|
|
|
|
form.value.driverName = _value.driverName;
|
|
|
|
form.value.driverId = _value.driverId;
|
|
|
|
form.value.driverMobile = _value.driverPhone;
|
|
|
|
} else {
|
|
|
|
form.value.name = _value.driverName;
|
|
|
|
form.value.assistantId = _value.driverId;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 车辆改变 */
|
|
|
|
const handleCarChange = (type: number) => {
|
|
|
|
const _value = details.carListByName.find(value => value.carId === form.value.carNumber);
|
|
|
|
console.log('_value :>> ', _value);
|
|
|
|
form.value.carNumber = _value.carNumber;
|
|
|
|
form.value.carId = _value.carId;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 新增车辆 */
|
|
|
|
const handleAddCar = () => {
|
|
|
|
$router.push('/basicdata/vehicle/basicdataVehicle');
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 新增司机 */
|
|
|
|
const handleAddDriver = () => {
|
|
|
|
$router.push('/basicdata/driverArtery/basicdataDriverArtery');
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 计算合计 */
|
|
|
|
let timer = null;
|
|
|
|
const handleComputedNum = () => {
|
|
|
|
if (timer) clearTimeout(timer);
|
|
|
|
|
|
|
|
timer = setTimeout(() => {
|
|
|
|
let _totalNum = 0;
|
|
|
|
|
|
|
|
for (let item of details.nodeInfoData) {
|
|
|
|
for (let index = 0; index < nodeInfokeys.length; index++) {
|
|
|
|
const _key = nodeInfokeys[index];
|
|
|
|
// 检测是否为数字
|
|
|
|
if (!isNumer(item[_key])) item[_key] = 0;
|
|
|
|
else item[_key] = Number(item[_key]);
|
|
|
|
_totalNum = computeNumber(_totalNum, '+', item[_key]).result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
details.form.countTransportCost = _totalNum;
|
|
|
|
// 清除定时器
|
|
|
|
clearTimeout(timer);
|
|
|
|
}, 1000);
|
|
|
|
};
|
|
|
|
// 初始化计算
|
|
|
|
handleComputedNum();
|
|
|
|
|
|
|
|
/** 新增目的仓 */
|
|
|
|
const handleAddNode = () => {
|
|
|
|
const _flag = details.nodeInfoData.every(val => val.nodeName);
|
|
|
|
if (!_flag) {
|
|
|
|
return ElMessage({
|
|
|
|
type: 'warning',
|
|
|
|
message: '请选择节点仓库',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
details.nodeInfoData.push({
|
|
|
|
// 筛选
|
|
|
|
query: {},
|
|
|
|
// 复选框
|
|
|
|
selectionList: [],
|
|
|
|
// 参数
|
|
|
|
lineCarsOrderList: [],
|
|
|
|
filterData: [],
|
|
|
|
loading: false,
|
|
|
|
selectionChange(list, index) {
|
|
|
|
details.nodeInfoData[index].selectionList = list;
|
|
|
|
console.log('list :>> ', list);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
details.nodeInfoData = handleEditForbidden(details.nodeInfoData);
|
|
|
|
// 始发仓没有数据时, 请求数据
|
|
|
|
if (details.data.length === 0) initOriginWarehouseOrder();
|
|
|
|
setTabelHeight();
|
|
|
|
handleComputedNum();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 删除目的仓 */
|
|
|
|
const handleDelNode = (index: number) => {
|
|
|
|
details.nodeInfoData.splice(index, 1);
|
|
|
|
|
|
|
|
setTabelHeight();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 加入调度池 */
|
|
|
|
const handleAddWaybill = async (index: number) => {
|
|
|
|
const _node = details.nodeInfoData[index];
|
|
|
|
if (!_node.nodeName || !_node.nodeId) {
|
|
|
|
return ElMessage({
|
|
|
|
type: 'warning',
|
|
|
|
message: '未选择目的仓或目的仓信息异常',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('_node :>> ', _node);
|
|
|
|
// 新增
|
|
|
|
if (Number(details.pageType) === 1) {
|
|
|
|
for (let item of details.selectionList) {
|
|
|
|
item.planNum = item.stockNum;
|
|
|
|
item.loadingNum = 0;
|
|
|
|
_node.lineCarsOrderList.push(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
details.orderCodeList = [
|
|
|
|
...new Set([
|
|
|
|
...details.orderCodeList,
|
|
|
|
...details.selectionList.map(val => val.orderCode + ',' + val.waybillNo),
|
|
|
|
]),
|
|
|
|
];
|
|
|
|
console.log('details.orderCodeList :>> ', details.orderCodeList);
|
|
|
|
|
|
|
|
const orderCodes = details.selectionList.map(val => val.orderCode);
|
|
|
|
clearSelectionList();
|
|
|
|
details.page.pageNum = 1;
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 修改
|
|
|
|
else if (Number(details.pageType) === 2) {
|
|
|
|
console.log('_node :>> ', _node);
|
|
|
|
const submitData = {
|
|
|
|
loadId: details.loadId,
|
|
|
|
carsOrderList: details.selectionList.map(val => {
|
|
|
|
return {
|
|
|
|
nodeId: details.pageInfo.startWarehouseInfo.warehouseId,
|
|
|
|
nodeName: details.pageInfo.startWarehouseInfo.warehouseName,
|
|
|
|
orderCode: val.orderCode,
|
|
|
|
waybillNo: val.waybillNo,
|
|
|
|
totalNum: val.stockNum,
|
|
|
|
planNum: val.stockNum,
|
|
|
|
type: 1,
|
|
|
|
finalNodeId: _node.nodeId,
|
|
|
|
};
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
const res = await postAddOrderToFinalNodeId(submitData);
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
ElMessage.success('移除成功');
|
|
|
|
initDispatchOrder(_node);
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
}
|
|
|
|
// postAddOrderToFinalNodeId
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 移除调度池 */
|
|
|
|
const handleRemoveWaybill = async (index: number) => {
|
|
|
|
const _node = details.nodeInfoData[index];
|
|
|
|
console.log('details.nodeInfoData[index] :>> ', details.nodeInfoData[index]);
|
|
|
|
// 新增
|
|
|
|
if (Number(details.pageType) === 1) {
|
|
|
|
if (!_node.nodeName || !_node.nodeId) {
|
|
|
|
return ElMessage({
|
|
|
|
type: 'warning',
|
|
|
|
message: '未选择目的仓或目的仓信息异常',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
console.log('_node :>> ', _node);
|
|
|
|
// 将被选中的数据筛选出去
|
|
|
|
_node.lineCarsOrderList = _node.lineCarsOrderList.filter((val, index) => {
|
|
|
|
const _flag = !_node.selectionList.includes(val);
|
|
|
|
if (!_flag) {
|
|
|
|
const _code = val.orderCode + ',' + val.waybillNo;
|
|
|
|
const _index = details.orderCodeList.indexOf(_code);
|
|
|
|
// 删除映射的订单号+运单号
|
|
|
|
details.orderCodeList.splice(_index, 1);
|
|
|
|
}
|
|
|
|
return _flag;
|
|
|
|
});
|
|
|
|
clearSelectionList();
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
}
|
|
|
|
// 修改
|
|
|
|
else if (Number(details.pageType) === 2) {
|
|
|
|
console.log('_node :>> ', _node);
|
|
|
|
const submitData = {
|
|
|
|
carsOrderId: _node.selectionList.map(val => val.carsOrderId).join(','),
|
|
|
|
};
|
|
|
|
const res = await postRemoveCarsOrderByCarsOrderId(submitData);
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
ElMessage.success('移除成功');
|
|
|
|
initDispatchOrder(_node);
|
|
|
|
initOriginWarehouseOrder();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 查询司机信息 */
|
|
|
|
const remoteMethodDriver = async val => {
|
|
|
|
// if (!val) return;
|
|
|
|
|
|
|
|
const res = await postFindDriverListByName({ driverName: val });
|
|
|
|
console.log('res :>> ', res);
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
details.driverListByName = data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 查询车辆信息 */
|
|
|
|
const remoteMethodCar = async val => {
|
|
|
|
// if (!val) return;
|
|
|
|
|
|
|
|
const res = await postFindCarListByName({ carNumber: val });
|
|
|
|
console.log('res :>> ', res);
|
|
|
|
const { code, data } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
details.carListByName = data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 修改计划数 */
|
|
|
|
const handleEditplanNum = ({ row }, item) => {
|
|
|
|
console.log('row :>> ', row);
|
|
|
|
details.editInfo = row;
|
|
|
|
details.editInfo.enterPlanNum = Number(row.planNum);
|
|
|
|
details.editInfo.item = item;
|
|
|
|
|
|
|
|
console.log('details.editInfo :>> ', details.editInfo);
|
|
|
|
details.popUpShow.editPlanNumberVisited = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 提交修改计划数量 */
|
|
|
|
const handleSubmitEdit = async () => {
|
|
|
|
try {
|
|
|
|
btnLoadingObj.editPlanNumBtn = true;
|
|
|
|
|
|
|
|
const submitData = {
|
|
|
|
carsOrderId: details.editInfo.carsOrderId,
|
|
|
|
planNum: details.editInfo.enterPlanNum,
|
|
|
|
};
|
|
|
|
|
|
|
|
const res = await postUpdatePlanNumByCarsOrderId(submitData);
|
|
|
|
const { code } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
ElMessage.success('修改成功');
|
|
|
|
initDispatchOrder(details.editInfo.item);
|
|
|
|
details.popUpShow.editPlanNumberVisited = false;
|
|
|
|
} catch (error) {
|
|
|
|
console.log('error :>> ', error);
|
|
|
|
} finally {
|
|
|
|
// 关闭按钮loading
|
|
|
|
btnLoadingObj.editPlanNumBtn = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 关闭页面 */
|
|
|
|
const back = () => {
|
|
|
|
$store.commit('DEL_TAG_CURRENT');
|
|
|
|
$router.back('-1');
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 新增提交 */
|
|
|
|
const addSubmit = async () => {
|
|
|
|
try {
|
|
|
|
btnLoadingObj.submitBtn = true;
|
|
|
|
const _warehouseIds = [];
|
|
|
|
const _warehouseNames = [];
|
|
|
|
const _flag = details.nodeInfoData.every((value, index) => {
|
|
|
|
_warehouseNames.push(value.nodeName);
|
|
|
|
if (index === 0) return true;
|
|
|
|
_warehouseIds.push(value.nodeId);
|
|
|
|
|
|
|
|
return value.nodeName && value.nodeId;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!_flag) {
|
|
|
|
return ElMessage({
|
|
|
|
type: 'warning',
|
|
|
|
message: '节点信息有误',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const submitData = {
|
|
|
|
...form.value,
|
|
|
|
carsLoadLineList: JSON.parse(JSON.stringify(details.nodeInfoData)),
|
|
|
|
};
|
|
|
|
|
|
|
|
// 目的仓
|
|
|
|
submitData.endWarehouseIds = _warehouseIds.join(',');
|
|
|
|
submitData.endWarehouseNames = _warehouseNames.slice(1).join(',');
|
|
|
|
submitData.carsLineName = _warehouseNames.join('->');
|
|
|
|
|
|
|
|
let _lineCarsOrderList = [];
|
|
|
|
submitData.carsLoadLineList.forEach((val, i) => {
|
|
|
|
val.nodeType = '1';
|
|
|
|
val.sort = i + 1;
|
|
|
|
delete val.blackList;
|
|
|
|
if (i === 0) return;
|
|
|
|
// 删除无用数据
|
|
|
|
delete val.query;
|
|
|
|
delete val.selectionList;
|
|
|
|
delete val.loading;
|
|
|
|
delete val.data;
|
|
|
|
delete val.filterData;
|
|
|
|
|
|
|
|
_lineCarsOrderList = [
|
|
|
|
..._lineCarsOrderList,
|
|
|
|
...val.lineCarsOrderList.map(value => {
|
|
|
|
value.nodeId = submitData.startWarehouseId;
|
|
|
|
value.nodeName = submitData.startWarehouseName;
|
|
|
|
value.finalNodeId = val.nodeId;
|
|
|
|
value.totalNum = 20;
|
|
|
|
return value;
|
|
|
|
}),
|
|
|
|
];
|
|
|
|
delete val.lineCarsOrderList;
|
|
|
|
});
|
|
|
|
|
|
|
|
submitData.carsLoadLineList[0].lineCarsOrderList = _lineCarsOrderList;
|
|
|
|
|
|
|
|
console.log('submitData :>> ', submitData);
|
|
|
|
const res = await postSaveNew(submitData);
|
|
|
|
const { code, msg } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
ElMessage({
|
|
|
|
message: msg,
|
|
|
|
type: 'success',
|
|
|
|
});
|
|
|
|
back();
|
|
|
|
console.log('res :>> ', res);
|
|
|
|
} catch (error) {
|
|
|
|
} finally {
|
|
|
|
btnLoadingObj.submitBtn = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 修改提交 */
|
|
|
|
const editSubmit = async () => {
|
|
|
|
try {
|
|
|
|
btnLoadingObj.submitBtn = false;
|
|
|
|
|
|
|
|
const submitData = { loadId: details.loadId, ...details.form };
|
|
|
|
|
|
|
|
console.log('details.form :>> ', details.form);
|
|
|
|
|
|
|
|
console.log('submitData :>> ', submitData);
|
|
|
|
const res = await postUpdateCarsLoadBasicData(submitData);
|
|
|
|
const { code, msg } = res.data;
|
|
|
|
if (code !== 200) return;
|
|
|
|
ElMessage({
|
|
|
|
message: msg,
|
|
|
|
type: 'success',
|
|
|
|
});
|
|
|
|
back();
|
|
|
|
// console.log('res :>> ', res);
|
|
|
|
} catch (error) {
|
|
|
|
console.log('error :>> ', error);
|
|
|
|
} finally {
|
|
|
|
btnLoadingObj.submitBtn = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 提交 */
|
|
|
|
const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
if (btnLoadingObj.submitBtn) return;
|
|
|
|
if (!formEl) return;
|
|
|
|
console.log('111 :>> ', 111);
|
|
|
|
formEl.validate(async (valid, fields) => {
|
|
|
|
if (valid) {
|
|
|
|
// 新增提交
|
|
|
|
if (Number(details.pageType) === 1) addSubmit();
|
|
|
|
// 修改提交
|
|
|
|
else if (Number(details.pageType) === 2) editSubmit();
|
|
|
|
} else {
|
|
|
|
console.log('error submit!', fields);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
watch($route, () => {
|
|
|
|
onLoad();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.fo-fl {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
zoom: 0.9;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 日期选择器
|
|
|
|
:deep(.el-date-editor.el-input) {
|
|
|
|
height: 100% !important;
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-range-editor.el-input__wrapper) {
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fwb {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 弹出层标题
|
|
|
|
.popUp_title {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 5px 20px;
|
|
|
|
position: relative;
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
width: 4px;
|
|
|
|
height: 100%;
|
|
|
|
background: #172e60;
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.red {
|
|
|
|
color: var(--token-simulation-red-base-62);
|
|
|
|
}
|
|
|
|
|
|
|
|
.w100 {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 标题
|
|
|
|
:deep(.el-divider__text.is-left) {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--el-color-primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 表单行
|
|
|
|
.form_row {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.form_row_item {
|
|
|
|
display: flex;
|
|
|
|
margin-right: 20px;
|
|
|
|
|
|
|
|
:deep(.el-form-item.asterisk-left) {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 单选框
|
|
|
|
:deep(.el-radio.el-radio--large) {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 数字输入框
|
|
|
|
:deep(.nodeInfo .el-table .cell) {
|
|
|
|
overflow: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.slotbuts) {
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
.el-input-number {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-steps) {
|
|
|
|
--el-color-success: #1a3061;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-step__title.is-process) {
|
|
|
|
font-weight: bold;
|
|
|
|
--el-text-color-primary: #60df54;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-step__head.is-process) {
|
|
|
|
--el-text-color-primary: #60df54;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-step__title.is-process .count_icon) {
|
|
|
|
background: #60df54;
|
|
|
|
}
|
|
|
|
|
|
|
|
.count_icon {
|
|
|
|
--width: 25px;
|
|
|
|
margin-right: 20px;
|
|
|
|
width: var(--width);
|
|
|
|
height: var(--width);
|
|
|
|
background: var(--el-color-primary);
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 50%;
|
|
|
|
text-align: center;
|
|
|
|
line-height: var(--width);
|
|
|
|
}
|
|
|
|
|
|
|
|
.steps_title {
|
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 步骤条
|
|
|
|
:deep(.el-steps) {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-step.is-horizontal) {
|
|
|
|
max-width: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 新增行
|
|
|
|
.add_row {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-table__row) {
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 页面底部站位
|
|
|
|
.footer {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 提交按钮
|
|
|
|
.button-container {
|
|
|
|
z-index: 99;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 30px;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 错误提示
|
|
|
|
:deep(.el-form-item__error) {
|
|
|
|
z-index: 99;
|
|
|
|
--el-color-danger: #f00;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.el-form-item.is-error .el-input__wrapper) {
|
|
|
|
--el-color-danger: #f00;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(
|
|
|
|
.el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label:before,
|
|
|
|
.el-form-item.is-required:not(.is-no-asterisk).asterisk-left
|
|
|
|
> .el-form-item__label-wrap
|
|
|
|
> .el-form-item__label:before
|
|
|
|
) {
|
|
|
|
--el-color-danger: #f00;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 修改数字输入框
|
|
|
|
:deep(.editInput .el-input__inner) {
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 修改弹窗内样式
|
|
|
|
.edit_title {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit_row {
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
|
|
.flex1 {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 统计行
|
|
|
|
.total_row {
|
|
|
|
margin-top: 5px;
|
|
|
|
zoom: 0.9;
|
|
|
|
color: var(--el-color-primary);
|
|
|
|
}
|
|
|
|
</style>
|