2024-08-16 18:26:19 +08:00
|
|
|
|
<template>
|
2024-10-30 11:32:43 +08:00
|
|
|
|
<div class="app-cont">
|
2024-08-16 18:26:19 +08:00
|
|
|
|
<!-- 搜索框-->
|
2024-10-30 11:32:43 +08:00
|
|
|
|
<div class="card_box">
|
2024-08-16 18:26:19 +08:00
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
2024-10-28 11:33:35 +08:00
|
|
|
|
<el-form-item label="" prop="tankName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.tankName"
|
|
|
|
|
placeholder="请输入油罐名称"
|
|
|
|
|
clearable
|
2024-10-30 11:32:43 +08:00
|
|
|
|
|
2024-10-28 11:33:35 +08:00
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
2024-08-16 18:26:19 +08:00
|
|
|
|
<el-form-item label="" prop="oilNumber">
|
2024-10-28 11:33:35 +08:00
|
|
|
|
<el-select v-model="queryParams.numberId" placeholder="请选择油品油号" style="width:100%" clearable>
|
2024-08-16 18:26:19 +08:00
|
|
|
|
<el-option
|
|
|
|
|
v-for="option in selectOilTypeByPrice"
|
|
|
|
|
:key="option.numberId"
|
|
|
|
|
:label="option.oilType +' '+option.oilName"
|
|
|
|
|
:value="option.numberId"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
2024-10-28 11:33:35 +08:00
|
|
|
|
<el-form-item label-width="120px" label="" v-model="queryParams.inventoryStatistics" prop="inventoryStatistics"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-select v-model="queryParams.inventoryStatistics" placeholder="请选择状态" style="width:100%">
|
|
|
|
|
<!-- <el-option label="库存统计状态" value=""></el-option>-->
|
2024-08-16 18:26:19 +08:00
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in dict.type.zhzt"
|
|
|
|
|
:key="dict.label"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="dict.label"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item style="float: right;margin-right: 0px">
|
2024-10-28 11:33:35 +08:00
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
2024-08-16 18:26:19 +08:00
|
|
|
|
<el-button type="primary" @click="exportExcelTank()"
|
|
|
|
|
v-hasPermi="['oilConfig:oilStatistics:list:ex']"
|
2024-10-28 11:33:35 +08:00
|
|
|
|
>导出
|
|
|
|
|
</el-button>
|
2024-08-16 18:26:19 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
2024-11-01 15:08:04 +08:00
|
|
|
|
<div style="height: 75vh;overflow: auto">
|
2024-10-28 11:33:35 +08:00
|
|
|
|
<el-table key="2" ref="tables"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="statisticsList"
|
|
|
|
|
border
|
|
|
|
|
:default-sort="defaultSort">
|
|
|
|
|
<el-table-column align="center" type="index" label="序号"></el-table-column>
|
|
|
|
|
<el-table-column label="油罐名称" align="center" prop="tankName"/>
|
|
|
|
|
<el-table-column label="油品-油号" align="center" prop="oilNumber"/>
|
|
|
|
|
<el-table-column label="油罐容量(L)" align="center" prop="tankVolume"/>
|
|
|
|
|
<el-table-column label="油品密度(g/ml)" align="center" prop="oilDensity"/>
|
|
|
|
|
<el-table-column label="当前剩余油量(L)" align="center" prop="storedQuantity"/>
|
|
|
|
|
<el-table-column label="当前成本价(元/L)" align="center" prop="discountedPrice"/>
|
|
|
|
|
<el-table-column label="成本金额(元)" align="center" prop="totalPrice"/>
|
|
|
|
|
<el-table-column label="状态" align="center" prop="inventoryStatistics">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-switch
|
|
|
|
|
disabled
|
|
|
|
|
v-model="scope.row.status"
|
|
|
|
|
active-value="启用"
|
|
|
|
|
inactive-value="禁用"
|
|
|
|
|
active-color="#13ce66"
|
|
|
|
|
inactive-color="#ff4949">
|
|
|
|
|
</el-switch>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="更新时间" align="center" prop="updateTime" width="200">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.updateTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
@click="trace(scope.row)"
|
|
|
|
|
>库存跟踪记录
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- v-hasPermi="['']"-->
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</div>
|
2024-08-16 18:26:19 +08:00
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="queryParams.page"
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
2024-10-30 11:32:43 +08:00
|
|
|
|
</div>
|
2024-08-16 18:26:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-drawer
|
|
|
|
|
title="库存跟踪记录"
|
|
|
|
|
:visible.sync="drawer"
|
|
|
|
|
direction="rtl"
|
2024-10-28 11:33:35 +08:00
|
|
|
|
size="45%"
|
2024-08-16 18:26:19 +08:00
|
|
|
|
:before-close="handleClose">
|
|
|
|
|
|
|
|
|
|
<div style="display: grid; place-items: center;">
|
|
|
|
|
<div class="box-card" style="">
|
2024-10-30 11:32:43 +08:00
|
|
|
|
<div style="display: flex; justify-content: space-between;margin-bottom: 10px;font-size: 14px;color: #808285">
|
2024-10-28 11:33:35 +08:00
|
|
|
|
<span>油罐名称:{{ statisticsForm.tankName }}</span>
|
|
|
|
|
<span>油品油号:{{ statisticsForm.oilNumber }}</span>
|
|
|
|
|
<span>库存数量(L):{{ statisticsForm.storedQuantity }}{{ statisticsForm.unit }}</span>
|
|
|
|
|
<span>更新时间:{{ statisticsForm.updateTime }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="height: 80vh;overflow: auto">
|
|
|
|
|
<el-table ref="tables"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="trackList"
|
|
|
|
|
:default-sort="defaultSort"
|
|
|
|
|
border
|
|
|
|
|
key="1">
|
|
|
|
|
<el-table-column align="center" type="index" label="序号"></el-table-column>
|
|
|
|
|
<el-table-column label="单号" align="center" prop="orderNumber"/>
|
|
|
|
|
<el-table-column label="类型" align="center" prop="document"/>
|
|
|
|
|
<el-table-column label="变动数量(L)" align="center" prop="quantityChange"/>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="库存更新时间" align="center" prop="updateTime" width="200">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.updateTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
2024-08-16 18:26:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total2>0"
|
|
|
|
|
:total="total2"
|
|
|
|
|
:page.sync="queryParams2.page"
|
|
|
|
|
:limit.sync="queryParams2.pageSize"
|
|
|
|
|
@pagination="getTrackingList"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-drawer>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {exportExcelTankApi, getTankApi} from "@/api/oilConfig/oilTank";
|
|
|
|
|
import {getTrackingApi} from "@/api/oilConfig/oilStatistics";
|
|
|
|
|
import {getOilNameListApi} from "@/api/oilPrice";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "oilStatistics",
|
|
|
|
|
dicts: ['zhzt'],
|
|
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
statisticsList: [],
|
|
|
|
|
trackList: [],
|
|
|
|
|
selectOilTypeByPrice: [],
|
|
|
|
|
|
|
|
|
|
// 总条数
|
|
|
|
|
total: 0,
|
|
|
|
|
total2: 0,
|
|
|
|
|
statisticsForm: {
|
2024-10-28 11:33:35 +08:00
|
|
|
|
tankName: '',
|
|
|
|
|
oilNumber: '',
|
|
|
|
|
storedQuantity: '',
|
|
|
|
|
updateTime: '',
|
|
|
|
|
unit: ''
|
2024-08-16 18:26:19 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
2024-10-28 11:33:35 +08:00
|
|
|
|
numberId: '',
|
|
|
|
|
status: '启用',
|
|
|
|
|
inventoryStatistics: '',
|
2024-08-16 18:26:19 +08:00
|
|
|
|
tankName: '',
|
2024-10-28 11:33:35 +08:00
|
|
|
|
page: null,
|
|
|
|
|
pageSize: null
|
2024-08-16 18:26:19 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
queryParams2: {
|
2024-10-28 11:33:35 +08:00
|
|
|
|
page: null,
|
|
|
|
|
pageSize: null
|
2024-08-16 18:26:19 +08:00
|
|
|
|
},
|
|
|
|
|
drawer: false,
|
|
|
|
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: false,
|
|
|
|
|
// 默认排序
|
|
|
|
|
defaultSort: {prop: 'createTime', order: 'descending'},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async created() {
|
|
|
|
|
let this_ = this
|
|
|
|
|
await this_.getList()
|
|
|
|
|
this_.getOilNameList()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
exportExcelTank() {
|
2024-10-28 11:33:35 +08:00
|
|
|
|
exportExcelTankApi().then(res => {
|
|
|
|
|
console.log("res", res)
|
2024-08-16 18:26:19 +08:00
|
|
|
|
// this.downloadFile(res);
|
2024-10-28 11:33:35 +08:00
|
|
|
|
const blob = new Blob([res], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
|
2024-08-16 18:26:19 +08:00
|
|
|
|
|
2024-10-28 11:33:35 +08:00
|
|
|
|
this.$download.saveAs(blob, '库存统计.xLsx')
|
2024-08-16 18:26:19 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
downloadFile(blobData) {
|
|
|
|
|
this.$down()
|
|
|
|
|
// 创建一个 Blob 对象,并创建一个 URL,用于下载文件
|
2024-10-28 11:33:35 +08:00
|
|
|
|
const blob = new Blob([blobData], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
|
2024-08-16 18:26:19 +08:00
|
|
|
|
const url = window.URL.createObjectURL(blob);
|
|
|
|
|
const link = document.createElement('a');
|
|
|
|
|
link.href = url;
|
|
|
|
|
|
|
|
|
|
// 设置下载文件的名称
|
|
|
|
|
link.setAttribute('download', 'exportedFile.xlsx');
|
|
|
|
|
|
|
|
|
|
// 模拟点击链接进行下载
|
|
|
|
|
link.click();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getList() {
|
2024-10-28 11:33:35 +08:00
|
|
|
|
getTankApi(this.queryParams).then(res => {
|
2024-08-16 18:26:19 +08:00
|
|
|
|
this.statisticsList = res.data.records
|
|
|
|
|
this.total = res.data.total;
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getTrackingList(data) {
|
|
|
|
|
// this.queryParams2.tankId = data.id
|
2024-10-28 11:33:35 +08:00
|
|
|
|
getTrackingApi(this.queryParams2).then(res => {
|
2024-08-16 18:26:19 +08:00
|
|
|
|
this.trackList = res.data.records
|
|
|
|
|
this.total2 = res.data.total;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 库存跟踪
|
|
|
|
|
trace(data) {
|
|
|
|
|
let this_ = this
|
|
|
|
|
this_.statisticsForm = {},
|
2024-10-28 11:33:35 +08:00
|
|
|
|
this_.statisticsForm.tankName = data.tankName,
|
|
|
|
|
this_.statisticsForm.oilNumber = data.oilNumber,
|
|
|
|
|
this_.statisticsForm.storedQuantity = data.storedQuantity,
|
|
|
|
|
this_.statisticsForm.updateTime = data.updateTime,
|
|
|
|
|
this_.statisticsForm.unit = data.unit,
|
|
|
|
|
this_.queryParams2.tankId = data.id
|
2024-08-16 18:26:19 +08:00
|
|
|
|
this.trackList = []
|
|
|
|
|
this_.getTrackingList(data)
|
2024-10-28 11:33:35 +08:00
|
|
|
|
this.drawer = true
|
2024-08-16 18:26:19 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 搜索框重置
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.res()
|
|
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
res() {
|
|
|
|
|
// 查询参数
|
2024-10-28 11:33:35 +08:00
|
|
|
|
this.queryParams = {
|
|
|
|
|
numberId: '',
|
|
|
|
|
status: '启用',
|
|
|
|
|
inventoryStatistics: '',
|
2024-08-16 18:26:19 +08:00
|
|
|
|
tankName: '',
|
2024-10-28 11:33:35 +08:00
|
|
|
|
page: null,
|
|
|
|
|
pageSize: null
|
2024-08-16 18:26:19 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleClose(done) {
|
|
|
|
|
done();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 选择油品号
|
|
|
|
|
getOilNameList() {
|
2024-10-28 11:33:35 +08:00
|
|
|
|
var this_ = this
|
|
|
|
|
getOilNameListApi().then(response => {
|
2024-08-16 18:26:19 +08:00
|
|
|
|
var list = response.data
|
|
|
|
|
this_.selectOilTypeByPrice = list
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 搜索按钮操作
|
|
|
|
|
handleQuery() {
|
|
|
|
|
|
|
|
|
|
this.queryParams.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2024-10-30 11:32:43 +08:00
|
|
|
|
.app-cont {
|
2024-10-28 11:33:35 +08:00
|
|
|
|
width: 100%;
|
2024-10-30 11:32:43 +08:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding: 10px;
|
2024-10-28 11:33:35 +08:00
|
|
|
|
background: #f6f8f9;
|
|
|
|
|
}
|
2024-08-16 18:26:19 +08:00
|
|
|
|
|
2024-10-28 11:33:35 +08:00
|
|
|
|
.text {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
2024-08-16 18:26:19 +08:00
|
|
|
|
|
2024-10-28 11:33:35 +08:00
|
|
|
|
.item {
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
}
|
2024-08-16 18:26:19 +08:00
|
|
|
|
|
2024-10-28 11:33:35 +08:00
|
|
|
|
.clearfix:before,
|
|
|
|
|
.clearfix:after {
|
|
|
|
|
display: table;
|
|
|
|
|
content: "";
|
|
|
|
|
}
|
2024-08-16 18:26:19 +08:00
|
|
|
|
|
2024-10-28 11:33:35 +08:00
|
|
|
|
.clearfix:after {
|
|
|
|
|
clear: both
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box-card {
|
|
|
|
|
width: 90%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form--inline .el-form-item {
|
|
|
|
|
margin-right: 44px;
|
|
|
|
|
}
|
2024-10-30 11:32:43 +08:00
|
|
|
|
.card_box{
|
2024-11-04 16:18:56 +08:00
|
|
|
|
height: 90vh;
|
2024-10-30 11:32:43 +08:00
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
}
|
2024-08-16 18:26:19 +08:00
|
|
|
|
</style>
|