emis-frontend/src/views/emis/emisWaybillAjustApply/WaybillAjustStatList.vue
2024-08-12 07:04:46 +08:00

448 lines
18 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<XdPageContainer class="app-container">
<SearchForm slot="pageHeader" :model="queryParams" ref="queryForm" size="mini" :maxShow="10" label-width="100px" v-show="showSearch" @search="handleQuery" @reset="resetQuery">
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
<el-col :span="4">
<el-form-item label="运单号" prop="billCode" >
<XdTextareaInput
v-model="queryParams.billCode"
:placeholder="$t('多个流水号逗号或换行隔开')"
clearable
:rows="4"
/>
</el-form-item>
</el-col>
<el-col :span="18">
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
<el-col :span="24">
<el-form-item label="登记时间" prop="dateTimeRange" label-position="top" >
<elDateAdvPicker v-model="dateTimeRange" ></elDateAdvPicker>
</el-form-item>
</el-col>
<el-form-item label="登记网点" prop="applySiteCode">
<EmisSiteSimplePicker1 v-model="queryParams.applySiteCode" ></EmisSiteSimplePicker1>
</el-form-item>
<el-form-item label="状态" prop="processStatus">
<el-select clearable v-model="queryParams.params.processStatus" placeholder="请选择">
<el-option label="未确认" :value="1"></el-option>
<el-option label="已确认" :value="2"></el-option>
<el-option label="中心未审核" :value="6"></el-option>
<el-option label="中心已审核" :value="3"></el-option>
<el-option label="网点驳回" :value="4"></el-option>
<el-option label="中心驳回" :value="5"></el-option>
</el-select>
</el-form-item>
<el-form-item label="修改项目" prop="applyType">
<AjustApplyTypePicker v-model="queryParams.applyType"></AjustApplyTypePicker>
</el-form-item>
</el-row>
</el-col>
</el-row>
</SearchForm>
<XdTable v-loading="loading"
border stripe
size="small"
slot="pageContent"
slot-scope="slotProps"
:height="(slotProps.contentHeight)+'px'"
storageName="WaybillAjustStatList_main"
:data="emisWaybillAjustApplyList"
:showSearch.sync="showSearch"
:queryParams="queryParams"
:total="total"
@queryTable="getList"
@selection-change="handleSelectionChange"
@sort-change="handleSortChange"
@row-dblclick="handleView"
>
<div slot="toolbar">
<el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['emis:emisWaybillAjustApply:add']"
>新增申请</el-button>
</el-col> -->
<!--
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['emis:emisWaybillAjustApply:edit']"
>修改</el-button>
</el-col> -->
<!-- <el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['emis:emisWaybillAjustApply:remove']"
>删除</el-button>
</el-col> -->
<!-- <el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['emis:emisWaybillAjustApply:export']"
>导出</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="150" />
<el-table-column :label="$t('登记网点')" align="center" prop="applySiteName" min-width="100" />
<el-table-column :label="$t('登记说明')" align="center" prop="applyMemo" min-width="200" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('登记时间')" align="center" prop="applyDate" min-width="170" />
<el-table-column :label="$t('修改项目')" align="center" prop="applyTypeName" min-width="150" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('登记人')" align="center" prop="applyManName" min-width="100" />
<!-- <el-table-column :label="$t('改前值')" align="center" prop="oldValue" min-width="150" >
<template slot-scope="scope">
<div v-if="scope.row.applyType=='20'" >
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.oldValue"/>
</div>
</template>
</el-table-column>
<el-table-column :label="$t('改后值')" align="center" prop="newValue" min-width="150" >
<template slot-scope="scope">
<div v-if="scope.row.applyType=='20'" >
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.newValue"/>
</div>
</template>
</el-table-column> -->
<el-table-column :label="$t('结算重量')" align="center" prop="waybillDetail.settlementWeight" min-width="80" />
<el-table-column :label="$t('确认网点')" align="center" prop="destConfirmSiteName" min-width="100" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<div >{{ scope.row.destConfirmSiteName }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('状态')" align="center" prop="processStatus" min-width="100" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<div v-if="scope.row.blDestConfirmed==0" >未确认</div>
<div v-if="scope.row.blDestConfirmed==1" >网点确认</div>
<div v-if="scope.row.blDestConfirmed==2" >网点驳回</div>
<div v-if="scope.row.blCenterConfirmed==1" >中心审核通过</div>
<div v-if="scope.row.blCenterConfirmed==2" >中心驳回</div>
</template>
</el-table-column>
<el-table-column :label="$t('确认时间')" align="center" prop="destConfirmDate" min-width="170" >
<template slot-scope="scope">
<div v-if="scope.row.blDestConfirmed==1" >{{ scope.row.destConfirmDate }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('确认人')" align="center" prop="destConfirmManName" min-width="100" >
<template slot-scope="scope">
<div v-if="scope.row.blDestConfirmed==1" >{{ scope.row.destConfirmManName }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('驳回网点')" align="center" prop="destConfirmSiteName" min-width="100" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmSiteName }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('网点驳回时间')" align="center" prop="destConfirmDate" min-width="170" >
<template slot-scope="scope">
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmDate }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('驳回人')" align="center" prop="destConfirmManName" min-width="100" >
<template slot-scope="scope">
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmManName }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('驳回原因')" align="center" prop="destConfirmNote" min-width="100" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmNote }}</div>
</template>
</el-table-column>
<el-table-column :label="$t('中心审核时间')" align="center" prop="centerConfirmDate" min-width="170" />
<el-table-column :label="$t('中心审核人')" align="center" prop="centerConfirmManName" min-width="100" />
<el-table-column :label="$t('中心审核网点')" align="center" prop="centerConfirmSiteName" min-width="120" :show-overflow-tooltip="true" />
<el-table-column :label="$t('寄件时间')" align="center" prop="waybillDetail.sendDate" min-width="170" />
<el-table-column :label="$t('录入网点')" align="center" prop="waybillDetail.registerSiteName" min-width="80" :show-overflow-tooltip="true" />
<el-table-column :label="$t('录入人')" align="center" prop="waybillDetail.registerManName" min-width="80" :show-overflow-tooltip="true" />
<el-table-column :label="$t('目的网点')" align="center" prop="waybillDetail.dispatchUnderlingSiteName" min-width="80" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('件数')" align="center" prop="waybillDetail.parcelQty" min-width="80" />
<el-table-column :label="$t('目的地')" align="center" prop="waybillDetail.destinationName" min-width="80" :show-overflow-tooltip="true"/>
<el-table-column :label="$t('运费')" align="center" prop="waybillDetail.freight" min-width="80" />
<el-table-column :label="$t('付款方式')" align="center" prop="waybillDetail.paymentType" min-width="80" :show-overflow-tooltip="true" >
<template slot-scope="scope">
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.waybillDetail.paymentType"/>
</template>
</el-table-column>
</XdTable>
<el-dialog :title="titleForm" :visible.sync="openForm" width="50%" :destroy-on-close="true" v-dialogDrag append-to-body>
<emisWaybillAjustApplyForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisWaybillAjustApplyForm>
</el-dialog>
<!--
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" v-dialogDrag append-to-body>
<emisWaybillAjustApplyView :id="id" ></EmisWaybillAjustApplyView>
</el-dialog>
-->
</XdPageContainer>
</template>
<script>
import { listEmisWaybillAjustApply, getEmisWaybillAjustApply, delEmisWaybillAjustApply, addEmisWaybillAjustApply, updateEmisWaybillAjustApply } from "@/api/emis/emisWaybillAjustApply";
// import emisWaybillAjustApplyView from '@/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyView';
import emisWaybillAjustApplyForm from '@/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyForm';
import elDateAdvPicker from '@/components/DatePickerAdv/elDateAdvPicker';
import EmisSiteSimplePicker1 from '@/views/emis/EmisBaseTools/EmisSiteSimplePicker.vue';
import AjustApplyTypePicker from '@/views/emis/EmisBaseTools/AjustApplyTypePicker.vue';
export default {
name: "WaybillAjustStatList",
components: { elDateAdvPicker,emisWaybillAjustApplyForm,EmisSiteSimplePicker1,AjustApplyTypePicker },
dicts: [
],
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 创建时间搜索
dateTimeRange:[],
// 总条数
total: 0,
// 运单调整申请表格数据
emisWaybillAjustApplyList: [],
currentId:null,
openForm: false,
titleForm: "",
// 弹出展示层
id:null,
titleView:"",
openView: false,
// 更新网点时间范围
daterangeApplyDate: [],
// 更新网点时间范围
daterangeDestConfirmDate: [],
// 更新网点时间范围
daterangeCenterConfirmDate: [],
// 更新网点时间范围
daterangeCreateTime: [],
// 更新网点时间范围
daterangeUpdateTime: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 20,
billCode: null,
applyType: null,
applyManCode: null,
applySiteCode: null,
applyFinanceCenterCode: null,
applyDate: null,
blDestConfirmed: null,
destConfirmSiteCode: null,
destConfirmDate: null,
destConfirmNote: null,
destConfirmManCode: null,
destFinanceCenterCode: null,
oldValue: null,
newValue: null,
blValueJson: null,
applyMemo: null,
blCenterConfirmed: null,
centerConfirmSiteCode: null,
centerConfirmManCode: null,
centerConfirmDate: null,
centerConfirmNote: null,
remark: null,
delFlag: null,
params:{
processStatus:null,
}
},
};
},
created() {
this.getList();
},
methods: {
/** 查询运单调整申请列表 */
getList() {
this.loading = true;
this.queryParams=this.addDateRange(this.queryParams, this.dateTimeRange,'applyDate');
listEmisWaybillAjustApply(this.queryParams).then(response => {
this.emisWaybillAjustApplyList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
// 排序 查询字段是表格中字段名字 动态取值排序顺序
handleSortChange(column) {
this.queryParams.orderByColumn = column.prop;
this.queryParams.isAsc = column.order;
this.getList();
},
handleView(row) {
this.currentId= row.id || this.ids;
this.titleForm="查看费用申请";
this.openForm=true;
},
handleShowMoreInput(){
this.moreInputVisible = !this.moreInputVisible;
},
/** 修改按钮操作 */
handleUpdate(row) {
this.currentId= row.id;
this.openForm = true;
this.titleForm = "修改";
},
handleView(row) {
this.currentId= row.id || this.ids;
this.titleForm="查看费用申请";
this.openForm=true;
},
handleFormChanged(){
this.openForm = false;
this.getList();
},
cancelForm(){
this.openForm = false;
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除').then(function() {
return delEmisWaybillAjustApply(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
// this.download('emis/emisWaybillAjustApply/export', {
// ...this.queryParams
// }, `emisWaybillAjustApply_${new Date().getTime()}.xlsx`)
const loadingInstance = this.$loading({
text: '正在导出...'
})
var qParam = {...this.queryParams};
qParam.pageNum=1;
qParam.pageSize=5000;
listEmisWaybillAjustApply(this.addDateRange(qParam, this.dateTimeRange)).then(response => {
this.downloadLoading = false
if (response.code === 200) {
const curList = response.rows
import('@/vendor/Export2Excel').then(excel => {
const tHeader = ['id','运单号','调整类型','申请人编码','申请站点代码','申请财务中心编码','申请时间','目的网点是否审核','目的站点代码','目的网点确认时间','目的网点审核备注','目的站点确认人代码','目的财务中心编码','改前值','改后值','修改值是否json','申请备注','中心是否审核','中心确认编码','中心确认人','中心确认时间','中心审核备注','备注','租户ID','删除标志(0代表存在','创建者','创建时间','更新者','更新时间','创建网点','更新网点',];
const filterVal = ['id','billCode','applyType','applyManCode','applySiteCode','applyFinanceCenterCode','applyDate','blDestConfirmed','destConfirmSiteCode','destConfirmDate','destConfirmNote','destConfirmManCode','destFinanceCenterCode','oldValue','newValue','blValueJson','applyMemo','blCenterConfirmed','centerConfirmSiteCode','centerConfirmManCode','centerConfirmDate','centerConfirmNote','remark','tenantId','delFlag','createBy','createTime','updateBy','updateTime','createSite','updateSite',];
const data = this.formatJson(filterVal, curList, response.rows)
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 => {
if (j === 'index') {
return ++index
}
if (j === 'status') {
var statusStr='xxx'
if(v[j] == 10){
statusStr='xxx'
}
return statusStr;
}
return v[j]
}))
},
/** 列索引函数 */
getIndex($index) {
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
},
/** 时间搜索响应函数 */
dateTimeChange(value){
this.dateTimeRange=value;
},
}
};
</script>
<style scoped>
.el-divider{
margin-top: 0px;
background: 0 0;
border-top: 1px solid #E6EBF5;
}
.el-divider__text {
color: #0955ee;
cursor: pointer;
}
</style>