You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2884 lines
97 KiB
2884 lines
97 KiB
<template>
|
|
<div class="mod-config">
|
|
<el-form :inline="true" label-position="top" label-width="100px" style="margin-top: 0px;">
|
|
<el-form-item :label="'BU:'">
|
|
<el-select v-model="searchData.buNo" placeholder="请选择" >
|
|
<el-option label="全部" value=""></el-option>
|
|
<el-option
|
|
v-for = "i in buList"
|
|
:key = "i.buNo"
|
|
:label = "i.buDesc"
|
|
:value = "i.buNo">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="'发货通知单:'">
|
|
<el-input v-model="searchData.delNo" style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'CMC Invoice:'">
|
|
<el-input v-model="searchData.cmcInvoice" style="width: 120px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="'通知单状态:'">
|
|
<el-select filterable v-model="searchData.notifyStatus" style="width: 120px">
|
|
<el-option label="全部" value=""></el-option>
|
|
<el-option label="已下达" value="已下达"></el-option>
|
|
<el-option label="仓库已确认" value="仓库已确认"></el-option>
|
|
<el-option label="已报关" value="已报关"></el-option>
|
|
<el-option label="订单取消" value="订单取消"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item :label="'ReadyDate'" >
|
|
<el-date-picker
|
|
style="width: 120px"
|
|
v-model="searchData.startDate"
|
|
type="date"
|
|
format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="选择日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item :label="'To'" >
|
|
<el-date-picker
|
|
style="width: 120px"
|
|
v-model="searchData.endDate"
|
|
type="date"
|
|
format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="选择日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item :label="'是否导出:'">
|
|
<el-select v-model="searchData.exportFlag" style="width: 120px">
|
|
<el-option label="全部" value=""></el-option>
|
|
<el-option label="已导出" value="Y"></el-option>
|
|
<el-option label="未导出" value="N"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="改单">
|
|
<el-checkbox v-model="searchData.modifyData" true-label="true" false-label="false" @change="searchTable()"></el-checkbox>
|
|
</el-form-item>
|
|
<el-form-item :label="' '" >
|
|
<el-button @click="searchTable()" type="primary" style="margin-left: 2px;margin-top: 0px">{{'查询'}}</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-table
|
|
@row-click="changeData"
|
|
highlight-current-row
|
|
:height="height"
|
|
:data="dataList"
|
|
ref="mainTable"
|
|
border :cell-style="cellStyle"
|
|
:row-class-name="tableRowClassName"
|
|
v-loading="dataListLoading"
|
|
style="width: 100%;">
|
|
<el-table-column
|
|
header-align="center"
|
|
align="center"
|
|
width="100"
|
|
fixed="left"
|
|
label="操作">
|
|
<template slot-scope="scope">
|
|
<a type="text" size="small" v-if="scope.row.notifyStatus==='已报关'" @click="updateModelOpen(scope.row)">修改</a>
|
|
<a type="text" size="small" v-if="scope.row.notifyStatus==='已下达'" @click="confirmModelOpen(scope.row)">仓库确认</a>
|
|
<a type="text" size="small" v-if="scope.row.notifyStatus==='仓库已确认'" @click="cancerConfirm(scope.row)">取消确认</a>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
v-for="(item,index) in columnList1" :key="index"
|
|
:sortable="item.columnSortable"
|
|
:prop="item.columnProp"
|
|
:header-align="item.headerAlign"
|
|
:show-overflow-tooltip="item.showOverflowTooltip"
|
|
:align="item.align"
|
|
:fixed="item.fixed==''?false:item.fixed"
|
|
:min-width="item.columnWidth"
|
|
:label="item.columnLabel">
|
|
<template slot-scope="scope">
|
|
<span v-if="!item.columnHidden"> {{scope.row[item.columnProp]}}</span>
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]"
|
|
style="width: 100px; height: 80px"/></span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-pagination
|
|
@size-change="sizeChangeHandle"
|
|
@current-change="currentChangeHandle"
|
|
:current-page="pageIndex"
|
|
:page-sizes="[20, 50, 100, 1000]"
|
|
:page-size="pageSize"
|
|
:total="totalPage"
|
|
layout="total, sizes, prev, pager, next, jumper">
|
|
</el-pagination>
|
|
<el-tabs style="font-size: 12px;min-height: 200px" class="customer-tab" v-model="activeName" type="border-card" @tab-click="tabClick" >
|
|
<el-tab-pane :label="currentRow.cmcInvoice+'明细'" name="detail">
|
|
<el-table
|
|
:height="height" ref="cloDetailTable"
|
|
:data="dataList2" show-summary :summary-method="getDetailSummaries"
|
|
border :cell-style="cellStyleDetail"
|
|
style="width: 100%;">
|
|
<el-table-column
|
|
v-for="(item,index) in columnList2" :key="index"
|
|
:sortable="item.columnSortable"
|
|
:prop="item.columnProp"
|
|
:header-align="item.headerAlign"
|
|
:show-overflow-tooltip="item.showOverflowTooltip"
|
|
:align="item.align"
|
|
:fixed="item.fixed==''?false:item.fixed"
|
|
:min-width="item.columnWidth"
|
|
:label="item.columnLabel">
|
|
<template slot-scope="scope">
|
|
<!-- 金额字段特殊处理 -->
|
|
<span v-if="item.columnProp === 'ttlAmount' || item.columnProp === 'sumPrice'">
|
|
{{!!scope.row[item.columnProp]?scope.row[item.columnProp].toFixed(2):''}}
|
|
</span>
|
|
|
|
<!-- PN字段特殊处理,添加提示信息 -->
|
|
<template v-else-if="item.columnProp === 'pn'">
|
|
<el-tooltip
|
|
v-if="isPnDataIncomplete(scope.row)"
|
|
:content="getPnIncompleteTooltip(scope.row)"
|
|
placement="top">
|
|
<span
|
|
v-if="!item.columnHidden"
|
|
class="clickable-pn"
|
|
@click="navigateToPartHsCode(scope.row.pn)">
|
|
{{ scope.row[item.columnProp] }}
|
|
</span>
|
|
</el-tooltip>
|
|
<span v-else-if="!item.columnHidden">{{ scope.row[item.columnProp] }}</span>
|
|
</template>
|
|
|
|
<!-- 其他字段正常处理 -->
|
|
<template v-else>
|
|
<span v-if="!item.columnHidden">{{ scope.row[item.columnProp] }}</span>
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
</el-tab-pane>
|
|
|
|
<el-tab-pane label="手工装箱" name="box">
|
|
<el-button @click="oneClickPacking()" type="primary" style="margin-left: 2px;margin-top: 0px">{{'一键装箱'}}</el-button>
|
|
<el-button @click="upLoadPallet()" type="primary" style="margin-left: 2px;margin-top: 0px">{{'导入装箱单'}}</el-button>
|
|
<el-button @click="newPalletModel()" type="primary" style="margin-left: 2px;margin-top: 0px">{{'装箱'}}</el-button>
|
|
<el-button @click="palletMaintenance()" type="primary" style="margin-left: 2px;margin-top: 0px">{{'栈板维护'}}</el-button>
|
|
<el-button @click="exportExcel()" type="primary" style="margin-left: 2px;margin-top: 0px">{{'导出模版'}}</el-button>
|
|
<el-table ref="detailTable"
|
|
:data="dataList4"
|
|
:height="height"
|
|
border show-summary :summary-method="getSummaries"
|
|
v-loading="dataListLoading"
|
|
style="width: 100%; ">
|
|
<el-table-column
|
|
header-align="center"
|
|
align="center"
|
|
width="150"
|
|
fixed="left"
|
|
label="操作">
|
|
<template slot-scope="scope">
|
|
<a type="text" size="small" @click="updatePalletModel(scope.row)">修改</a>
|
|
<a type="text" size="small" @click="deletePallet(scope.row)">删除</a>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
v-for="(item,index) in columnList4" :key="index"
|
|
:sortable="item.columnSortable"
|
|
:prop="item.columnProp"
|
|
:header-align="item.headerAlign"
|
|
:show-overflow-tooltip="item.showOverflowTooltip"
|
|
:align="item.align"
|
|
:fixed="item.fixed==''?false:item.fixed"
|
|
:min-width="item.columnWidth"
|
|
:label="item.columnLabel">
|
|
<template slot-scope="scope">
|
|
<span v-if="!item.columnHidden"> {{ scope.row[item.columnProp] }}</span>
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]"
|
|
style="width: 100px; height: 80px"/></span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-tab-pane>
|
|
|
|
<el-tab-pane label="装箱明细" name="pallet">
|
|
<packing-detail-tab
|
|
ref="packingDetailTab"
|
|
:current-row="currentRow"
|
|
:height="height"
|
|
:show-actions="true">
|
|
</packing-detail-tab>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
|
|
<el-dialog title="仓库确认" :close-on-click-modal="false" v-drag :visible.sync="confirmModelFlag" width="400px">
|
|
<el-form label-position="top" style="margin-left: 7px;margin-top: -5px;">
|
|
<el-row :gutter="20">
|
|
<el-col :span="12">
|
|
<el-form-item :label="'CMC Invoice'" >
|
|
<el-input v-model="confirmModel.cmcInvoice" disabled ></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'ReadyDate'" >
|
|
<el-input v-model="confirmModel.readyDate" disabled ></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'预计发货日期'" >
|
|
<el-date-picker
|
|
style="width: 100%"
|
|
v-model="confirmModel.notifyDate"
|
|
type="date"
|
|
format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="选择日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button type="primary" @click="confirmDo()">保存</el-button>
|
|
<el-button type="primary" @click="confirmModelFlag=false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<el-dialog title="修改" :close-on-click-modal="false" v-drag :visible.sync="updateModelFlag" width="350px">
|
|
<el-form label-position="top" style="margin-left: 7px;margin-top: -5px;">
|
|
<el-row :gutter="20">
|
|
<el-col :span="12">
|
|
<el-form-item :label="'ReadyDate'" >
|
|
<el-date-picker
|
|
style="width: 100%"
|
|
v-model="confirmModel.readyDate"
|
|
type="date"
|
|
format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="选择日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'预计发货日期'" >
|
|
<el-date-picker
|
|
style="width: 100%"
|
|
v-model="confirmModel.notifyDate"
|
|
type="date"
|
|
format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="选择日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button type="primary" @click="updateDo()">保存</el-button>
|
|
<el-button type="primary" @click="updateModelFlag=false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<el-dialog title="维护箱" :close-on-click-modal="false" v-drag :visible.sync="boxModelFlag" width="500px">
|
|
<el-form label-position="top" style="margin-left: 7px;margin-top: -5px;">
|
|
<el-row :gutter="20">
|
|
<el-col :span="12">
|
|
<el-form-item :label="boxModelData.type===1?'物料编码':''">
|
|
<span v-if="boxModelData.type===0" slot="label" @click="openPartDialog()"><a herf="#">物料编码</a></span>
|
|
<el-input v-model="boxModelData.pn" :disabled="boxModelData.type===1" ></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'数量'" >
|
|
<el-input v-model="boxModelData.qty" type="number" ></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12" v-if="boxModelData.type===0">
|
|
<el-form-item :label="'PO'" >
|
|
<el-input v-model="boxModelData.poNo" ></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'箱数'" >
|
|
<el-input v-model="boxModelData.boxQty"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'ROLLS'" >
|
|
<el-input v-model="boxModelData.rolls" ></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'毛重'" >
|
|
<el-input v-model="boxModelData.grossWeight"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label="'净重'" >
|
|
<el-input v-model="boxModelData.netWeight" ></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button type="primary" @click="saveBoxHeader()">保存</el-button>
|
|
<el-button type="primary" @click="boxModelFlag=false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<!-- 装箱(新增/修改栈板) -->
|
|
<el-dialog
|
|
:title="palletModelData.addFlag===1 ? '修改栈板' : '手工装箱'"
|
|
:close-on-click-modal="false"
|
|
v-drag
|
|
:visible.sync="palletModelFlag"
|
|
width="780px"
|
|
class="pallet-dialog">
|
|
|
|
<!-- 区域 1:箱信息 -->
|
|
<div class="section section-header">
|
|
<h4 class="section-title">箱信息</h4>
|
|
<el-divider></el-divider>
|
|
<el-form label-position="top" class="box-info-form">
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<el-form-item label="毛重">
|
|
<el-input v-model="palletModelData.grossWeight" type="number" placeholder="请输入毛重"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="净重">
|
|
<el-input v-model="palletModelData.netWeight" type="number" placeholder="请输入净重"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="箱数">
|
|
<el-input v-model="palletModelData.boxQty" type="number" placeholder="请输入箱数"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</div>
|
|
|
|
<!-- 区域 2:箱明细 -->
|
|
<div class="section section-detail">
|
|
<h4 class="section-title">箱明细</h4>
|
|
<el-divider></el-divider>
|
|
<div class="table-wrapper">
|
|
<el-table
|
|
ref="partTableRef"
|
|
:data="dataList8"
|
|
height="100%"
|
|
stripe
|
|
border
|
|
class="zxClass"
|
|
style="width: 100%;">
|
|
<el-table-column prop="pn" label="PN" min-width="120"></el-table-column>
|
|
<el-table-column prop="partDescription" label="Description" min-width="220"></el-table-column>
|
|
<el-table-column prop="qty" label="原数量" align="right" width="70"></el-table-column>
|
|
<el-table-column prop="surplusQty" label="可装箱数量" align="right" width="80"></el-table-column>
|
|
<el-table-column label="装箱数量" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
<el-input v-model.number="scope.row.useQty" type="number" :min="0" :max="999999" size="mini"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="Rolls" align="center" width="80">
|
|
<template slot-scope="scope">
|
|
<el-input v-model.number="scope.row.rolls" type="number" :min="0" :max="999999" size="mini"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" width="70">
|
|
<template slot-scope="scope">
|
|
<a type="text" size="small" @click="fillUseQty(scope.row)">全数装箱</a>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 底部操作按钮 -->
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="savePalletHeader(0)">保存</el-button>
|
|
<el-button type="primary" @click="savePalletHeader(1)">保存并关闭</el-button>
|
|
<el-button @click="palletModelFlag=false">关闭</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
<el-dialog
|
|
:title=" '修改栈板'"
|
|
:close-on-click-modal="false"
|
|
v-drag
|
|
:visible.sync="palletEditFlag"
|
|
width="240px"
|
|
class="pallet-dialog">
|
|
<div class="section section-header">
|
|
<el-divider></el-divider>
|
|
<el-form label-position="top" class="box-info-form">
|
|
<el-row :gutter="20">
|
|
<el-col :span="24">
|
|
<el-form-item label="栈板高度(M)">
|
|
<el-input v-model="palletModelData.height" type="number" placeholder="请输入栈板高度(M)"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-form-item label="托数">
|
|
<el-input v-model="palletModelData.palletQty" type="number" placeholder="请输入托数"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</div>
|
|
<!-- 底部操作按钮 -->
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="updateCodelPalletHeaderPalletQty">保存</el-button>
|
|
<el-button @click="palletEditFlag=false">关闭</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
|
|
<el-dialog title="一键装箱" :close-on-click-modal="false" v-drag :visible.sync="oneClickPackingModelFlag" width="170px">
|
|
<el-form label-position="top" style="margin-left: 7px;margin-top: 10px;">
|
|
<el-row :gutter="20">
|
|
<el-col :span="12">
|
|
<el-form-item :label="''" >
|
|
<el-checkbox v-model="oneClickPackingModelData.boxRemnant">是否显示零数箱</el-checkbox>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button type="primary" @click="saveOneClickPacking()">保存</el-button>
|
|
<el-button type="primary" @click="oneClickPackingModelFlag=false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<el-dialog :close-on-click-modal="false" v-drag :visible.sync="palletMaintenanceModelFlag" width="450px">
|
|
<div slot="title" class="dialog-title">
|
|
<span>栈板维护</span>
|
|
<el-tooltip effect="dark" placement="top">
|
|
<div slot="content">
|
|
<div>栈板维护功能说明:</div>
|
|
<div>• 系统会自动加载当前BU下的所有栈板</div>
|
|
<div>• 栈板高度单位为米(M),请输入准确数值</div>
|
|
<div>• 只有托数大于0的栈板记录才会被保存</div>
|
|
</div>
|
|
<i class="el-icon-question" style="color: #17b3a3; margin-left: 8px; cursor: pointer; font-size: 16px;"></i>
|
|
</el-tooltip>
|
|
</div>
|
|
<!-- 栈板记录列表 -->
|
|
<div style="margin: 15px 0;">
|
|
<el-table :data="palletMaintenanceRecords" border style="width: 100%; margin-bottom: 15px;" class="zxClass"
|
|
max-height="200" v-if="palletMaintenanceRecords.length > 0">
|
|
<el-table-column label="栈板类型" min-width="100">
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.palletType" disabled style="width: 100%;"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column width="120">
|
|
<template slot="header">
|
|
<span>栈板高度(M)</span>
|
|
</template>
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.height" type="text" placeholder="请输入高度" style="width: 100%;"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column width="100">
|
|
<template slot="header">
|
|
<span>托数</span>
|
|
</template>
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.palletQty" type="text" placeholder="请输入托数" style="width: 100%;"></el-input>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div v-if="palletMaintenanceRecords.length === 0" style="text-align: center; color: #999; padding: 20px; border: 1px dashed #ddd;">
|
|
正在加载栈板记录...
|
|
</div>
|
|
|
|
<!-- 操作提示 -->
|
|
<div v-if="palletMaintenanceRecords.length > 0" style="margin-top: 10px; padding: 8px 12px; background: #f0f9ff; border: 1px solid #b3d8ff; border-radius: 4px; font-size: 12px; color: #409EFF;">
|
|
<i class="el-icon-info" style="margin-right: 4px;"></i>
|
|
<span>提示:托数大于0的记录才会被保存。</span>
|
|
</div>
|
|
</div>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button type="primary" @click="savePalletMaintenance()">确定</el-button>
|
|
<el-button type="primary" @click="palletMaintenanceModelFlag=false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
<el-dialog title="物料信息" @close="closePartDialog" @open="openPartDialog" :visible.sync="partFlag" width="559px" v-drag>
|
|
<el-form inline="inline" label-position="top" :model="partData" style="margin-left: 7px;margin-top: -5px;">
|
|
|
|
</el-form>
|
|
<el-table
|
|
:height="height + 110"
|
|
:data="partList"
|
|
stripe
|
|
highlight-current-row
|
|
border
|
|
@row-dblclick="partRowDblclick"
|
|
style="width: 100%;">
|
|
<el-table-column
|
|
prop="pn"
|
|
header-align="center"
|
|
align="center"
|
|
label="物料编码">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="part_desc"
|
|
header-align="center"
|
|
align="center"
|
|
label="物料名称">
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button @click="partFlag = false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
|
|
<el-dialog title="栈板" @close="closePalletDialog" @open="openPalletDialog" :visible.sync="palletFlag" width="559px" v-drag>
|
|
<el-form inline="inline" label-position="top" :model="palletData" style="margin-left: 7px;margin-top: -5px;">
|
|
<el-form-item label="栈板类型">
|
|
<el-input v-model="palletData.palletType" clearable style="width: 110px"></el-input>
|
|
</el-form-item>
|
|
<el-form-item label=" ">
|
|
<el-button type="primary" style="padding: 3px 12px" @click="searchPalletList()">查询</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-table
|
|
:height="height + 110"
|
|
:data="palletList"
|
|
stripe
|
|
highlight-current-row
|
|
border
|
|
@row-dblclick="palletRowDblclick"
|
|
style="width: 100%;">
|
|
<el-table-column
|
|
prop="palletNo"
|
|
header-align="center"
|
|
align="center"
|
|
width="120"
|
|
label="栈板编码">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="palletType"
|
|
header-align="center"
|
|
align="center"
|
|
label="栈板类型">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="applicationArea"
|
|
header-align="center"
|
|
align="center"
|
|
label="应用环境">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="length"
|
|
header-align="center"
|
|
align="center"
|
|
label="长(M)">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="width"
|
|
header-align="center"
|
|
align="center"
|
|
label="宽(M)">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="height"
|
|
header-align="center"
|
|
align="center"
|
|
label="栈板高(M)">
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-footer style="height:40px;margin-top: 10px;text-align:center">
|
|
<el-button @click="palletFlag = false">关闭</el-button>
|
|
</el-footer>
|
|
</el-dialog>
|
|
<!-- 导入 -->
|
|
<pallet-upload-excel ref="palletUploadExcel" @refreshTable="searchPalletTable" v-drag></pallet-upload-excel>
|
|
<!--列表的组件-->
|
|
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Chooselist from '@/views/modules/common/Chooselist_eam'
|
|
import {} from "@/api/sysLanguage.js"
|
|
import palletUploadExcel from "./pallet_upload_excel.vue";
|
|
import PackingDetailTab from "./components/PackingDetailTab.vue";
|
|
import {
|
|
searchEcssCoDelNotifyHeaderForCK,
|
|
searchEcssCoDelNotifyDetail,
|
|
confirmEcssDel,
|
|
updateEcssDel,
|
|
cancerConfirmEcssDel,
|
|
searchCoDelPalletDataNew,
|
|
|
|
searchEcssCoDelPalletHeaderData,
|
|
searchEcssCoDelPalletDetailData,
|
|
savePalletHeader,
|
|
deletePalletHeader,
|
|
savePalletDetail,
|
|
deletePalletDetail,
|
|
saveOneClickPacking,
|
|
savePalletMaintenance,
|
|
getNotifyPartDetail,
|
|
searchPalletList,
|
|
updateExportFlag,
|
|
updateCodelPalletHeaderPalletQty
|
|
}from "@/api/ecss/ecss.js"
|
|
import {getBuList}from '@/api/factory/site.js'
|
|
import excel from "@/utils/excel-util.js";
|
|
import excelOpts from '@/utils/export-options.js'
|
|
import ExportUtil from "@/utils/export";
|
|
import { getTableUserListLanguage} from "@/api/table.js"
|
|
import {getTableDefaultListLanguage} from "../../../api/table";
|
|
export default {
|
|
name: "null",
|
|
components:{
|
|
palletUploadExcel,
|
|
Chooselist,
|
|
PackingDetailTab,
|
|
},
|
|
data() {
|
|
return {
|
|
multipleSelection: [],
|
|
palletFlag:false,
|
|
palletList:[],
|
|
palletData:{},
|
|
partFlag:false,
|
|
partData:{},
|
|
partList:[],
|
|
|
|
pageIndex: 1,
|
|
pageSize: 100,
|
|
totalPage: 0,
|
|
// 选中行持久化相关
|
|
selectedRowKey: null, // 当前选中行的唯一标识
|
|
height: 200,
|
|
buList:[],
|
|
dataList:[],
|
|
dataList2:[],
|
|
dataList3:[],
|
|
dataList4:[],
|
|
dataList5:[],
|
|
dataList8:[],
|
|
notifyDetailMap: new Map(),
|
|
boxDetailData:{
|
|
site:'',
|
|
buNo:'',
|
|
delNo:'',
|
|
seqNo:'',
|
|
},
|
|
dataListLoading: false,
|
|
boxDetailModelFlag: false,
|
|
searchData: {
|
|
page: 1,
|
|
limit: 100,
|
|
buNo:'',
|
|
delNo:'',
|
|
cmcInvoice:'',
|
|
notifyStatus:'',
|
|
startDate:'',
|
|
endDate:'',
|
|
exportFlag:'',
|
|
username:this.$store.state.user.name,
|
|
},
|
|
oneClickPackingModelFlag:false,
|
|
oneClickPackingModelData:{
|
|
boxRemnant: false,
|
|
},
|
|
|
|
// 栈板维护相关
|
|
palletMaintenanceModelFlag: false,
|
|
palletMaintenanceRecords: [],
|
|
palletModelFlag:false,
|
|
palletEditFlag:false,
|
|
palletModelData:{
|
|
addFlag:0,
|
|
site:'',
|
|
buNo:'',
|
|
delNo:'',
|
|
seqNo:'',
|
|
palletNo:'',
|
|
palletQty:'',
|
|
length:'',
|
|
width:'',
|
|
height:'',
|
|
boxQty:'',
|
|
grossWeight:'',
|
|
netWeight:'',
|
|
palletRemark:'',
|
|
|
|
},
|
|
boxModelFlag:false,
|
|
boxModelData:{
|
|
addFlag:0,
|
|
site:'',
|
|
buNo:'',
|
|
delNo:'',
|
|
seqNo:'',
|
|
itemNo:'',
|
|
partNo:'',
|
|
pn:'',
|
|
qty:'',
|
|
poNo:'',
|
|
boxQty:'',
|
|
rolls:'',
|
|
|
|
},
|
|
buttons:{
|
|
search:'查询',
|
|
},
|
|
confirmModelFlag:false,
|
|
updateModelFlag:false,
|
|
confirmModel:{
|
|
site:'',
|
|
buDesc:'',
|
|
cmcInvoice:'',
|
|
delNo:'',
|
|
readyDate:'',
|
|
shippingMode:'',
|
|
destination:'',
|
|
notifyDate:'',
|
|
remark:'',
|
|
},
|
|
|
|
activeName:'detail',
|
|
columnList1: [
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1BuDesc',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "buDesc",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "BU",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 60
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1CmcInvoice',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "cmcInvoice",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "CMC Invoice",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1DelNo',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "delNo",
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: "发货通知单号",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 110
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1ReadyDate',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "readyDate",
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: "ReadyDate",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1CustomerName',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "customerName",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "客户名称",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 220
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1ShippingMode',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "shippingMode",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "ShippingMode",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1Destination',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "destination",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Destination",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1NotifyStatus',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "notifyStatus",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "通知单状态",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801001,
|
|
serialNumber: '801001Table1NotifyStatus',
|
|
tableId: "801001Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "modifyLabel",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "改单",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 50
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1ExportFlag',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "exportFlag",
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: "是否导出",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1NotifyDate',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "notifyDate",
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: "发货日期",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 120
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1ErpDelNo',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "walMartOrderFlag",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "沃尔玛订单",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1CreateBy',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "createBy",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "创建人",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1CreateDate',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "createDate",
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: "创建时间",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 130
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1UpdateBy',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "updateBy",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "修改人",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1UpdateDate',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "updateDate",
|
|
headerAlign: "center",
|
|
align: "center",
|
|
columnLabel: "修改时间",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 130
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table1Remark',
|
|
tableId: "801002Table1",
|
|
tableName: "关务系统发货通知单",
|
|
columnProp: "remark",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Remark",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 300
|
|
},
|
|
],
|
|
columnList2: [
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2ItemNo',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "itemNo",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "行号",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2PartNo',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "pn",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "PN",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2PartDescription',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "partDescription",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Description",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 300
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Qty',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "qty",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "Qty (pcs)",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2SalesOrder',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "salesOrder",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "销售订单号",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2CustomerPO',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "customerPO",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "客户采购单号",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Version',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "version",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Version",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Status',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "status",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Status",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Family',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "family",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Family",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Lt',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "lt",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "LT (wks)",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2CmcComment',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "cmcComment",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "CMC Comment",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2SaleType',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "saleType",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "内外销方式",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2AwbBl',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "awbBl",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "AWB/ BL#",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2ShippingNumber',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "shippingNumber",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "ShippingNumber",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2ForwarderInfo',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "forwarderInfo",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Forwarder Info",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Currency',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "currency",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Currency",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Tp',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "tp",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "TP",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2TtlAmount',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "ttlAmount",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "TTL Amount",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801001,
|
|
serialNumber: '801001Table2Remark',
|
|
tableId: "801001Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "vat",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "VAT",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2SumPrice',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "sumPrice",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "价税合计",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2So',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "so",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "SO",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Upc',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "upc",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "UPC",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table2Remark',
|
|
tableId: "801002Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "remark",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "Remark",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 300
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801001,
|
|
serialNumber: '801001Table2Remark',
|
|
tableId: "801001Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "roll",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "Roll",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801001,
|
|
serialNumber: '801001Table2Remark',
|
|
tableId: "801001Table2",
|
|
tableName: "关务系统发货通知单明细",
|
|
columnProp: "carton",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "Carton",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
],
|
|
columnList3:[
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table3ItemNo',
|
|
tableId: "801002Table3",
|
|
tableName: "装箱明细",
|
|
columnProp: "itemNo",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "序号",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 40
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table3PoNo',
|
|
tableId: "801002Table3",
|
|
tableName: "装箱明细",
|
|
columnProp: "poNo",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "PO",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table3PN',
|
|
tableId: "801002Table3",
|
|
tableName: "装箱明细",
|
|
columnProp: "pn",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "PN",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 100
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table3Qty',
|
|
tableId: "801002Table3",
|
|
tableName: "装箱明细",
|
|
columnProp: "qty",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "数量",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 50
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table3Rolls',
|
|
tableId: "801002Table3",
|
|
tableName: "装箱明细",
|
|
columnProp: "rolls",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "Rolls",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 50
|
|
},
|
|
],
|
|
|
|
columnList4:[
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table4SeqNo',
|
|
tableId: "801002Table4",
|
|
tableName: "装箱栈板主表",
|
|
columnProp: "seqNo",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "序号",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 40
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table4PalletRemark',
|
|
tableId: "801002Table4",
|
|
tableName: "装箱栈板主表",
|
|
columnProp: "palletRemark",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "栈板码",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 60
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table4PalletQty',
|
|
tableId: "801002Table4",
|
|
tableName: "装箱栈板主表",
|
|
columnProp: "palletQty",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "数量",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 50
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table4Length',
|
|
tableId: "801002Table4",
|
|
tableName: "装箱栈板主表",
|
|
columnProp: "length",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "长(M)",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 50
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table4Width',
|
|
tableId: "801002Table4",
|
|
tableName: "装箱栈板主表",
|
|
columnProp: "width",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "宽(M)",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 50
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table4Height',
|
|
tableId: "801002Table4",
|
|
tableName: "装箱栈板主表",
|
|
columnProp: "height",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "高(M)",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 50
|
|
},
|
|
],
|
|
columnList5:[
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table5PartNo',
|
|
tableId: "801002Table5",
|
|
tableName: "栈板装箱明细",
|
|
columnProp: "pn",
|
|
headerAlign: "center",
|
|
align: "left",
|
|
columnLabel: "物料编码",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 70
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table5Qty',
|
|
tableId: "801002Table5",
|
|
tableName: "栈板装箱明细",
|
|
columnProp: "qty",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "数量",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 80
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table5BoxQty',
|
|
tableId: "801002Table5",
|
|
tableName: "栈板装箱明细",
|
|
columnProp: "boxQty",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "箱数",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 70
|
|
},
|
|
{
|
|
userId: this.$store.state.user.name,
|
|
functionId: 801002,
|
|
serialNumber: '801002Table5Rolls',
|
|
tableId: "801002Table5",
|
|
tableName: "栈板装箱明细",
|
|
columnProp: "rolls",
|
|
headerAlign: "center",
|
|
align: "right",
|
|
columnLabel: "Rolls",
|
|
columnHidden: false,
|
|
columnImage: false,
|
|
columnSortable: false,
|
|
sortLv: 0,
|
|
status: true,
|
|
fixed: '',
|
|
columnWidth: 70
|
|
},
|
|
],
|
|
currentRow:{},
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$nextTick(() => {
|
|
this.height = (window.innerHeight - 260)/2;
|
|
})
|
|
},
|
|
|
|
methods: {
|
|
// 动态列开始 获取 用户保存的 格式列
|
|
async getTableUserColumn (tableId, columnId) {
|
|
let queryTableUser = {
|
|
userId: this.$store.state.user.name,
|
|
functionId: this.$route.meta.menuId,
|
|
tableId: tableId,
|
|
status: true,
|
|
languageCode: this.$i18n.locale
|
|
}
|
|
await getTableUserListLanguage(queryTableUser).then(({data}) => {
|
|
if (data.rows.length > 0) {
|
|
//this.columnList1 = []
|
|
switch (columnId) {
|
|
case 1:
|
|
this.columnList1 = data.rows
|
|
break;
|
|
// case 2:
|
|
// this.columnDetailList = data.rows
|
|
// break;
|
|
// case 3:
|
|
// this.columnList2 = data.rows
|
|
// break;
|
|
// case 4:
|
|
// this.columnList3 = data.rows
|
|
// break;
|
|
}
|
|
} else {
|
|
this.getColumnList(tableId, columnId)
|
|
}
|
|
})
|
|
},
|
|
// 获取 tableDefault 列
|
|
async getColumnList (tableId, columnId) {
|
|
let queryTable = {
|
|
functionId: this.$route.meta.menuId,
|
|
tableId: tableId,
|
|
languageCode: this.$i18n.locale
|
|
}
|
|
await getTableDefaultListLanguage(queryTable).then(({data}) => {
|
|
if (!data.rows.length == 0) {
|
|
switch (columnId) {
|
|
case 1:
|
|
this.columnList1 = data.rows
|
|
break;
|
|
// case 2:
|
|
// this.columnDetailList = data.rows
|
|
// break;
|
|
// case 3:
|
|
// this.columnList2 = data.rows
|
|
// break;
|
|
// case 4:
|
|
// this.columnList3 = data.rows
|
|
// break;
|
|
}
|
|
} else {
|
|
// this.showDefault = true.
|
|
}
|
|
})
|
|
},
|
|
isPnDataIncomplete(row) {
|
|
const hasBoxrolls = row.boxrolls !== null && row.boxrolls !== undefined && row.boxrolls !== '';
|
|
const hasRollqty = row.rollqty !== null && row.rollqty !== undefined && row.rollqty !== '';
|
|
const hasBoxweight = row.boxweight !== null && row.boxweight !== undefined && row.boxweight !== '';
|
|
const packageNo = row.packageNo !== null && row.packageNo !== undefined && row.packageNo !== '';
|
|
return !hasBoxrolls || !hasRollqty || !hasBoxweight || !packageNo;
|
|
},
|
|
|
|
// 获取PN数据缺失的具体字段提示信息
|
|
getPnIncompleteTooltip(row) {
|
|
const missingFields = [];
|
|
|
|
// 检查每个字段是否缺失
|
|
if (!(row.rollqty !== null && row.rollqty !== undefined && row.rollqty !== '')) {
|
|
missingFields.push('每卷数量');
|
|
}
|
|
if (!(row.boxrolls !== null && row.boxrolls !== undefined && row.boxrolls !== '')) {
|
|
missingFields.push('每箱卷数');
|
|
}
|
|
if (!(row.boxweight !== null && row.boxweight !== undefined && row.boxweight !== '')) {
|
|
missingFields.push('箱重量');
|
|
}
|
|
if (!(row.packageNo !== null && row.packageNo !== undefined && row.packageNo !== '')) {
|
|
missingFields.push('箱类型');
|
|
}
|
|
|
|
// 根据缺失字段生成提示信息
|
|
if (missingFields.length > 0) {
|
|
return `基本信息(${missingFields.join('、')})未维护,点击跳转到维护页面`;
|
|
}
|
|
return '';
|
|
},
|
|
|
|
// 跳转到PN维护页面
|
|
navigateToPartHsCode(pn) {
|
|
if (!pn) {
|
|
this.$message.warning('PN不能为空');
|
|
return;
|
|
}
|
|
this.$router.push({
|
|
path: '/ecss-partHsCode',
|
|
query: {
|
|
sku: pn
|
|
}
|
|
});
|
|
},
|
|
|
|
openPartDialog () {
|
|
this.searchPartList();
|
|
this.partFlag = true
|
|
},
|
|
closePartDialog () {
|
|
this.partList = []
|
|
this.partFlag = false
|
|
},
|
|
searchPartList () {
|
|
this.partData.site = this.currentRow.site
|
|
this.partData.delNo = this.currentRow.delNo
|
|
getNotifyPartDetail(this.partData).then(({data}) => {
|
|
if (data && data.code === 0){
|
|
this.partList = data.rows;
|
|
}
|
|
})
|
|
},
|
|
partRowDblclick (row) {
|
|
this.boxModelData.partNo = row.partNo
|
|
this.boxModelData.pn = row.pn
|
|
this.partFlag = false
|
|
},
|
|
// 获取基础数据列表S
|
|
getBaseList(val, type) {
|
|
this.tagNo = val
|
|
this.$nextTick(() => {
|
|
let strVal = ''
|
|
if (val === 507) {
|
|
strVal = this.boxModelData.partNo
|
|
}
|
|
this.$refs.baseList.init(val, strVal)
|
|
})
|
|
},
|
|
|
|
/* 列表方法的回调 */
|
|
getBaseData(val) {
|
|
if (this.tagNo === 507) {
|
|
this.boxModelData.partNo = val.part_no
|
|
}
|
|
},
|
|
// 每页数
|
|
sizeChangeHandle (val) {
|
|
this.pageSize = val
|
|
this.pageIndex = 1
|
|
this.searchTable()
|
|
},
|
|
// 当前页
|
|
currentChangeHandle (val) {
|
|
this.pageIndex = val
|
|
this.searchTable()
|
|
},
|
|
searchTable(){
|
|
this.searchData.limit = this.pageSize
|
|
this.searchData.page = this.pageIndex
|
|
searchEcssCoDelNotifyHeaderForCK(this.searchData).then(({data}) => {
|
|
//区分请求成功和失败的状况
|
|
if (data && data.code == 0) {
|
|
this.dataList = data.page.list
|
|
this.pageIndex = data.page.currPage
|
|
this.pageSize = data.page.pageSize
|
|
this.totalPage = data.page.totalCount
|
|
if(this.dataList.length>0){
|
|
this.dataList.forEach(o => {
|
|
if (o.notifyStatus==='仓库已确认'&&!o.notifyDate) {
|
|
o.notifyDate='发货日期不确定'
|
|
}
|
|
o.modifyLabel = !!o.modifyFlag?'是':'';
|
|
});
|
|
|
|
// 使用 $nextTick 确保 DOM 渲染完成后再设置选中行
|
|
this.$nextTick(() => {
|
|
try {
|
|
// 检查表格引用是否存在
|
|
if (!this.$refs.mainTable) {
|
|
console.warn('[确认页面行选择持久化] 表格引用不存在,跳过设置选中行');
|
|
return;
|
|
}
|
|
|
|
// 尝试恢复之前选中的行
|
|
const restoredRow = this.restoreSelectedRow();
|
|
if (restoredRow) {
|
|
this.$refs.mainTable.setCurrentRow(restoredRow);
|
|
this.changeData(restoredRow);
|
|
} else {
|
|
// 如果没有之前选中的行,默认选中第一行
|
|
this.$refs.mainTable.setCurrentRow(this.dataList[0]);
|
|
this.changeData(this.dataList[0]);
|
|
}
|
|
} catch (error) {
|
|
console.error('[确认页面行选择持久化] 设置选中行失败:', error);
|
|
// 降级处理:只调用 changeData,不设置表格选中状态
|
|
const restoredRow = this.restoreSelectedRow();
|
|
this.changeData(restoredRow || this.dataList[0]);
|
|
}
|
|
});
|
|
}else {
|
|
this.changeData(null)
|
|
}
|
|
} else {
|
|
this.dataList = [];
|
|
}
|
|
});
|
|
},
|
|
tableRowClassName({row}) {
|
|
if (row.notifyStatus==='订单取消') {
|
|
return 'warning-row';
|
|
}
|
|
},
|
|
cellStyle({row, column }) {
|
|
if (column.property === 'notifyDate' && row.notifyDate==='发货日期不确定') { // 根据列属性判断
|
|
return { color: '#ff5d03' };
|
|
}
|
|
if (column.property === 'modifyLabel' && row.modifyLabel==='是') { // 根据列属性判断
|
|
return { color: '#ff5d03' };
|
|
}
|
|
return {};
|
|
},
|
|
cellStyleDetail({row, column }) {
|
|
if ((column.property === 'pn' || column.property === 'qty') && row.modifyFlag===true) { // 根据列属性判断
|
|
return { color: '#ff5d03' };
|
|
}
|
|
|
|
// 检查 pn 列,当 boxrolls、rollqty、boxweight 其中任意一个没有值时,将 pn 颜色改成橙色
|
|
if (column.property === 'pn') {
|
|
const hasBoxrolls = row.boxrolls !== null && row.boxrolls !== undefined && row.boxrolls !== '';
|
|
const hasRollqty = row.rollqty !== null && row.rollqty !== undefined && row.rollqty !== '';
|
|
const hasBoxweight = row.boxweight !== null && row.boxweight !== undefined && row.boxweight !== '';
|
|
const packageNo = row.packageNo !== null && row.packageNo !== undefined && row.packageNo !== '';
|
|
if (!hasBoxrolls || !hasRollqty || !hasBoxweight || !packageNo) {
|
|
return { color: '#ff8c00' }; // 橙色
|
|
}
|
|
}
|
|
|
|
return {};
|
|
},
|
|
changeData(row){
|
|
this.currentRow = JSON.parse(JSON.stringify(row));
|
|
if (this.currentRow.notifyDate==='发货日期不确定') {
|
|
this.currentRow.notifyDate=''
|
|
}
|
|
this.headerData=row;
|
|
|
|
// 保存选中行的唯一标识到本地存储
|
|
if (row && row.delNo) {
|
|
this.selectedRowKey = row.delNo;
|
|
this.saveSelectedRowToStorage();
|
|
}
|
|
|
|
this.refreshCurrentTabTable ();
|
|
},
|
|
refreshCurrentTabTable(){
|
|
if(this.currentRow===''||this.currentRow===null){
|
|
this.currentRow={site:'',delNo:'',notifyStatus:''}
|
|
}
|
|
if(this.activeName==='detail'){
|
|
searchEcssCoDelNotifyDetail(this.currentRow).then(({data}) => {
|
|
//区分请求成功和失败的状况
|
|
if (data && data.code == 0) {
|
|
this.dataList2 = data.rows
|
|
} else {
|
|
this.dataList2 = [];
|
|
}
|
|
});
|
|
}
|
|
if(this.activeName==='pallet'){
|
|
// 刷新装箱明细组件
|
|
if (this.$refs.packingDetailTab) {
|
|
this.$refs.packingDetailTab.refresh();
|
|
}
|
|
}
|
|
if(this.activeName==='box'){
|
|
searchEcssCoDelPalletHeaderData(this.currentRow).then(({data}) => {
|
|
//区分请求成功和失败的状况
|
|
if (data && data.code == 0) {
|
|
this.dataList4 = data.rows
|
|
|
|
} else {
|
|
this.dataList4 = [];
|
|
}
|
|
});
|
|
}
|
|
},
|
|
tabClick (tab, event) {
|
|
// 刷新列表数据
|
|
this.refreshCurrentTabTable()
|
|
},
|
|
|
|
confirmDo(){
|
|
confirmEcssDel(this.confirmModel).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
// 保存当前选中行的标识,以便刷新后恢复
|
|
const currentSelectedKey = this.confirmModel ? this.confirmModel.delNo : null;
|
|
if (currentSelectedKey) {
|
|
this.selectedRowKey = currentSelectedKey;
|
|
this.saveSelectedRowToStorage();
|
|
}
|
|
this.searchTable()
|
|
this.confirmModelFlag=false
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
cancerConfirm(row){
|
|
let indata=JSON.parse(JSON.stringify(row));
|
|
if (row.notifyDate==='发货日期不确定') {
|
|
indata.notifyDate=''
|
|
}
|
|
this.$confirm('取消确认这条发货通知单?', '提示').then(() => {
|
|
cancerConfirmEcssDel(indata).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
// 保存当前选中行的标识,以便刷新后恢复
|
|
const currentSelectedKey = row ? row.delNo : null;
|
|
if (currentSelectedKey) {
|
|
this.selectedRowKey = currentSelectedKey;
|
|
this.saveSelectedRowToStorage();
|
|
}
|
|
this.searchTable()
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
})
|
|
},
|
|
getBu () {
|
|
let tempData = {
|
|
username: this.$store.state.user.name,
|
|
}
|
|
getBuList(tempData).then(({data}) => {
|
|
if (data.code === 0) {
|
|
this.buList = data.row2
|
|
if (this.buList.length===1) {
|
|
this.searchData.buNo = this.buList[0].buNo;
|
|
}
|
|
}
|
|
})
|
|
},
|
|
confirmModelOpen(row){
|
|
this.confirmModel=JSON.parse(JSON.stringify(row));
|
|
this.confirmModelFlag=true
|
|
},
|
|
updateModelOpen(row){
|
|
this.confirmModel=JSON.parse(JSON.stringify(row));
|
|
if (this.confirmModel.notifyDate==='发货日期不确定') {
|
|
this.confirmModel.notifyDate=''
|
|
}
|
|
this.updateModelFlag=true
|
|
},
|
|
updateDo(){
|
|
if (!this.confirmModel.readyDate) {
|
|
this.$alert('请选择ReadyDate!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
// 添加更新人信息
|
|
this.confirmModel.updateBy = this.$store.state.user.name
|
|
updateEcssDel(this.confirmModel).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
// 保存当前选中行的标识,以便刷新后恢复
|
|
const currentSelectedKey = this.confirmModel ? this.confirmModel.delNo : null;
|
|
if (currentSelectedKey) {
|
|
this.selectedRowKey = currentSelectedKey;
|
|
this.saveSelectedRowToStorage();
|
|
}
|
|
this.searchTable()
|
|
this.updateModelFlag=false
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
upLoadPallet(){
|
|
if(this.currentRow.site===''||this.currentRow.site==null){
|
|
this.$alert('请先选择发货通知单!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
let inData={
|
|
site:this.currentRow.site,
|
|
buNo:this.currentRow.buNo,
|
|
delNo:this.currentRow.delNo,
|
|
cmcInvoice:this.currentRow.cmcInvoice,
|
|
shippingMode: this.currentRow.shippingMode,
|
|
destination : this.currentRow.destination,
|
|
walMartOrderFlag:this.currentRow.walMartOrderFlag
|
|
}
|
|
this.$nextTick(() => {
|
|
this.$refs.palletUploadExcel.init(inData)
|
|
})
|
|
},
|
|
async exportExcel() {
|
|
if(this.currentRow.site===''||this.currentRow.site==null){
|
|
this.$alert('请先选择发货通知单!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
|
|
let exportParam = {
|
|
site: this.currentRow.site,
|
|
buNo: this.currentRow.buNo,
|
|
delNo: this.currentRow.delNo,
|
|
cmcInvoice: this.currentRow.cmcInvoice,
|
|
shippingMode: this.currentRow.shippingMode,
|
|
destination : this.currentRow.destination,
|
|
readyDate: this.currentRow.readyDate, // 增加ReadyDate列
|
|
remark: this.currentRow.remark, // 增加备注列
|
|
createBy: this.$store.state.user.name,
|
|
}
|
|
|
|
try {
|
|
// 使用后台Excel模版导出
|
|
ExportUtil.export(
|
|
"/ecss/coDel/exportPackingTemplate",
|
|
exportParam,
|
|
this.currentRow.cmcInvoice + "装箱数据.xlsx"
|
|
);
|
|
|
|
// 导出成功后更新export_flag字段
|
|
let updateData = {
|
|
site: this.currentRow.site,
|
|
buNo: this.currentRow.buNo,
|
|
delNo: this.currentRow.delNo,
|
|
exportFlag: 'Y',
|
|
updateBy: this.$store.state.user.name
|
|
}
|
|
|
|
updateExportFlag(updateData).then(({data}) => {
|
|
if (data.code === 0) {
|
|
// 刷新当前行的导出状态
|
|
this.currentRow.exportFlag = 'Y';
|
|
// 刷新表格数据
|
|
this.searchTable();
|
|
this.$message({
|
|
message: '导出成功',
|
|
type: 'success',
|
|
duration: 1500
|
|
});
|
|
} else {
|
|
this.$message.warning('导出成功,但更新导出状态失败:' + data.msg);
|
|
}
|
|
}).catch(error => {
|
|
this.$message.warning('导出成功,但更新导出状态失败');
|
|
console.error('更新导出状态失败:', error);
|
|
});
|
|
|
|
} catch (error) {
|
|
this.$message.error('导出失败');
|
|
console.error('导出失败:', error);
|
|
}
|
|
},
|
|
searchPalletTable(){
|
|
this.refreshCurrentTabTable();
|
|
},
|
|
boxDetailModel(row){
|
|
this.boxDetailData=row
|
|
searchEcssCoDelPalletDetailData(row).then(({data}) => {
|
|
if (data.code === 0) {
|
|
this.dataList5 = data.rows
|
|
}
|
|
})
|
|
this.boxDetailModelFlag=true
|
|
},
|
|
updatePalletModel(row){
|
|
this.palletModelData=JSON.parse(JSON.stringify(row))
|
|
this.palletModelData.palletRemark=row.palletRemark
|
|
this.palletModelData.addFlag=1
|
|
this.palletEditFlag=true
|
|
},
|
|
newPalletModel(){
|
|
if(this.currentRow.site===''||this.currentRow.site==null){
|
|
this.$alert('请先选择发货通知单!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
this.palletModelData={
|
|
addFlag:0,
|
|
site:this.currentRow.site,
|
|
buNo:this.currentRow.buNo,
|
|
delNo:this.currentRow.delNo,
|
|
grossWeight:'',
|
|
netWeight:'',
|
|
boxQty:'',
|
|
}
|
|
searchEcssCoDelNotifyDetail(this.currentRow).then(({data}) => {
|
|
if (data && data.code == 0) {
|
|
this.dataList8 = data.rows
|
|
} else {
|
|
this.dataList8 = [];
|
|
}
|
|
});
|
|
this.palletModelFlag=true
|
|
},
|
|
fillUseQty(row) {
|
|
row.useQty = row.surplusQty || 0;
|
|
},
|
|
savePalletHeader(type) {
|
|
// 过滤出 useQty > 0 的行
|
|
const selectedRows = this.dataList8.filter(item => item.useQty && item.useQty > 0);
|
|
|
|
if (this.palletModelData.addFlag === 0 && selectedRows.length === 0) {
|
|
this.$alert('请至少输入一行装箱数量!', '错误', {
|
|
confirmButtonText: '确定'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.palletModelData.grossWeight<=0||this.palletModelData.grossWeight==null) {
|
|
this.$alert('请输入毛重!', '错误', {
|
|
confirmButtonText: '确定'
|
|
});
|
|
return false;
|
|
|
|
}
|
|
if (this.palletModelData.netWeight<=0||this.palletModelData.netWeight==null) {
|
|
this.$alert('请输入净重!', '错误', {
|
|
confirmButtonText: '确定'
|
|
});
|
|
return false;
|
|
}
|
|
if (this.palletModelData.boxQty<=0||this.palletModelData.boxQty==null) {
|
|
this.$alert('请输入箱数!', '错误', {
|
|
confirmButtonText: '确定'
|
|
});
|
|
return false;
|
|
}
|
|
// 校验:装箱数量不能大于可装箱数量 (item.qty)
|
|
const invalidRow = selectedRows.find(item => item.useQty > item.surplusQty);
|
|
if (invalidRow) {
|
|
this.$alert(`PN ${invalidRow.pn} 的装箱数量不能大于可装箱数量(${invalidRow.surplusQty})!`, '错误', {
|
|
confirmButtonText: '确定'
|
|
});
|
|
return false;
|
|
}
|
|
|
|
this.palletModelData.walMartOrderFlag = this.currentRow.walMartOrderFlag;
|
|
this.palletModelData.notifyDetailList = selectedRows;
|
|
|
|
savePalletHeader(this.palletModelData).then(({ data }) => {
|
|
if (data && data.code === 0) {
|
|
if (type===0) {
|
|
this.palletModelData={
|
|
addFlag:0,
|
|
site:this.currentRow.site,
|
|
buNo:this.currentRow.buNo,
|
|
delNo:this.currentRow.delNo,
|
|
grossWeight:'',
|
|
netWeight:'',
|
|
boxQty:'',
|
|
}
|
|
searchEcssCoDelNotifyDetail(this.currentRow).then(({data}) => {
|
|
if (data && data.code == 0) {
|
|
this.dataList8 = data.rows
|
|
} else {
|
|
this.dataList8 = [];
|
|
}
|
|
});
|
|
} else {
|
|
this.refreshCurrentTabTable()
|
|
this.palletModelFlag=false;
|
|
}
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500
|
|
});
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
});
|
|
}
|
|
});
|
|
},
|
|
|
|
updateCodelPalletHeaderPalletQty(row){
|
|
updateCodelPalletHeaderPalletQty(this.palletModelData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.palletEditFlag = false
|
|
this.refreshCurrentTabTable()
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
|
|
deletePallet(row){
|
|
this.$confirm('确认删除此明细?', '提示').then(() => {
|
|
deletePalletHeader(row).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.refreshCurrentTabTable()
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
})
|
|
},
|
|
|
|
updateBoxModel(row,type){
|
|
this.boxModelData=JSON.parse(JSON.stringify(row))
|
|
this.boxModelData.addFlag=1
|
|
this.boxModelData.type=type
|
|
this.boxModelFlag=true
|
|
},
|
|
newBoxModel(){
|
|
this.boxModelData={
|
|
addFlag:0,
|
|
site:this.boxDetailData.site,
|
|
buNo:this.boxDetailData.buNo,
|
|
delNo:this.boxDetailData.delNo,
|
|
seqNo:this.boxDetailData.seqNo,
|
|
itemNo:'',
|
|
partNo:'',
|
|
pn:'',
|
|
qty:'',
|
|
poNo:'',
|
|
boxQty:'',
|
|
rolls:'',
|
|
type:0
|
|
}
|
|
this.boxModelFlag=true
|
|
},
|
|
saveBoxHeader(){
|
|
if(this.boxModelData.partNo===''||this.boxModelData.partNo==null){
|
|
this.$alert('请输入物料!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
if(this.boxModelData.qty<=0||this.boxModelData.qty==null){
|
|
this.$alert('请输入数量!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
|
|
savePalletDetail(this.boxModelData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
searchEcssCoDelPalletDetailData(this.boxDetailData).then(({data}) => {
|
|
if (data.code === 0) {
|
|
this.dataList5 = data.rows
|
|
}
|
|
})
|
|
searchCoDelPalletDataNew(this.currentRow).then(({data}) => {
|
|
if (data && data.code == 0) {
|
|
this.dataList3 = data.rows
|
|
} else {
|
|
this.dataList3 = [];
|
|
}
|
|
});
|
|
this.boxModelFlag=false;
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
|
|
oneClickPacking(){
|
|
if(this.currentRow.site===''||this.currentRow.site==null){
|
|
this.$alert('请先选择发货通知单!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
this.oneClickPackingModelData={
|
|
boxRemnant: false,
|
|
}
|
|
this.oneClickPackingModelFlag=true
|
|
},
|
|
saveOneClickPacking(){
|
|
let saveData = {
|
|
site: this.currentRow.site,
|
|
buNo: this.currentRow.buNo,
|
|
delNo: this.currentRow.delNo,
|
|
boxRemnant: this.oneClickPackingModelData.boxRemnant,
|
|
}
|
|
saveOneClickPacking(saveData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.refreshCurrentTabTable()
|
|
this.oneClickPackingModelFlag=false;
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
|
|
openPalletDialog () {
|
|
//请求
|
|
this.searchPalletList();
|
|
},
|
|
closePalletDialog () {
|
|
this.palletList = []
|
|
this.palletFlag = false
|
|
},
|
|
searchPalletList () {
|
|
this.palletData.buNo = this.palletModelData.buNo
|
|
searchPalletList(this.palletData).then(({data}) => {
|
|
if (data && data.code === 0){
|
|
this.palletList = data.rows;
|
|
}
|
|
})
|
|
},
|
|
palletRowDblclick (row) {
|
|
this.palletModelData.pallet = row.palletNo
|
|
this.palletFlag = false
|
|
},
|
|
|
|
// 栈板维护相关方法
|
|
palletMaintenance() {
|
|
if(this.currentRow.site===''||this.currentRow.site==null){
|
|
this.$alert('请先选择发货通知单!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
// 重置栈板记录
|
|
this.palletMaintenanceRecords = []
|
|
// 默认根据buNo获取全部栈板
|
|
this.loadAllPalletsForMaintenance()
|
|
this.palletMaintenanceModelFlag = true
|
|
},
|
|
|
|
// 根据buNo加载全部栈板用于维护
|
|
loadAllPalletsForMaintenance() {
|
|
let searchData = {
|
|
palletType: '', // 不限制栈板类型,获取全部
|
|
buNo: this.currentRow.buNo
|
|
}
|
|
searchPalletList(searchData).then(({data}) => {
|
|
if (data.code === 0) {
|
|
const pallets = data.rows || []
|
|
// 为每个栈板创建一条记录
|
|
this.palletMaintenanceRecords = pallets.map(pallet => ({
|
|
pallet: pallet.palletNo,
|
|
palletType: pallet.palletType,
|
|
palletQty: '', // 默认为空,用户需要输入
|
|
height: '' // 使用栈板的默认高度
|
|
}))
|
|
}
|
|
}).catch(error => {
|
|
console.error('加载栈板列表失败:', error)
|
|
// 如果加载失败,至少添加一行空记录
|
|
this.palletMaintenanceRecords = [{
|
|
pallet: '',
|
|
palletType: '',
|
|
palletQty: '',
|
|
height: ''
|
|
}]
|
|
})
|
|
},
|
|
|
|
savePalletMaintenance() {
|
|
// 过滤出托数大于0的栈板记录
|
|
const validPalletRecords = this.palletMaintenanceRecords.filter(record => {
|
|
return record.palletQty && parseFloat(record.palletQty) > 0
|
|
})
|
|
|
|
if (validPalletRecords.length === 0) {
|
|
this.$alert('请至少输入一条有效的栈板记录!', '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
// 验证有效的栈板记录
|
|
for (let i = 0; i < validPalletRecords.length; i++) {
|
|
const record = validPalletRecords[i]
|
|
if (!record.pallet) {
|
|
this.$alert(`栈板不能为空!`, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
if (!record.height || record.height <= 0) {
|
|
this.$alert(`栈板高度必须大于0!`, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
return false
|
|
}
|
|
}
|
|
|
|
// 这里只新增栈板记录,不做其他事情
|
|
let saveData = {
|
|
site: this.currentRow.site,
|
|
buNo: this.currentRow.buNo,
|
|
delNo: this.currentRow.delNo,
|
|
palletRecords: JSON.stringify(validPalletRecords),
|
|
}
|
|
|
|
// 使用相同的API,但传递maintenanceOnly标识
|
|
savePalletMaintenance(saveData).then(({data}) => {
|
|
if (data && data.code === 0) {
|
|
this.refreshCurrentTabTable()
|
|
this.palletMaintenanceModelFlag = false;
|
|
this.$message({
|
|
message: '栈板记录新增成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {}
|
|
})
|
|
} else {
|
|
this.$alert(data.msg, '错误', {
|
|
confirmButtonText: '确定'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
getSummaries(param) {
|
|
const { columns } = param;
|
|
const sums = [];
|
|
columns.forEach((column, index) => {
|
|
if (index === 0) {
|
|
sums[index] = '合计';
|
|
return;
|
|
}
|
|
let sumDataList = this.dataList4.filter(item => item.palletQty>0);
|
|
const values = sumDataList.map(item => Number(item[column.property]));
|
|
if (!values.every(value => isNaN(value))) {
|
|
switch(column.property) {
|
|
case 'palletQty':
|
|
sums[index] = `${values.reduce((a, b) => a + b, 0)}`;
|
|
break;
|
|
default:
|
|
sums[index] = '';
|
|
}
|
|
} else {
|
|
sums[index] = '';
|
|
}
|
|
});
|
|
this.$nextTick(() => this.$refs.detailTable.doLayout());// 强制刷新布局, 否则会被表格覆盖
|
|
return sums;
|
|
},
|
|
getDetailSummaries(param) {
|
|
const { columns } = param;
|
|
const sums = [];
|
|
columns.forEach((column, index) => {
|
|
if (index === 0) {
|
|
sums[index] = '合计';
|
|
return;
|
|
}
|
|
let sumDataList = this.dataList2.filter(item => item.qty>0);
|
|
const values = sumDataList.map(item => Number(item[column.property]));
|
|
if (!values.every(value => isNaN(value))) {
|
|
switch(column.property) {
|
|
case 'qty':
|
|
sums[index] = `${values.reduce((a, b) => a + b, 0)}`;
|
|
break;
|
|
case 'ttlAmount':
|
|
sums[index] = `${values.reduce((a, b) => a + b, 0).toFixed(2)}`;
|
|
break;
|
|
case 'sumPrice':
|
|
sums[index] = `${values.reduce((a, b) => a + b, 0).toFixed(2)}`;
|
|
break;
|
|
default:
|
|
sums[index] = '';
|
|
}
|
|
} else {
|
|
sums[index] = '';
|
|
}
|
|
});
|
|
this.$nextTick(() => this.$refs.cloDetailTable.doLayout());// 强制刷新布局, 否则会被表格覆盖
|
|
return sums;
|
|
},
|
|
/**
|
|
* 保存选中行到本地存储
|
|
* 使用页面路径和用户名作为存储键的一部分,确保不同页面和用户的选择互不影响
|
|
*/
|
|
saveSelectedRowToStorage() {
|
|
try {
|
|
const storageKey = `codelnotifyConfirm_selected_row_${this.$store.state.user.name}`;
|
|
localStorage.setItem(storageKey, this.selectedRowKey);
|
|
console.log(`[确认页面行选择持久化] 已保存选中行: ${this.selectedRowKey}`);
|
|
} catch (error) {
|
|
console.warn('保存选中行状态失败:', error);
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 从本地存储恢复选中行
|
|
* @returns {Object|null} 返回匹配的行数据,如果没有找到则返回null
|
|
*/
|
|
restoreSelectedRow() {
|
|
try {
|
|
const storageKey = `codelnotifyConfirm_selected_row_${this.$store.state.user.name}`;
|
|
const savedRowKey = localStorage.getItem(storageKey);
|
|
|
|
// 检查必要的条件
|
|
if (!savedRowKey) {
|
|
console.log('[确认页面行选择持久化] 没有保存的选中行');
|
|
return null;
|
|
}
|
|
|
|
if (!this.dataList || this.dataList.length === 0) {
|
|
console.log('[确认页面行选择持久化] 数据列表为空,无法恢复选中行');
|
|
return null;
|
|
}
|
|
|
|
// 在当前数据列表中查找匹配的行
|
|
const matchedRow = this.dataList.find(row => row && row.delNo === savedRowKey);
|
|
if (matchedRow) {
|
|
this.selectedRowKey = savedRowKey;
|
|
console.log(`[确认页面行选择持久化] 已恢复选中行: ${savedRowKey}`);
|
|
return matchedRow;
|
|
} else {
|
|
console.log(`[确认页面行选择持久化] 未找到匹配的行: ${savedRowKey},当前数据列表长度: ${this.dataList.length}`);
|
|
}
|
|
|
|
return null;
|
|
} catch (error) {
|
|
console.warn('恢复选中行状态失败:', error);
|
|
return null;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 清除本地存储的选中行状态
|
|
*/
|
|
clearSelectedRowStorage() {
|
|
try {
|
|
const storageKey = `codelnotifyConfirm_selected_row_${this.$store.state.user.name}`;
|
|
localStorage.removeItem(storageKey);
|
|
this.selectedRowKey = null;
|
|
} catch (error) {
|
|
console.warn('清除选中行状态失败:', error);
|
|
}
|
|
},
|
|
|
|
},
|
|
activated() {
|
|
this.searchTable()
|
|
},
|
|
created() {
|
|
this.getBu ()
|
|
// 动态列
|
|
this.getTableUserColumn(this.$route.meta.menuId+'table1',1)
|
|
|
|
// 初始化时从本地存储加载选中行状态
|
|
try {
|
|
const storageKey = `codelnotifyConfirm_selected_row_${this.$store.state.user.name}`;
|
|
const savedRowKey = localStorage.getItem(storageKey);
|
|
if (savedRowKey) {
|
|
this.selectedRowKey = savedRowKey;
|
|
}
|
|
} catch (error) {
|
|
console.warn('初始化选中行状态失败:', error);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.warning-row td{
|
|
color: darkred !important;
|
|
}
|
|
/deep/ .zxClass .cell {
|
|
line-height: 24px;
|
|
font-size: 12px;
|
|
height: 24px;
|
|
}
|
|
|
|
/* 可点击的PN样式 */
|
|
.clickable-pn {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.clickable-pn:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* 对话框标题样式 */
|
|
.dialog-title {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.dialog-title .el-icon-question:hover {
|
|
color: #66b1ff;
|
|
transform: scale(1.1);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* 表格头部提示图标样式 */
|
|
/deep/ .el-table th .el-icon-question:hover {
|
|
color: #409EFF;
|
|
transform: scale(1.1);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
/* 提示框内容样式 */
|
|
/deep/ .el-tooltip__popper {
|
|
max-width: 300px;
|
|
}
|
|
|
|
/deep/ .el-tooltip__popper .el-tooltip__content {
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/deep/ .el-tooltip__popper .el-tooltip__content div {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
/deep/ .el-tooltip__popper .el-tooltip__content div:first-child {
|
|
font-weight: bold;
|
|
margin-bottom: 8px;
|
|
color: #409EFF;
|
|
}
|
|
.pallet-dialog .section {
|
|
margin: 10px 7px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.table-wrapper {
|
|
height: 300px; /* 让表格部分固定高度并滚动 */
|
|
overflow-y: auto;
|
|
}
|
|
|
|
</style>
|