emis-frontend/src/views/emis/emisWaybillAjustApply/WaybillAjustApplyList.vue
2024-11-17 07:23:12 +08:00

409 lines
16 KiB
Vue

<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="6">
<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" >
<!-- <elDateSimplePicker v-model="dateTimeRange" ></elDateSimplePicker> -->
<elDateAdvPicker v-model="dateTimeRange" ></elDateAdvPicker>
</el-form-item>
</el-col>
<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
slot="pageContent"
slot-scope="slotProps"
:height="(slotProps.contentHeight)+'px'"
v-loading="loading"
border stripe
size="mini"
storageName="emisWaybillAjustApplyList_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="primary"
plain
icon="el-icon-plus"
size="mini"
:disabled="single"
@click="handleReApply"
v-hasPermi="['emis:emisWaybillAjustApply:add']"
>再次申请</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
plain
:disabled="single"
size="mini"
@click="handleView"
>查看</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="100%" :destroy-on-close="true" v-dialogDrag append-to-body>
<emisWaybillAjustApplyForm :id="currentId" :isReApply="isReApply" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisWaybillAjustApplyForm>
</el-dialog>
</XdPageContainer>
</template>
<script>
import { listEmisWaybillAjustApply, getEmisWaybillAjustApply, delEmisWaybillAjustApply, addEmisWaybillAjustApply, updateEmisWaybillAjustApply } from "@/api/emis/emisWaybillAjustApply";
import emisWaybillAjustApplyForm from '@/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyForm';
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
import AjustApplyTypePicker from '@/views/emis/EmisBaseTools/AjustApplyTypePicker.vue';
import elDateAdvPicker from '@/components/DatePickerAdv/elDateAdvPicker';
export default {
name: "WaybillAjustApplyList",
components: { elDateAdvPicker,emisWaybillAjustApplyForm,AjustApplyTypePicker},
dicts: ['emis_qujian_fangshi','emis_declare_mode','emis_customs_clear',
'emis_tab_packing_type','emis_tab_dispatch_mode','emis_payment_type',
'emis_calc_fee_type','emis_print_type'],
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 创建时间搜索
dateTimeRange:[],
// 总条数
total: 0,
// 运单调整申请表格数据
emisWaybillAjustApplyList: [],
currentId:null,
openForm: false,
titleForm: "",
isReApply:false,
// 弹出展示层
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.applySiteCode=this.$store.getters.ownerSiteCode;
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();
},
/** 新增按钮操作 */
handleAdd(row) {
this.currentId=null;
this.openForm= true;
this.titleForm = "新增费用申请";
},
handleShowMoreInput(){
this.moreInputVisible = !this.moreInputVisible;
},
/** 再次申请按钮操作 */
handleReApply(row) {
this.currentId= row.id||this.ids;
this.isReApply=true;
this.openForm = true;
this.titleForm = "再次申请";
},
handleView(row) {
this.currentId= row.id || this.ids;
this.isReApply=false;
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(() => {});
},
/** 列索引函数 */
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>