1743 lines
63 KiB
Vue
1743 lines
63 KiB
Vue
<template>
|
||
<div style="margin-bottom: 20px;">
|
||
<el-form ref="form" size="mini" :model="form" :rules="rules" :disabled="disabled" label-width="80px" class="overflowhidden" >
|
||
<el-row :gutter="20" style="display: flex;flex-wrap: wrap;">
|
||
<el-col :span="19" style="border-right: 1px solid #e4e1e1;">
|
||
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
|
||
|
||
<el-col :span="6">
|
||
<el-form-item :label="$t('批次号')" prop="batchNo">
|
||
<el-input v-model="form.batchNo" placeholder="自动生成" disabled />
|
||
<!-- <span>{{ form.batchNo }}</span> -->
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="10">
|
||
<el-form-item :label="$t('批次名称')" prop="batchName" label-width="110px">
|
||
<span slot="label">
|
||
<el-tooltip placement="top">
|
||
<div slot="content" class="tips-content text-tips-content">
|
||
<span>批次名称规则:</span><br>
|
||
<div class="rule-box">
|
||
1)快递(E):<br>
|
||
快递(E)-南京分拨中心(NJ)-供应商-昆明(KM)-250113-提单号<br>
|
||
ENJDHKM250113+提单号<br>
|
||
2)空运(A):<br>
|
||
空运(A)-南京分拨中心(NJ)-供应商-昆明(KM)-250113-提单号<br>
|
||
ANJNHKM250113+提单号<br>
|
||
3)陆运(L):<br>
|
||
陆运(L)-南京分拨中心(NJ)-供应商-昆明(KM)-250113-车牌<br>
|
||
LNJJTKM250113+车牌<br>
|
||
4)海运(S):<br>
|
||
海运(S)-上海-供应商-西港-250113-提单号<br>
|
||
SSHXG250113+提单号<br>
|
||
5)铁路(R):<br>
|
||
铁路(R)-上海-供应商-南宁-250113-集装箱号<br>
|
||
RSHNN250113+集装箱号<br>
|
||
6)国内进仓(D):<br>
|
||
同行(D)-上海-供应商-南京分拨中心-250113-运单号/订单号 (顺丰、跨越、百世、安能、中通、申通、货拉拉、运满满等)<br>
|
||
DSHNN250113+运单号/订单号<br>
|
||
</div>
|
||
</div>
|
||
<i class="el-icon-question" />
|
||
</el-tooltip>
|
||
<span >批次名称:</span>
|
||
</span>
|
||
<el-input v-model="form.batchName" clearable="" placeholder="" ></el-input>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item :label="$t('批次类型')" prop="batchType">
|
||
<el-select v-model="form.batchType" placeholder="" style="width:100%">
|
||
<el-option key="1" label="一程批次" value="1"></el-option>
|
||
<el-option key="2" label="二程批次" value="2"></el-option>
|
||
<el-option key="4" label="三程批次" value="4"></el-option>
|
||
<el-option key="3" label="网点互寄" value="3"></el-option>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
|
||
<el-col :span="8">
|
||
<el-form-item :label="$t('起始网点')" prop="startSiteCode">
|
||
<EmisSiteSimplePicker :placeholder="$t('请选择')" @onChange="onSiteSelect" v-model="form.startSiteCode" ></EmisSiteSimplePicker>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item :label="$t('下一网点')" prop="nextSiteCode">
|
||
<EmisSiteSimplePicker :placeholder="$t('请选择')" @onChange="onNextSiteSelect" v-model="form.nextSiteCode" ></EmisSiteSimplePicker>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item :label="$t('目的国')" prop="destCountry">
|
||
<CountryPicker :placeholder="$t('选择国')" v-model="form.destCountry" ></CountryPicker>
|
||
</el-form-item>
|
||
</el-col>
|
||
|
||
|
||
<el-col :span="8">
|
||
<el-form-item label="运输方式" prop="transType">
|
||
<el-select v-model="form.transType" placeholder="运输方式" clearable filterable style="width:100%" @change="calcBatchName" >
|
||
<el-option
|
||
v-for="dict in dict.type.emis_biz_shipping_method"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item :label="$t('供应商')" prop="supplierCode">
|
||
<EmisSupplierPicker :placeholder="$t('请选择')" @onChange="onSupplierSelect" v-model="form.supplierCode" ></EmisSupplierPicker>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8" >
|
||
<el-form-item :label="$t('运输号')" prop="carNo">
|
||
<el-input v-model="form.carNo" clearable="" placeholder="车牌号/船次号/提单号" @change="calcBatchName"></el-input>
|
||
</el-form-item>
|
||
</el-col>
|
||
|
||
<el-col :span="8">
|
||
<el-form-item :label="$t('承运重量')" prop="transWeight">
|
||
<el-input v-model="form.transWeight" clearable="" placeholder="" >
|
||
<span slot="suffix">(kg)</span>
|
||
</el-input>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item :label="$t('包裹数')" prop="packNum">
|
||
<el-input v-model="form.packNum" clearable="" placeholder="" ></el-input>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8" >
|
||
<el-form-item label="发出时间" prop="etd" >
|
||
<el-date-picker clearable
|
||
v-model="form.etd"
|
||
type="date"
|
||
value-format="yyyy-MM-dd"
|
||
placeholder="请选择发出时间"
|
||
style="width:100%"
|
||
@change="calcBatchName"
|
||
>
|
||
</el-date-picker>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="24">
|
||
<el-form-item :label="$t('备注')" prop="remark">
|
||
<el-input v-model="form.remark" clearable="" type="textarea" placeholder="" ></el-input>
|
||
</el-form-item>
|
||
</el-col>
|
||
|
||
</el-row>
|
||
</el-col>
|
||
|
||
<el-col :span="5">
|
||
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
|
||
<el-col :span="24">
|
||
<el-form-item style="font-weight:600;" label-width="0px">
|
||
<span>{{$t('总票数') + ': ' + (form.totalWaybillQty || 0)}}</span>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="24">
|
||
<el-form-item style="font-weight:600;" label-width="0px">
|
||
<span>{{$t('总重量') + ': ' + (form.totalWeight || 0)}}</span>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="24">
|
||
<el-form-item style="font-weight:600;" label-width="0px">
|
||
<span>{{$t('总件数') + ': ' + (form.totalParcelQty || 0)}}</span>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="24">
|
||
<el-form-item style="font-weight:600;" label-width="0px">
|
||
<span>{{$t('总体积') + ': ' + (form.totalVolume || 0)}}</span>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</el-col>
|
||
|
||
<el-col :span="24" style="" v-if="['3','4','5'].indexOf(form.transType) > -1">
|
||
<div style="margin-top:20px;padding: 3px 5px;font-size: 14px;">
|
||
装柜示意图
|
||
</div>
|
||
<el-table :data="tableData"
|
||
border
|
||
style="width:100%;border:2px solid #e2e2e2"
|
||
>
|
||
<!-- 表头1 -->
|
||
<el-table-column label="柜头" colspan="2">
|
||
<template slot-scope="scope">
|
||
<el-row>
|
||
<el-col :span="12">
|
||
<el-input v-model="scope.row[1]"></el-input>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-input v-model="scope.row[2]"></el-input>
|
||
</el-col>
|
||
</el-row>
|
||
</template>
|
||
</el-table-column>
|
||
<!-- 表头2 -->
|
||
<el-table-column label="柜中" colspan="2">
|
||
<template slot-scope="scope">
|
||
<el-row>
|
||
<el-col :span="12">
|
||
<el-input v-model="scope.row[3]"></el-input>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-input v-model="scope.row[4]"></el-input>
|
||
</el-col>
|
||
</el-row>
|
||
</template>
|
||
</el-table-column>
|
||
<!-- 表头3 -->
|
||
<el-table-column label="柜尾" colspan="2">
|
||
<template slot-scope="scope">
|
||
<el-row>
|
||
<el-col :span="12">
|
||
<el-input v-model="scope.row[5]"></el-input>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-input v-model="scope.row[6]"></el-input>
|
||
</el-col>
|
||
</el-row>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
</el-col>
|
||
</el-row>
|
||
</el-form>
|
||
|
||
<div style="margin-top:20px;padding: 3px 5px;font-size: 14px;">
|
||
装柜运单列表
|
||
</div>
|
||
<XdTable
|
||
max-height="400px"
|
||
v-loading="loading"
|
||
border
|
||
size="mini"
|
||
|
||
storageName="emisCoPackDetail_main_240702"
|
||
|
||
ref="refTable"
|
||
|
||
id="emisCoPackDetail"
|
||
:data="emisCoPackDetail"
|
||
:showSearch.sync="showSearch"
|
||
:queryParams="queryParams"
|
||
|
||
@queryTable="getWaybillList"
|
||
@selection-change="handleCoPackSelectionChange"
|
||
@sort-change="handleSortChange"
|
||
|
||
>
|
||
<div slot="toolbar">
|
||
<el-row :gutter="10" class="mb8">
|
||
<el-col :span="1.5" v-if="!disabled">
|
||
<el-button
|
||
type="primary"
|
||
plain
|
||
icon="el-icon-plus"
|
||
size="mini"
|
||
@click="handleAddWayBill"
|
||
>加入运单</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5" v-if="!disabled">
|
||
<el-button
|
||
type="primary"
|
||
plain
|
||
size="mini"
|
||
@click="handleCoPackListDelete"
|
||
:disabled="coMultiple"
|
||
>移除运单</el-button>
|
||
</el-col>
|
||
<el-col :span="1.5" v-if="this.form.id!=null">
|
||
<el-button style="margin-right: 5px;"
|
||
type="warning"
|
||
plain
|
||
icon="el-icon-download"
|
||
size="mini"
|
||
@click="handleDownBatchDtl"
|
||
>导出</el-button>
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
<el-table-column type="selection" width="55" align="center" />
|
||
<el-table-column :label="$t('运单号')" align="center" prop="billCode" min-width="170" />
|
||
<el-table-column :label="$t('寄件网点')" align="center" prop="sendSiteName" min-width="80" :show-overflow-tooltip="true"/>
|
||
<el-table-column :label="$t('寄件国家')" align="center" prop="sendCountryName" min-width="100">
|
||
<template slot-scope="scope">
|
||
<span class="ellipsis">{{ scope.row.sendCountryName }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('目的国家')" align="center" prop="receiveCountryName" min-width="100">
|
||
<template slot-scope="scope">
|
||
<span class="ellipsis">{{ scope.row.receiveCountryName }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('线路')" align="center" prop="transLineTypeName" min-width="100" />
|
||
<el-table-column :label="$t('产品类型')" align="center" prop="productTypeName" min-width="100" />
|
||
<el-table-column :label="$t('预计到达时间')" align="center" prop="estimateDate" min-width="170">
|
||
<template slot-scope="scope">
|
||
<span>{{ parseTime(scope.row.estimateDate || '') }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
|
||
|
||
<el-table-column :label="$t('总件数')" align="center" prop="parcelQty" min-width="100" />
|
||
<el-table-column :label="$t('实际重量')" align="center" prop="billWeight" min-width="100" />
|
||
<!-- <el-table-column :label="$t('总重量')" align="center" prop="totalWeight" min-width="100" /> -->
|
||
<el-table-column :label="$t('总体积')" align="center" prop="totalVolume" min-width="100" />
|
||
<el-table-column :label="$t('体积重量')" align="center" prop="volumeWeight" min-width="100" />
|
||
<el-table-column :label="$t('结算重量')" align="center" prop="settlementWeight" min-width="100" />
|
||
<el-table-column :label="$t('收件人')" align="center" prop="receiveName" min-width="150" />
|
||
<el-table-column :label="$t('收件公司')" align="center" prop="receiveCompany" min-width="100">
|
||
<template slot-scope="scope">
|
||
<span class="ellipsis">{{ scope.row.receiveCompany }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('报关方式')" align="center" prop="customsEclaration" min-width="80" >
|
||
<template slot-scope="scope">
|
||
<dict-tag :options="dict.type.emis_declare_mode" :value="scope.row.customsEclaration"/>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('清关方式')" align="center" prop="customsClear" min-width="80" >
|
||
<template slot-scope="scope">
|
||
<dict-tag :options="dict.type.emis_customs_clear" :value="scope.row.customsClear"/>
|
||
</template>
|
||
</el-table-column>
|
||
<!-- <el-table-column :label="$t('取件员')" align="center" prop="takePieceEmployeeName" min-width="80" /> -->
|
||
<el-table-column :label="$t('取件方式')" align="center" prop="pickupMethod" min-width="80">
|
||
<template slot-scope="scope">
|
||
<dict-tag :options="dict.type.emis_qujian_fangshi" :value="scope.row.pickupMethod"/>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('付款方式')" align="center" prop="paymentType" min-width="80">
|
||
<template slot-scope="scope">
|
||
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.paymentType"/>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('运费')" align="center" prop="freight" min-width="80" />
|
||
<el-table-column :label="$t('寄件人')" align="center" prop="sendName" min-width="150" :show-overflow-tooltip="true" />
|
||
<el-table-column :label="$t('寄件公司')" align="center" prop="sendCompany" min-width="100" :show-overflow-tooltip="true" >
|
||
<template slot-scope="scope">
|
||
<span class="ellipsis">{{ scope.row.sendCompany }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('录单备注')" align="center" prop="remark" min-width="100" :show-overflow-tooltip="true" >
|
||
<template slot-scope="scope">
|
||
<span class="ellipsis">{{ scope.row.remark }}</span>
|
||
</template>
|
||
</el-table-column>
|
||
</XdTable>
|
||
|
||
<div style="text-align: center;margin-bottom: 10px;" v-if="!disabled">
|
||
<el-button type="primary" @click="submitAddCoPackForm">保存批次</el-button>
|
||
<el-button @click="handleCancelCo">取 消</el-button>
|
||
</div>
|
||
|
||
<el-dialog :title="titleBatch" :visible.sync="openBatch" width="50%" v-dialogDrag :close-on-click-modal="false" append-to-body>
|
||
<el-form ref="formBatch" size="mini" label-width="60px">
|
||
<el-row>
|
||
<el-col :span="24">
|
||
<el-form-item :label="$t('运单号')" prop="formBatchBillList">
|
||
<el-input v-model="formBatchBillList" type="textarea" :rows="8" placeholder="运单号" />
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</el-form>
|
||
<div slot="footer" class="dialog-footer" style="text-align:center">
|
||
<el-button type="primary" @click="submitFormBatch">确定</el-button>
|
||
<el-button @click="cancelBatch">取 消</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { listEmisTmsSiteBatch, getTmsGroupBatchNo, getEmisTmsSiteBatch, delEmisTmsSiteBatch, addEmisTmsSiteBatch, updateEmisTmsSiteBatch } from "@/api/emis/emisTmsSiteBatch";
|
||
import { listEmisTmsSiteBatchDtl, delEmisTmsSiteBatchDtl, addEmisTmsSiteBatchDtl } from "@/api/emis/emisTmsSiteBatchDtl";
|
||
import { addEmisTmsSiteBatchLoading, listEmisTmsSiteBatchLoading, updateEmisTmsSiteBatchLoading } from "@/api/emis/emisTmsSiteBatchLoading";
|
||
import { listEmisWaybill } from "@/api/emis/emisWaybill";
|
||
import emisTmsPackForm from '@/views/emis/emisTmsPack/emisTmsPackForm';
|
||
import elDateAdvPicker from '@/components/DatePickerAdv/elDateAdvPicker';
|
||
import CountryPicker from '@/views/emis/EmisBaseTools/CountryPicker.vue';
|
||
import EmisSiteSimplePicker from '@/views/emis/EmisBaseTools/EmisSiteSimplePicker.vue';
|
||
import EmisGetNextSitePicker from '@/views/emis/EmisBaseTools/EmisGetNextSitePicker.vue';
|
||
import TransProductPicker from '@/views/emis/EmisBaseTools/TransProductPicker.vue';
|
||
import TransLinePicker from '@/views/emis/EmisBaseTools/TransLinePicker.vue';
|
||
import { parseTime, dateToStr } from "@/utils/custom";
|
||
import { formatSearchStr } from '@/utils/index'
|
||
import moment from 'moment'
|
||
|
||
import PackListView from '@/views/emis/emisTmsSiteBatch/packListView';
|
||
import EmisSupplierPicker from '@/views/emis/EmisBaseTools/EmisSupplierPicker';
|
||
|
||
export default {
|
||
name: "BigBatchEditForm",
|
||
props: {
|
||
batchId: {
|
||
type:[Number,Array],
|
||
required: false
|
||
},
|
||
disabled: {
|
||
type:[Boolean],
|
||
required: false
|
||
},
|
||
|
||
},
|
||
components: { EmisGetNextSitePicker, CountryPicker, EmisSiteSimplePicker, elDateAdvPicker, emisTmsPackForm, TransLinePicker, TransProductPicker, PackListView,EmisSupplierPicker},
|
||
dicts: ['emis_waybill_status', 'emis_payment_type', 'emis_biz_shipping_method', 'emis_qujian_fangshi', 'cebp_return_status','emis_declare_mode','emis_customs_clear'],
|
||
data() {
|
||
return {
|
||
// 遮罩层
|
||
loading: false,
|
||
loading2: false,
|
||
loadingWait: false,
|
||
loadingDone: false,
|
||
// 选中数组
|
||
ids: [],
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
|
||
coSingle: true,
|
||
coMultiple: true,
|
||
|
||
addWayBillDisabled: true,
|
||
// packDisabled: true,
|
||
activeName:'third',
|
||
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 创建时间搜索
|
||
dateTimeRange:[],
|
||
// 总条数
|
||
total: 0,
|
||
// TMS组批次表格数据
|
||
emisTmsPackList: [],
|
||
|
||
// 待组批次列表
|
||
emisTmsWaitPackList:[],
|
||
waitTotal:0,
|
||
|
||
// 已组批次列表
|
||
emisTmsDonePackList:[],
|
||
doneTotal:0,
|
||
waitPackList:[],//选择未组包的运单先保存起来,在后续新增组批次的弹框中使用
|
||
// 新增/修改弹窗数据
|
||
form: {},
|
||
|
||
rules: {
|
||
batchType: [
|
||
{ required: true, message: "批次类型不能为空", trigger: ["blur","change"] },
|
||
],
|
||
batchName: [
|
||
{ required: true, message: "批次名称不能为空", trigger: ["blur","change"] },
|
||
],
|
||
// supplierCode: [
|
||
// { required: true, message: "供应商不能为空", trigger: ["blur","change"] },
|
||
// ],
|
||
// destCountry: [
|
||
// { required: true, message: "目的国不能为空", trigger: ["blur","change"] },
|
||
// ],
|
||
startSiteCode: [
|
||
{ required: true, message: "起始网点不能为空", trigger: ["blur","change"] },
|
||
],
|
||
nextSiteCode: [
|
||
{ required: true, message: "下一网点不能为空", trigger: ["blur","change"] },
|
||
],
|
||
transType: [
|
||
{ required: true, message: "运输方式不能为空", trigger: ["blur","change"] },
|
||
],
|
||
airBilllNo: [
|
||
{ required: true, message: "航空单号不能为空", trigger: ["blur","change"] },
|
||
],
|
||
etd: [
|
||
{ required: true, message: "发出日期不能为空", trigger: ["blur","change"] },
|
||
],
|
||
// shipNo: [
|
||
// { required: true, message: "船次号不能为空", trigger: ["blur","change"] },
|
||
// ],
|
||
// shipTime: [
|
||
// { required: true, message: "开船时间不能为空", trigger: ["blur","change"] },
|
||
// ],
|
||
carNo: [
|
||
{ required: true, message: "车牌号不能为空", trigger: ["blur","change"] },
|
||
],
|
||
carTime: [
|
||
{ required: true, message: "发车时间不能为空", trigger: ["blur","change"] },
|
||
],
|
||
transWeight: [
|
||
{ required: true, message: "承运重量不能为空", trigger: ["blur","change"] },
|
||
],
|
||
packNum: [
|
||
{ required: true, message: "包裹数量不能为空", trigger: ["blur","change"] },
|
||
],
|
||
|
||
|
||
},
|
||
|
||
openBatch: false,
|
||
titleBatch: "",
|
||
formBatchBillList:"",
|
||
|
||
// 新增/修改包详情数据
|
||
emisCoPackDetail:[],
|
||
blUnpack:"1",
|
||
// 追加的运单查询数据
|
||
wayBillData: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
params:{
|
||
dataTimeType: '1',
|
||
queryOrderType: '1'
|
||
}
|
||
},
|
||
// 追加的运单数据
|
||
emisWayBillList:[],
|
||
wayBillotal:0,
|
||
|
||
currentId:null,
|
||
openForm: false,
|
||
titleForm: "",
|
||
|
||
titleWayBill:null,
|
||
openWayBillForm:false,
|
||
|
||
tempCoPackList:[],
|
||
coSelection:[],
|
||
//区分当前是新增还是修改
|
||
coPackType:'',
|
||
|
||
// 临时存储已有组批次的运单号
|
||
tempExistCoPackWayBillList:[],
|
||
tempCoPackInfo:{},
|
||
|
||
// 弹出展示层
|
||
id:null,
|
||
titleView:"",
|
||
openView: false,
|
||
// 更新网点时间范围
|
||
daterangeCreateTime: [],
|
||
// 更新网点时间范围
|
||
daterangeUpdateTime: [],
|
||
tableData:[
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' }
|
||
],
|
||
tableDataId:[
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' }
|
||
],
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
billCode:null,
|
||
orderSN:null,
|
||
batchNo:null,
|
||
// packNo: null,
|
||
// packName: null,
|
||
// packDate: null,
|
||
destCountry: null,
|
||
destCountryName: null,
|
||
// blUnpack: null,
|
||
// sendSiteCode: null,
|
||
// totalParcelQty: null,
|
||
// totalWaybillQty: null,
|
||
// totalVolume: null,
|
||
// totalWeight: null,
|
||
// packStatus: null,
|
||
// opMan: null,
|
||
// remark: null,
|
||
// delFlag: null,
|
||
params:{
|
||
queryOrderType: '0',
|
||
queryOrderDateType: '1'
|
||
},
|
||
},
|
||
queryCoParams: {
|
||
params:{}
|
||
},
|
||
// 查询参数
|
||
queryWaitParams: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
packNo: null,
|
||
beginCreateTime: null,
|
||
endCreateTime: null,
|
||
params:{}
|
||
},
|
||
// 查询参数
|
||
queryDoneParams: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
packNo: null,
|
||
params:{}
|
||
},
|
||
};
|
||
},
|
||
created() {
|
||
this.initData();
|
||
},
|
||
methods: {
|
||
// 批次名称计算
|
||
calcBatchName(){
|
||
/*
|
||
1、批次名称规则:
|
||
1)快递(E):
|
||
快递(E)-南京分拨中心(NJ)-东航(DH)-昆明(KM)-250113-提单号
|
||
ENJDHKM250113+提单号
|
||
2)空运(A):
|
||
空运(A)-南京分拨中心(NJ)-南航(NH)-昆明(KM)-250113-提单号
|
||
ANJNHKM250113+提单号
|
||
3)陆运(L):
|
||
陆运(L)-南京分拨中心(NJ)-九通(JT)-昆明(KM)-250113-车牌
|
||
LNJJTKM250113+车牌
|
||
4)海运(S):
|
||
海运(S)-上海-西港-250113-提单号
|
||
SSHXG250113+提单号
|
||
5)铁路(R):
|
||
铁路(R)-上海-南宁-250113-集装箱号
|
||
RSHNN250113+集装箱号
|
||
6)国内进仓(D):
|
||
上海-顺丰-南京分拨中心-250113-运单号/订单号 (顺丰、跨越、百世、安能、中通、申通、货拉拉、运满满等)
|
||
DSHNN250113+运单号/订单号
|
||
*/
|
||
if(this.form.transType==1){
|
||
if(this.form.etd&&this.form.transType&&this.form.supplierNameEn&&this.form.startSiteSizeCode3&&this.form.nextSiteSizeCode3&&this.form.carNo){
|
||
// 快递(E)-南京分拨中心(NJ)-东航(DH)-昆明(KM)-250113-提单号
|
||
let yymmdd = moment(this.form.etd).format('YYMMDD');
|
||
this.form.batchName = "E"+this.form.startSiteSizeCode3+""+this.form.supplierNameEn+""+this.form.nextSiteSizeCode3+yymmdd+this.form.carNo;
|
||
}
|
||
}
|
||
else if(this.form.transType==2){
|
||
if(this.form.etd&&this.form.transType&&this.form.supplierNameEn&&this.form.startSiteSizeCode3&&this.form.nextSiteSizeCode3&&this.form.carNo){
|
||
// 空运(A)-南京分拨中心(NJ)-南航(NH)-昆明(KM)-250113-提单号
|
||
let yymmdd = moment(this.form.etd).format('YYMMDD');
|
||
this.form.batchName = "A"+this.form.startSiteSizeCode3+""+this.form.supplierNameEn+""+this.form.nextSiteSizeCode3+yymmdd+this.form.carNo;
|
||
}
|
||
}
|
||
else if(this.form.transType==3){
|
||
if(this.form.etd&&this.form.transType&&this.form.supplierNameEn&&this.form.startSiteSizeCode3&&this.form.nextSiteSizeCode3&&this.form.carNo){
|
||
// 陆运(L)-南京分拨中心(NJ)-九通(JT)-昆明(KM)-250113-车牌
|
||
let yymmdd = moment(this.form.etd).format('YYMMDD');
|
||
this.form.batchName = "L"+this.form.startSiteSizeCode3+""+this.form.supplierNameEn+""+this.form.nextSiteSizeCode3+yymmdd+this.form.carNo;
|
||
}
|
||
}
|
||
else if(this.form.transType==4){
|
||
if(this.form.etd&&this.form.transType&&this.form.supplierNameEn&&this.form.startSiteSizeCode3&&this.form.nextSiteSizeCode3&&this.form.carNo){
|
||
// 海运(S)-上海-供应商-西港-250113-提单号
|
||
let yymmdd = moment(this.form.etd).format('YYMMDD');
|
||
this.form.batchName = "S"+this.form.startSiteSizeCode3+""+this.form.supplierNameEn+""+this.form.nextSiteSizeCode3+yymmdd+this.form.carNo;
|
||
}
|
||
}
|
||
else if(this.form.transType==5){
|
||
if(this.form.etd&&this.form.transType&&this.form.supplierNameEn&&this.form.startSiteSizeCode3&&this.form.nextSiteSizeCode3&&this.form.carNo){
|
||
// 铁路(R)-上海-南宁-250113-集装箱号
|
||
let yymmdd = moment(this.form.etd).format('YYMMDD');
|
||
this.form.batchName = "R"+this.form.startSiteSizeCode3+""+this.form.supplierNameEn+""+this.form.nextSiteSizeCode3+yymmdd+this.form.carNo;
|
||
}
|
||
}
|
||
else if(this.form.transType==6){
|
||
if(this.form.etd&&this.form.transType&&this.form.supplierNameEn&&this.form.startSiteSizeCode3&&this.form.nextSiteSizeCode3&&this.form.carNo){
|
||
// 国内进仓(D)-上海-供应商-南宁-250113-集装箱号
|
||
let yymmdd = moment(this.form.etd).format('YYMMDD');
|
||
this.form.batchName = "D"+this.form.startSiteSizeCode3+""+this.form.supplierNameEn+""+this.form.nextSiteSizeCode3+yymmdd+this.form.carNo;
|
||
}
|
||
}
|
||
|
||
console.log("====>batchName===>",this.form.batchName);
|
||
|
||
},
|
||
async initData() {
|
||
|
||
if(this.batchId !=null) {
|
||
this.showBatchInfo(this.batchId);
|
||
this.coPackType = "edit";
|
||
}else{
|
||
this.reset();
|
||
|
||
this.form.startSiteCode=this.$store.getters.ownerSiteCode;
|
||
this.form.batchType='1';
|
||
this.coPackType = "add";
|
||
|
||
let resPack = await getTmsGroupBatchNo();
|
||
this.form.batchNo = resPack.data;
|
||
|
||
this.form.batchDate=parseTime(new Date());
|
||
|
||
}
|
||
},
|
||
// 表单重置
|
||
reset() {
|
||
this.form = {
|
||
id: null,
|
||
batchNo: null,
|
||
batchName: null,
|
||
batchDate: null,
|
||
supplierCode: null,
|
||
supplierName: null,
|
||
supplierNameEn: null,
|
||
transLineType: null,
|
||
productType: null,
|
||
batchType: null,
|
||
transType: null,
|
||
startSiteCode: null,
|
||
startSiteSizeCode3:null,
|
||
sendCountry: null,
|
||
nextSiteCode: null,
|
||
nextSiteSizeCode3:null,
|
||
airBilllNo: null,
|
||
etd: null,
|
||
eta: null,
|
||
carNo: null,
|
||
shipNo: null,
|
||
clearanceResStatus: null,
|
||
declareResStatus: null,
|
||
destCountry: null,
|
||
destCountryName: null,
|
||
transWeight: null,
|
||
packNum: null,
|
||
totalParcelQty: null,
|
||
totalWaybillQty: null,
|
||
totalVolume: null,
|
||
totalWeight: null,
|
||
opMan: null,
|
||
remark: null,
|
||
tenantId: null,
|
||
};
|
||
this.resetForm("form");
|
||
},
|
||
|
||
async showBatchInfo(batchId){
|
||
this.coPackType="edit";
|
||
let response = await getEmisTmsSiteBatch(batchId);
|
||
if(!response || response.code != 200){
|
||
this.$modal.msgError(response && response.msg || "未知错误");
|
||
return;
|
||
}
|
||
// let resData = response.data;
|
||
// let time = {};
|
||
// time.carTime = resData.etd;
|
||
this.form = {...response.data};
|
||
|
||
this.emisCoPackDetail=[];
|
||
let resList = await listEmisTmsSiteBatchDtl({batchNo: this.form.batchNo});
|
||
if(!resList || resList.code != 200){
|
||
this.$modal.msgError(resList && resList.msg || "未知错误");
|
||
return;
|
||
}
|
||
this.tempExistCoPackWayBillList = resList.rows;
|
||
//临时存储,用于运单号校验
|
||
this.tempCoPackInfo = this.form;
|
||
for(let p = 0; p < resList.rows.length;p++){
|
||
this.emisCoPackDetail.push(resList.rows[p].waybillDetail);
|
||
}
|
||
this.form.packStatus = this.tempCoPackInfo.packStatus;
|
||
this.form.scanDate = this.tempCoPackInfo.scanDate;
|
||
|
||
let resLoadingList = await listEmisTmsSiteBatchLoading({batchNo: this.form.batchNo});
|
||
if(!resLoadingList || resLoadingList.code != 200){
|
||
this.$modal.msgError(resLoadingList && resLoadingList.msg || "未知错误");
|
||
return;
|
||
}
|
||
|
||
this.tempCoPackInfo.tableData = [
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' }
|
||
];
|
||
this.tempCoPackInfo.tableDataId=[
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' }
|
||
];
|
||
for(let p = 0; p < resLoadingList.rows.length;p++){
|
||
this.tempCoPackInfo.tableDataId[resLoadingList.rows[p].row][resLoadingList.rows[p].col] = resLoadingList.rows[p].id;
|
||
this.tempCoPackInfo.tableData[resLoadingList.rows[p].row][resLoadingList.rows[p].col] = resLoadingList.rows[p].posDesc;
|
||
this.tableData[resLoadingList.rows[p].row][resLoadingList.rows[p].col] = resLoadingList.rows[p].posDesc;
|
||
// this.emisCoPackDetail.push(resLoadingList.rows[p].waybillDetail);
|
||
}
|
||
|
||
this.computeTotal();
|
||
this.currentId=null;
|
||
this.openForm= true;
|
||
this.titleForm = "修改组批次";
|
||
},
|
||
|
||
getWaybillList(){
|
||
|
||
},
|
||
handleQueryWait(){
|
||
this.single = true;
|
||
this.multiple = true;
|
||
if(null != this.dateTimeRange && '' != this.dateTimeRange){
|
||
this.queryWaitParams.params.beginCreateTime = dateToStr(new Date(this.dateTimeRange[0]));
|
||
this.queryWaitParams.params.endCreateTime = dateToStr(new Date(this.dateTimeRange[1]));
|
||
}
|
||
// this.queryWaitParams.packNo = this.queryParams.packNo;
|
||
this.queryWaitParams.receiveCountry = this.queryParams.receiveCountry;
|
||
this.queryWaitParams.sendCountry = this.queryParams.sendCountry;
|
||
|
||
if(this.queryParams.billCode){
|
||
let qBillCode=formatSearchStr(this.queryParams.billCode);
|
||
let billArr = qBillCode.split(",");
|
||
let newBillCodeStr="";
|
||
billArr.forEach(item=>{
|
||
if(item.startsWith("T")){
|
||
let mainBillCode=item.substr(0,14);
|
||
newBillCodeStr=newBillCodeStr+mainBillCode+",";
|
||
}else if(item == ""){
|
||
|
||
}else{
|
||
newBillCodeStr=newBillCodeStr+item+",";
|
||
}
|
||
});
|
||
if(this.queryParams.params.queryOrderType == "0"){
|
||
this.queryWaitParams.batchNo=newBillCodeStr;
|
||
this.queryWaitParams.billCode=null;
|
||
}else{
|
||
// 处理子单号
|
||
this.queryWaitParams.billCode=newBillCodeStr;
|
||
this.queryWaitParams.batchNo=null;
|
||
}
|
||
}
|
||
|
||
this.loadingWait = true;
|
||
this.queryWaitParams.params.isNeedBatch = 1;
|
||
this.queryWaitParams.params.batchType = this.form.batchType;
|
||
|
||
listEmisWaybill(this.queryWaitParams).then(response => {
|
||
this.loadingWait = false;
|
||
if(response.code != 200){
|
||
this.$modal.msgError(response.msg);
|
||
return;
|
||
}
|
||
this.emisTmsWaitPackList = response.rows;
|
||
// this.emisCoPackDetail = response.rows;
|
||
console.log(this)
|
||
this.waitTotal = response.total;
|
||
})
|
||
},
|
||
handleWaitSelectionChange(selection){
|
||
// selection.length > 0 ? this.packDisabled = false : this.packDisabled=true;
|
||
this.waitPackList = selection;
|
||
},
|
||
async handleQueryDone(){
|
||
this.single = true;
|
||
this.multiple = true;
|
||
this.loadingDone = true;
|
||
if(null != this.dateTimeRange && '' != this.dateTimeRange){
|
||
this.queryDoneParams.params.beginCreateTime = dateToStr(new Date(this.dateTimeRange[0]));
|
||
this.queryDoneParams.params.endCreateTime = dateToStr(new Date(this.dateTimeRange[1]));
|
||
}
|
||
// this.queryDoneParams.packNo = this.queryParams.packNo;
|
||
if(this.queryParams.billCode){
|
||
let qBillCode=formatSearchStr(this.queryParams.billCode);
|
||
let billArr = qBillCode.split(",");
|
||
let newBillCodeStr="";
|
||
billArr.forEach(item=>{
|
||
if(item.startsWith("T")){
|
||
let mainBillCode=item.substr(0,14);
|
||
newBillCodeStr=newBillCodeStr+mainBillCode+",";
|
||
}else if(item == ""){
|
||
|
||
}else{
|
||
newBillCodeStr=newBillCodeStr+item+",";
|
||
}
|
||
});
|
||
if(this.queryParams.params.queryOrderType == "0"){
|
||
this.queryDoneParams.batchNo=newBillCodeStr;
|
||
this.queryDoneParams.billCode=null;
|
||
}else{
|
||
// 处理子单号
|
||
this.queryDoneParams.billCode=newBillCodeStr;
|
||
this.queryDoneParams.batchNo=null;
|
||
}
|
||
}
|
||
|
||
this.queryDoneParams.receiveCountry = this.queryParams.receiveCountry;
|
||
this.queryDoneParams.sendCountry = this.queryParams.sendCountry;
|
||
let resList = await listEmisTmsSiteBatchDtl(this.queryDoneParams);
|
||
this.loadingDone = false;
|
||
if(!resList || resList.code != 200){
|
||
this.$modal.msgError(resList && resList.msg || "未知错误");
|
||
return;
|
||
}
|
||
//this.tempExistCoPackWayBillList = resList.rows;//临时存储,用于运单号校验
|
||
this.doneTotal = resList.total;
|
||
this.emisTmsDonePackList = [];
|
||
for(let p = 0; p < resList.rows.length;p++){
|
||
let obj = {...resList.rows[p].waybillDetail};
|
||
obj.packNo = resList.rows[p].packNo;
|
||
this.emisTmsDonePackList.push(obj);
|
||
}
|
||
},
|
||
handleDoneSelectionChange(){
|
||
|
||
},
|
||
handleQueryWayBill(){
|
||
this.loading2 = true;
|
||
if (null != this.wayBillData.dateTimeRange && '' != this.wayBillData.dateTimeRange) {
|
||
if(this.wayBillData.dataTimeType == '1'){
|
||
// 下单时间
|
||
this.wayBillData.params.beginOrderDate = dateToStr(new Date(this.wayBillData.dateTimeRange[0]));
|
||
this.wayBillData.params.endOrderDate = dateToStr(new Date(this.wayBillData.dateTimeRange[1]));
|
||
}else if(this.wayBillData.dataTimeType == '0'){
|
||
// 录单时间
|
||
this.wayBillData.params.beginCreateTime = dateToStr(new Date(this.wayBillData.dateTimeRange[0]));
|
||
this.wayBillData.params.endCreateTime = dateToStr(new Date(this.wayBillData.dateTimeRange[1]));
|
||
}
|
||
}
|
||
if(this.wayBillData.billCode){
|
||
let qBillCode=formatSearchStr(this.wayBillData.billCode);
|
||
let billArr = qBillCode.split(",");
|
||
let newBillCodeStr="";
|
||
billArr.forEach(item=>{
|
||
if(item.startsWith("T")){
|
||
let mainBillCode=item.substr(0,14);
|
||
newBillCodeStr=newBillCodeStr+mainBillCode+",";
|
||
}else if(item == ""){
|
||
|
||
}else{
|
||
newBillCodeStr=newBillCodeStr+item+",";
|
||
}
|
||
});
|
||
if(this.wayBillData.params.queryOrderType == "0"){
|
||
this.wayBillData.orderSN=newBillCodeStr;
|
||
this.wayBillData.billCode=null;
|
||
}else{
|
||
// 处理子单号
|
||
this.wayBillData.billCode=newBillCodeStr;
|
||
this.wayBillData.orderSN=null;
|
||
}
|
||
}
|
||
this.wayBillData.params.isNeedBatch = 1;
|
||
this.wayBillData.params.batchType = this.form.batchType;
|
||
listEmisWaybill(this.wayBillData).then(response => {
|
||
this.loading2 = false;
|
||
if(response.code != 200){
|
||
this.$modal.msgError(response.msg);
|
||
return;
|
||
}
|
||
this.emisWayBillList = response.rows;
|
||
// this.emisCoPackDetail = response.rows;
|
||
console.log(this)
|
||
this.wayBillotal = response.total;
|
||
})
|
||
},
|
||
onSupplierSelect(item){
|
||
console.log("==onSupplierSelect===>",item);
|
||
if(!item){
|
||
this.form.supplierCode=null;
|
||
this.form.supplierName=null;
|
||
this.form.supplierNameEn=null;
|
||
return;
|
||
}
|
||
|
||
this.form.supplierCode=item.code;
|
||
this.form.supplierName=item.name;
|
||
this.form.supplierNameEn=item.nameEn;
|
||
// 计算批次名称
|
||
this.calcBatchName();
|
||
|
||
},
|
||
onSiteSelect(item){
|
||
console.log("==onSiteSelect===>",item);
|
||
if(!item){
|
||
this.form.startSiteCode = null;
|
||
this.form.startSiteName = null;
|
||
this.form.startSiteSizeCode3 = null;
|
||
return;
|
||
}
|
||
this.form.startSiteCode=item && item.siteCode;
|
||
this.form.startSiteName=item && item.siteName;
|
||
this.form.startSiteSizeCode3 = item && item.sizeCode3;
|
||
|
||
// 计算批次名称
|
||
this.calcBatchName();
|
||
|
||
},
|
||
onNextSiteSelect(item){
|
||
if(!item){
|
||
this.form.nextSiteCode = null;
|
||
this.form.nextSiteName = null;
|
||
this.form.nextSiteSizeCode3 = null;
|
||
return;
|
||
}
|
||
this.form.nextSiteCode=item && item.siteCode;
|
||
this.form.nextSiteName=item && item.siteName;
|
||
this.form.nextSiteSizeCode3 = item && item.sizeCode3;
|
||
|
||
// 计算批次名称
|
||
this.calcBatchName();
|
||
},
|
||
onDateSelect(value){
|
||
console.log("date picker---->", value)
|
||
this.dateTimeRange=value;
|
||
if(this.queryParams.params.queryOrderDateType == '1'){
|
||
// 下单时间
|
||
this.queryParams.params.beginCreateTime = dateToStr(new Date(this.dateTimeRange[0]));
|
||
this.queryParams.params.endCreateTime = dateToStr(new Date(this.dateTimeRange[1]));
|
||
}
|
||
},
|
||
onWayBillDateSelect(value){
|
||
console.log("date picker---->", value)
|
||
this.wayBillData.dateTimeRange=value;
|
||
},
|
||
|
||
submitAddCoPackForm() {
|
||
this.$refs["form"].validate(valid => {
|
||
if (valid) {
|
||
this.handleAddCoPack();
|
||
}
|
||
});
|
||
},
|
||
|
||
async handleAddCoPack(){
|
||
|
||
if(this.emisCoPackDetail.length == 0){
|
||
this.$modal.msgError("请先选择至少一条运单信息")
|
||
return;
|
||
}
|
||
|
||
// this.form.etd = parseTime(this.form.carTime, '{y}-{m}-{d} {h}:{i}:{s}');
|
||
|
||
// 新增
|
||
if(this.coPackType == "add")
|
||
{
|
||
|
||
let response = await addEmisTmsSiteBatch(this.form);
|
||
if(!response || response.code != 200){
|
||
this.$modal.msgError(response && response.msg || '新增组批次失败')
|
||
return;
|
||
}
|
||
|
||
for(let i = 0; i< this.emisCoPackDetail.length;i++){
|
||
let packDetail = {
|
||
batchNo:this.form.batchNo,
|
||
billCode: this.emisCoPackDetail[i].billCode,
|
||
scanDate: this.emisCoPackDetail[i].scanDate,
|
||
scanStatus: this.emisCoPackDetail[i].scanStatus,
|
||
groupStatus: "1",//已组批次
|
||
scanMan: this.emisCoPackDetail[i].scanMan,
|
||
scanSite: this.emisCoPackDetail[i].scanSite,
|
||
};
|
||
|
||
let response = await addEmisTmsSiteBatchDtl(packDetail);
|
||
if(!response || response.code != 200){
|
||
this.$modal.msgError(response && response.msg || '组批次明细新增失败')
|
||
return;
|
||
}
|
||
this.waitPackList=[];
|
||
}
|
||
|
||
// 新增配载数据 tableData
|
||
for(let lr = 0; lr < 3; lr++){
|
||
for(let ll = 0; ll < 6; ll++){
|
||
let batchLoadingData = {
|
||
batchNo: this.form.batchNo,
|
||
posNo:lr+":"+ll+":1",
|
||
row: lr,
|
||
col: ll,
|
||
layer: 1,
|
||
posDesc:this.tableData[lr][ll],
|
||
remark:"",
|
||
tenantId:"",
|
||
}
|
||
let resLD = await addEmisTmsSiteBatchLoading(batchLoadingData);
|
||
if(!resLD || resLD.code != 200){
|
||
this.$modal.msgError(resLD && resLD.msg || '组批次配载明细新增失败')
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else if(this.coPackType == "edit"){// 修改
|
||
let res = await updateEmisTmsSiteBatch(this.form);
|
||
if(!res || res.code != 200){
|
||
this.$modal.msgError(res && res.msg || '未知错误')
|
||
return;
|
||
}
|
||
|
||
// 修改配载数据
|
||
for(let lr = 0; lr < 3; lr++){
|
||
for(let ll = 0; ll < 6; ll++){
|
||
if(this.tempCoPackInfo.tableData[lr][ll] != this.tableData[lr][ll]){
|
||
let batchLoadingData = {
|
||
id: this.tempCoPackInfo.tableDataId[lr][ll],
|
||
posDesc:this.tableData[lr][ll],
|
||
}
|
||
let resLD = await updateEmisTmsSiteBatchLoading(batchLoadingData);
|
||
if(!resLD || resLD.code != 200){
|
||
this.$modal.msgError(resLD && resLD.msg || '组批次配载明细新增失败')
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
this.$modal.msgSuccess('操作成功!');
|
||
this.$emit("on-changed");
|
||
|
||
},
|
||
|
||
handleCancelCo(){
|
||
this.form={};
|
||
this.blUnpack="1";
|
||
this.emisCoPackDetail=[];
|
||
this.$emit("on-cancel");
|
||
},
|
||
handleWayBillSelectionChange(selection){
|
||
this.tempCoPackList = selection;
|
||
this.tempCoPackList.length > 0 ? this.addWayBillDisabled = false : this.addWayBillDisabled = true;
|
||
},
|
||
async submitFormBatch(){
|
||
if(this.formBatchBillList==null || this.formBatchBillList==''){
|
||
this.$modal.msgError("请输入单号");
|
||
return;
|
||
}
|
||
let bcList=this.formBatchBillList.trim().split(/[;\;\,\,\n]/)||[];
|
||
|
||
for(let i = 0; i < bcList.length; i++){
|
||
let billcode = bcList[i].trim();
|
||
if(this.emisCoPackDetail.filter(wb => wb.billCode == billcode).length == 0){
|
||
|
||
let billRes = await listEmisWaybill(
|
||
{
|
||
billCode:billcode,
|
||
params:{
|
||
isNeedBatch:1,
|
||
batchType:this.form.batchType
|
||
}
|
||
}
|
||
);
|
||
if(!billRes || billRes.code != 200){
|
||
this.$modal.msgError(billRes && billRes.msg)
|
||
return;
|
||
}else if(!billRes.rows || billRes.rows.length < 1){
|
||
this.$modal.msgError('运单不存在或状态异常(已签收,已占用,已派送),不能组批次: ' + billcode)
|
||
return;
|
||
}
|
||
let item = billRes.rows[0];
|
||
this.emisCoPackDetail.push(item);
|
||
if(this.coPackType=="edit"){
|
||
let packDetail = {
|
||
batchNo: this.form.batchNo,
|
||
billCode: item.billCode,
|
||
scanDate: item.scanDate,
|
||
scanStatus: item.scanStatus,
|
||
groupStatus: "1",//已组批次
|
||
scanMan: item.scanMan,
|
||
scanSite: item.scanSite,
|
||
createBy: this.$store.getters.empCode,
|
||
createTime: parseTime(new Date())
|
||
};
|
||
let response = await addEmisTmsSiteBatchDtl(packDetail);
|
||
if(!response || response.code != 200){
|
||
this.$modal.msgError(response && response.msg || '组批次明细新增失败')
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
this.titleBatch="";
|
||
this.openBatch=false;
|
||
this.formBatchBillList = "";
|
||
this.wayBillData = {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
params:{}
|
||
};
|
||
this.emisWayBillList=[];
|
||
this.tempCoPackList=[];
|
||
this.addWayBillDisabled = true;
|
||
this.wayBillotal=0;
|
||
this.computeTotal();
|
||
// 更新主表
|
||
if(this.coPackType=="edit"){
|
||
let res = await updateEmisTmsSiteBatch(this.form);
|
||
if(!res || res.code != 200){
|
||
this.$modal.msgError(res && res.msg || '未知错误')
|
||
return;
|
||
}
|
||
}
|
||
},
|
||
async handleCoAdd(){
|
||
this.tempCoPackList.forEach(async (item) => {
|
||
if(this.emisCoPackDetail.filter(wb => wb.billCode == item.billCode).length == 0){
|
||
this.emisCoPackDetail.push(item);
|
||
if(this.coPackType=="edit"){
|
||
let packDetail = {
|
||
batchNo: this.form.batchNo,
|
||
billCode: item.billCode,
|
||
scanDate: item.scanDate,
|
||
scanStatus: item.scanStatus,
|
||
groupStatus: "1",//已组批次
|
||
scanMan: item.scanMan,
|
||
scanSite: item.scanSite,
|
||
createBy: this.$store.getters.empCode,
|
||
createTime: parseTime(new Date())
|
||
};
|
||
let response = await addEmisTmsSiteBatchDtl(packDetail);
|
||
if(!response || response.code != 200){
|
||
this.$modal.msgError(response && response.msg || '组批次明细新增失败')
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
})
|
||
this.titleWayBill="";
|
||
this.openWayBillForm=false;
|
||
this.wayBillData = {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
params:{}
|
||
};
|
||
this.emisWayBillList=[];
|
||
this.tempCoPackList=[];
|
||
this.addWayBillDisabled = true;
|
||
this.wayBillotal=0;
|
||
this.computeTotal();
|
||
// 更新主表
|
||
if(this.coPackType=="edit"){
|
||
let res = await updateEmisTmsSiteBatch(this.form);
|
||
if(!res || res.code != 200){
|
||
this.$modal.msgError(res && res.msg || '未知错误')
|
||
return;
|
||
}
|
||
}
|
||
},
|
||
handleCloseWayBill(){
|
||
this.titleWayBill="";
|
||
this.openWayBillForm=false;
|
||
this.wayBillData = {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
params:{}
|
||
};
|
||
this.emisWayBillList=[];
|
||
this.tempCoPackList=[];
|
||
this.addWayBillDisabled = true;
|
||
this.wayBillotal=0;
|
||
},
|
||
handleCoPackListDelete(){
|
||
|
||
if(this.coPackType == "edit"){
|
||
this.$confirm('确认删除该条数据吗?', '确认信息')
|
||
.then(async (isPass) => {
|
||
if (isPass) {
|
||
//计算要删除的运单, “删除”按钮的操作逻辑
|
||
// let tempDelList = [];
|
||
// 计算出选中的数据是已存在还是新增的;
|
||
let idsArrTemp=[];
|
||
for(let gti=0; gti < this.tempExistCoPackWayBillList.length;gti++){
|
||
if(this.coSelection.filter(item => {
|
||
return this.tempExistCoPackWayBillList[gti].billCode == item.billCode
|
||
}).length > 0){
|
||
// 已存在
|
||
let res = await delEmisTmsSiteBatchDtl(this.tempExistCoPackWayBillList[gti].id);
|
||
if(!res || res.code != 200){
|
||
this.$modal.msgError(res && res.msg || '未知错误')
|
||
return;
|
||
}
|
||
idsArrTemp.push(this.tempExistCoPackWayBillList[gti].id)
|
||
}
|
||
}
|
||
let newList =[];
|
||
this.emisCoPackDetail.forEach(item=>{
|
||
if(this.coSelection.filter(cs => cs.billCode == item.billCode) == 0){
|
||
newList.push(item);
|
||
}
|
||
});
|
||
this.emisCoPackDetail = newList;
|
||
let afterList=[];
|
||
for(let ai = 0; ai < this.tempExistCoPackWayBillList.length; ai++){
|
||
console.log(idsArrTemp)
|
||
console.log(this.tempExistCoPackWayBillList[ai])
|
||
if(idsArrTemp.indexOf(this.tempExistCoPackWayBillList[ai].id) == -1){
|
||
afterList.push(this.tempExistCoPackWayBillList[ai]);
|
||
}
|
||
}
|
||
this.tempExistCoPackWayBillList = afterList;//this.tempExistCoPackWayBillList.filter(item => {idsArrTemp.indexOf(item.id) == -1})
|
||
|
||
this.computeTotal();
|
||
// 更新主表
|
||
this.tempCoPackInfo.destCountry = this.form.destCountry;
|
||
// this.tempCoPackInfo.sendStiteCode = this.form.sendStiteCode;
|
||
// this.tempCoPackInfo.sendStiteName = this.form.sendStiteName || null;
|
||
this.tempCoPackInfo.nextSiteCode = this.form.nextSiteCode;
|
||
this.tempCoPackInfo.nextSiteName = this.form.nextSiteName;
|
||
this.tempCoPackInfo.blUnpack = this.blUnpack;
|
||
this.tempCoPackInfo.totalWaybillQty = this.form.totalWaybillQty;
|
||
this.tempCoPackInfo.totalParcelQty = this.form.totalParcelQty;
|
||
this.tempCoPackInfo.totalWeight = this.form.totalWeight;
|
||
this.tempCoPackInfo.totalVolume = this.form.totalVolume;
|
||
let res = await updateEmisTmsSiteBatch(this.tempCoPackInfo);
|
||
if(!res || res.code != 200){
|
||
this.$modal.msgError(res && res.msg || '未知错误')
|
||
return;
|
||
}
|
||
this.$modal.msgSuccess('删除成功')
|
||
}
|
||
})
|
||
.catch()
|
||
}else{
|
||
let newList =[];
|
||
this.emisCoPackDetail.forEach(item=>{
|
||
if(this.coSelection.filter(cs => cs.billCode == item.billCode) == 0){
|
||
newList.push(item);
|
||
}
|
||
});
|
||
this.emisCoPackDetail = newList;
|
||
this.computeTotal();
|
||
}
|
||
},
|
||
/** 搜索按钮操作 */
|
||
handleQuery() {
|
||
this.queryParams.pageNum = 1;
|
||
// this.queryParams.pageSize = 20;
|
||
this.getList();
|
||
},
|
||
/** 重置按钮操作 */
|
||
resetQuery() {
|
||
this.resetForm("queryForm");
|
||
this.handleQuery();
|
||
},
|
||
// 多选框选中数据
|
||
handleSelectionChange(selection) {
|
||
this.ids = selection.map(item => item.id)
|
||
this.selection = selection;
|
||
this.single = selection.length!==1
|
||
this.multiple = !selection.length
|
||
},
|
||
handleCoPackSelectionChange(selection){
|
||
// this.coSelection = selection.map(item => item.id)
|
||
this.coSelection = selection;
|
||
this.coSingle = selection.length!==1
|
||
this.coMultiple = !selection.length
|
||
},
|
||
computeTotal(){
|
||
let totalParcelQty=0;
|
||
let totalWeight=0;
|
||
let totalVolume=0;
|
||
this.emisCoPackDetail.forEach(item =>{
|
||
totalParcelQty +=item.parcelQty;
|
||
totalWeight +=item.billWeight;
|
||
totalVolume +=item.totalVolume;
|
||
item.destCountry = this.form.destCountry;
|
||
// item.sendSiteCode = this.form.sendSiteCode;
|
||
item.startSiteCode = this.form.startSiteCode;
|
||
item.startSiteName = this.form.startSiteName;
|
||
// item.nextSiteCode = this.form.nextSiteCode;
|
||
item.nextSiteCode = this.form.nextSiteCode;
|
||
item.nextSiteName = this.form.nextSiteName;
|
||
item.blUnpack = this.blUnpack;
|
||
})
|
||
this.form.totalWaybillQty=this.emisCoPackDetail.length;
|
||
this.form.totalParcelQty=totalParcelQty;
|
||
this.form.totalWeight=totalWeight.toFixed(2);
|
||
this.form.totalVolume=totalVolume.toFixed(4);
|
||
},
|
||
// 排序 查询字段是表格中字段名字 动态取值排序顺序
|
||
handleSortChange(column) {
|
||
this.queryParams.orderByColumn = column.prop;
|
||
this.queryParams.isAsc = column.order;
|
||
this.getList();
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd() {
|
||
|
||
},
|
||
|
||
handleAddWayBill(){
|
||
this.openBatch = true;
|
||
this.titleBatch = "批量输入运单号";
|
||
},
|
||
cancelBatch(){
|
||
this.openBatch=false;
|
||
this.titleBatch = "";
|
||
this.formBatchBillList = "";
|
||
},
|
||
handleShowMoreInput(){
|
||
this.moreInputVisible = !this.moreInputVisible;
|
||
},
|
||
/** 修改按钮操作 */
|
||
async handleUpdate() {
|
||
// this.form={};
|
||
let id = this.ids[0]
|
||
this.coPackType="edit";
|
||
let response = await getEmisTmsSiteBatch(id);
|
||
if(!response || response.code != 200){
|
||
this.$modal.msgError(response && response.msg || "未知错误");
|
||
return;
|
||
}
|
||
let resData = response.data;
|
||
let time = {};
|
||
|
||
time.carTime = resData.etd;
|
||
this.form = {...resData, ...{batchDate:resData.createTime}, ...time};
|
||
|
||
this.emisCoPackDetail=[];
|
||
let resList = await listEmisTmsSiteBatchDtl({batchNo: resData.batchNo});
|
||
if(!resList || resList.code != 200){
|
||
this.$modal.msgError(resList && resList.msg || "未知错误");
|
||
return;
|
||
}
|
||
this.tempExistCoPackWayBillList = resList.rows;//临时存储,用于运单号校验
|
||
this.tempCoPackInfo = resData;
|
||
for(let p = 0; p < resList.rows.length;p++){
|
||
this.emisCoPackDetail.push(resList.rows[p].waybillDetail);
|
||
}
|
||
this.form.packStatus = this.tempCoPackInfo.packStatus;
|
||
this.form.scanDate = this.tempCoPackInfo.scanDate;
|
||
|
||
let resLoadingList = await listEmisTmsSiteBatchLoading({batchNo: resData.batchNo});
|
||
if(!resLoadingList || resLoadingList.code != 200){
|
||
this.$modal.msgError(resLoadingList && resLoadingList.msg || "未知错误");
|
||
return;
|
||
}
|
||
|
||
this.tempCoPackInfo.tableData = [
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' }
|
||
];
|
||
this.tempCoPackInfo.tableDataId=[
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' },
|
||
{ 1: '', 2: '', 3: '', 4: '', 5: '', 6: '' }
|
||
];
|
||
for(let p = 0; p < resLoadingList.rows.length;p++){
|
||
this.tempCoPackInfo.tableDataId[resLoadingList.rows[p].row][resLoadingList.rows[p].col] = resLoadingList.rows[p].id;
|
||
this.tempCoPackInfo.tableData[resLoadingList.rows[p].row][resLoadingList.rows[p].col] = resLoadingList.rows[p].posDesc;
|
||
this.tableData[resLoadingList.rows[p].row][resLoadingList.rows[p].col] = resLoadingList.rows[p].posDesc;
|
||
// this.emisCoPackDetail.push(resLoadingList.rows[p].waybillDetail);
|
||
}
|
||
|
||
this.computeTotal();
|
||
this.currentId=null;
|
||
this.openForm= true;
|
||
this.titleForm = "修改组批次";
|
||
},
|
||
handleView(row) {
|
||
this.id=row.id;
|
||
this.titleView="查看";
|
||
this.openView=true;
|
||
// this.router.push({ path: '/emis/emisTmsPack/viewDetail', query: { id: row.id }})
|
||
},
|
||
handleFormChanged(){
|
||
this.openForm = false;
|
||
this.getList();
|
||
},
|
||
cancelForm(){
|
||
this.openForm = false;
|
||
},
|
||
/** 删除按钮操作 */
|
||
CoPack(row) {
|
||
const ids = row.id || this.ids;
|
||
this.$modal.confirm('是否确认删除').then(function() {
|
||
return delEmisTmsSiteBatch(ids);
|
||
}).then(() => {
|
||
this.getList();
|
||
this.$modal.msgSuccess("删除成功");
|
||
}).catch(() => {});
|
||
},
|
||
|
||
/** 导出按钮操作 */
|
||
handleDownBatchDtl() {
|
||
const loadingInstance = this.$loading({
|
||
text: '正在导出...'
|
||
})
|
||
|
||
let qExportParam={
|
||
pageNum:1,
|
||
pageSize:20000,
|
||
batchNo: this.form.batchNo
|
||
};
|
||
|
||
listEmisTmsSiteBatchDtl(qExportParam).then(response => {
|
||
if (response.code === 200) {
|
||
this.exportData(response.rows,loadingInstance);
|
||
}
|
||
});
|
||
},
|
||
exportData(selData,loadingInstance){
|
||
const curList =selData
|
||
import('@/vendor/Export2Excel').then(excel => {
|
||
const exportParam=this.$refs.refTable.getExportParam();
|
||
const tHeader = exportParam.header;
|
||
const filterVal = exportParam.filter;
|
||
console.log("===>filterVal===>",filterVal);
|
||
|
||
const data = this.formatJson(filterVal, curList, selData)
|
||
excel.export_json_to_excel({
|
||
header: tHeader,
|
||
data,
|
||
filename: '批次明细导出',
|
||
autoWidth: true
|
||
})
|
||
loadingInstance.close()
|
||
})
|
||
},
|
||
formatJson(filterVal, jsonData, resData) {
|
||
let index = 0
|
||
return jsonData.map(v => filterVal.map(j => {
|
||
|
||
// console.log("===>1111===>",v);
|
||
|
||
if (j === 'index') {
|
||
return ++index
|
||
}
|
||
if (j === 'kjlx') {
|
||
return v['waybillDetail']['sendSiteName']+'--'+v['waybillDetail']['dispatchUnderlingSiteName'];
|
||
}
|
||
if (j === 'fjr') {
|
||
return v['sendName']+'--'+v['receiveName'];
|
||
}
|
||
|
||
if (j === 'receiveCountryName') {
|
||
return v['waybillDetail']['receiveCountryName'];
|
||
}
|
||
|
||
if (j === 'sendCountryName') {
|
||
return v['waybillDetail']['sendCountryName'];
|
||
}
|
||
|
||
|
||
if (j === 'estimateDate') {
|
||
return v['waybillDetail']['estimateDate'];
|
||
}
|
||
|
||
if (j === 'sendSiteName') {
|
||
return v['waybillDetail']['sendSiteName'];
|
||
}
|
||
|
||
if (j === 'sendName') {
|
||
return v['waybillDetail']['sendName'];
|
||
}
|
||
|
||
if (j === 'receiveName') {
|
||
return v['waybillDetail']['receiveName'];
|
||
}
|
||
|
||
if (j === 'sendDate') {
|
||
return v['waybillDetail']['sendDate'];
|
||
}
|
||
|
||
if (j === 'sendCompany') {
|
||
return v['waybillDetail']['sendCompany'];
|
||
}
|
||
|
||
if (j === 'receiveCompany') {
|
||
return v['waybillDetail']['receiveCompany'];
|
||
}
|
||
|
||
if (j === 'transLineTypeName') {
|
||
return v['waybillDetail']['transLineTypeName'];
|
||
}
|
||
|
||
if (j === 'productTypeName') {
|
||
return v['waybillDetail']['productTypeName'];
|
||
}
|
||
|
||
|
||
if (j === 'sendName') {
|
||
return v['waybillDetail']['sendName'];
|
||
}
|
||
|
||
if (j === 'parcelQty') {
|
||
return v['waybillDetail']['parcelQty'];
|
||
}
|
||
|
||
if (j === 'billWeight') {
|
||
return v['waybillDetail']['billWeight'];
|
||
}
|
||
|
||
if (j === 'volumeWeight') {
|
||
return v['waybillDetail']['volumeWeight'];
|
||
}
|
||
|
||
if (j === 'totalVolume') {
|
||
return v['waybillDetail']['totalVolume'];
|
||
}
|
||
|
||
if (j === 'settlementWeight') {
|
||
return v['waybillDetail']['settlementWeight'];
|
||
}
|
||
|
||
if (j === 'freight') {
|
||
return v['waybillDetail']['freight'];
|
||
}
|
||
|
||
if (j === 'realFee') {
|
||
return v['waybillDetail']['realFee'];
|
||
}
|
||
|
||
if (j === 'remark') {
|
||
return v['waybillDetail']['remark'];
|
||
}
|
||
|
||
if (j === 'feeRemark') {
|
||
return v['waybillDetail']['feeRemark'];
|
||
}
|
||
|
||
if (j === 'salesmen') {
|
||
return v['waybillDetail']['salesmen'];
|
||
}
|
||
|
||
if (j === 'payee') {
|
||
return v['waybillDetail']['payee'];
|
||
}
|
||
|
||
if (j === 'payee') {
|
||
return v['waybillDetail']['payee'];
|
||
}
|
||
|
||
if (j === 'problemTypeName') {
|
||
return v['waybillDetail']['problemTypeName'];
|
||
}
|
||
|
||
if (j === 'problemCause') {
|
||
return v['waybillDetail']['problemCause'];
|
||
}
|
||
|
||
if (j === 'sendMobile') {
|
||
return "";
|
||
}
|
||
|
||
if (j === 'calcFeeType') {
|
||
return this.selectDictLabel(this.dict.type.emis_calc_fee_type,v['waybillDetail']['calcFeeType']);
|
||
}
|
||
|
||
if (j === 'waybillDetail.paymentStatus') {
|
||
return this.selectDictLabel(this.dict.type.emis_payment_status,v['waybillDetail']['paymentStatus']);
|
||
}
|
||
|
||
if (j === 'pickupMethod') {
|
||
return this.selectDictLabel(this.dict.type.emis_qujian_fangshi,v['waybillDetail']['pickupMethod']);
|
||
}
|
||
if (j === 'customsEclaration') {
|
||
return this.selectDictLabel(this.dict.type.emis_declare_mode,v['waybillDetail']['customsEclaration']);
|
||
}
|
||
if (j === 'customsClear') {
|
||
return this.selectDictLabel(this.dict.type.emis_customs_clear,v['waybillDetail']['customsClear']);
|
||
}
|
||
if (j === 'packType') {
|
||
return this.selectDictLabels(this.dict.type.emis_tab_packing_type,v['waybillDetail']['packType']);
|
||
}
|
||
|
||
if (j === 'dispatchMethod') {
|
||
if(v['waybillDetail']['dispatchMethod'] == 1){
|
||
return '派送';
|
||
}else{
|
||
return '自提';
|
||
}
|
||
}
|
||
|
||
|
||
|
||
|
||
|
||
if (j === 'blMessage') {
|
||
if(v['waybillDetail']['blMessage'] == 1){
|
||
return '发送';
|
||
}else{
|
||
return '不发送';
|
||
}
|
||
}
|
||
if (j === 'blAcceptMessage') {
|
||
if(v['waybillDetail']['blAcceptMessage'] == 1){
|
||
return '发送';
|
||
}else{
|
||
return '不发送';
|
||
}
|
||
}
|
||
if (j === 'blSign') {
|
||
if(v['waybillDetail']['blSign'] == 1){
|
||
return '已签收';
|
||
}else{
|
||
return '未签收';
|
||
}
|
||
}
|
||
if (j === 'paymentType') {
|
||
return this.selectDictLabel(this.dict.type.emis_payment_type,v['waybillDetail']['paymentType']);
|
||
}
|
||
return v[j]
|
||
}))
|
||
},
|
||
|
||
/** 列索引函数 */
|
||
getIndex($index) {
|
||
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
|
||
},
|
||
/** 时间搜索响应函数 */
|
||
dateTimeChange(value){
|
||
this.dateTimeRange=value;
|
||
},
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.el-divider{
|
||
margin-top: 0px;
|
||
background: 0 0;
|
||
border-top: 1px solid #E6EBF5;
|
||
}
|
||
.el-divider__text {
|
||
color: #0955ee;
|
||
cursor: pointer;
|
||
}
|
||
.query-label {
|
||
.el-radio{
|
||
display: block;
|
||
line-height: 23px;
|
||
white-space: normal;
|
||
margin-right: 0;
|
||
}
|
||
}
|
||
.overflowhidden{
|
||
overflow: hidden;
|
||
}
|
||
.ellipsis {
|
||
width: 100px;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
vertical-align: top;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
|
||
.cargoList{
|
||
.el-input__inner {
|
||
height: 28px;
|
||
line-height: 28px;
|
||
border: none;
|
||
background: #ffffcd;
|
||
font-size: 10px;
|
||
padding: 0px;
|
||
text-align: center;
|
||
}
|
||
|
||
|
||
.el-input-number {
|
||
width: 100%!important;
|
||
}
|
||
|
||
.el-input-number.is-without-controls .el-input__inner {
|
||
height: 28px;
|
||
line-height: 28px;
|
||
border: none;
|
||
background: #ffffcd;
|
||
font-size: 10px;
|
||
padding: 0px;
|
||
text-align: center;
|
||
}
|
||
}
|
||
</style>
|