2023-10-25 18:19:09 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<!-- 搜索框-->
|
|
|
|
|
<el-card >
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
|
|
|
|
<el-form-item label="油品" prop="oilNumber">
|
|
|
|
|
<el-select v-model="queryParams.numberId" placeholder="请选择油品" style="width:100%" @change="chooseOilNumber()">
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="油罐名称" prop="tankName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.tankName"
|
|
|
|
|
placeholder="请输入姓名"
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 240px;"
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="状态" v-model="queryParams.status" prop="status">
|
|
|
|
|
<el-select v-model="queryParams.status" placeholder="" style="width:100%">
|
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
|
<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>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<!-- <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>-->
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<!-- 列表-->
|
|
|
|
|
<el-card style="margin-top: 20px" >
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<h3>油罐列表</h3>
|
|
|
|
|
</el-col>
|
2023-10-26 13:52:13 +08:00
|
|
|
|
<!-- <el-button @click="exportExcelTank()">导出</el-button>-->
|
2023-10-25 18:19:09 +08:00
|
|
|
|
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList">123123123</right-toolbar>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table ref="tables"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="statisticsList"
|
|
|
|
|
:default-sort="defaultSort">
|
|
|
|
|
<el-table-column label="油罐名称" align="center" prop="tankName"/>
|
|
|
|
|
<el-table-column label="油品名称" align="center" prop="oilNumber" />
|
|
|
|
|
<el-table-column label="油罐容量" align="center" prop="tankVolume" />
|
|
|
|
|
<el-table-column label="油品密度(g/ml)" align="center" prop="oilDensity" />
|
|
|
|
|
<el-table-column label="当前剩余升数" align="center" prop="storedQuantity" />
|
|
|
|
|
<el-table-column label="当前成本价" align="center" prop="discountedPrice" />
|
|
|
|
|
<el-table-column label="成本金额" align="center" prop="totalPrice" />
|
|
|
|
|
<el-table-column label="状态" align="center" prop="inventoryStatistics">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div slot="reference" class="name-wrapper">
|
|
|
|
|
<el-tag v-if ="scope.row.inventoryStatistics == '启用'" size="success">启用</el-tag>
|
2023-10-26 13:52:13 +08:00
|
|
|
|
<el-tag v-if ="scope.row.inventoryStatistics == '禁用'" type="danger" size="medium">禁用</el-tag>
|
2023-10-25 18:19:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
</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>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="queryParams.page"
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-drawer
|
|
|
|
|
title="库存跟踪"
|
|
|
|
|
:visible.sync="drawer"
|
|
|
|
|
direction="rtl"
|
|
|
|
|
size="50%"
|
|
|
|
|
:before-close="handleClose">
|
|
|
|
|
|
|
|
|
|
<div style="display: grid; place-items: center;">
|
|
|
|
|
<el-card class="box-card" style="background-color: #f5f5f5">
|
|
|
|
|
<div slot="header" class="clearfix">
|
|
|
|
|
<div style="position: relative;">
|
|
|
|
|
<div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);">
|
|
|
|
|
<h2>{{statisticsForm.tankName}}</h2>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<br>
|
|
|
|
|
<div style="display: flex; justify-content: space-between;">
|
|
|
|
|
<span>油品名称:</span>
|
|
|
|
|
<span>{{ statisticsForm.oilNumber }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div >
|
|
|
|
|
<div style="margin-top:-5px;display: flex; justify-content: space-between;">
|
|
|
|
|
<h3>库存数量</h3>
|
|
|
|
|
<h3>{{statisticsForm.storedQuantity}}{{statisticsForm.unit}}</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: flex; justify-content: space-between;">
|
|
|
|
|
<span>更新时间</span>
|
|
|
|
|
<span>{{ statisticsForm.updateTime }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-card class="box-card" style="margin-top: 15px">
|
|
|
|
|
<el-table ref="tables"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="trackList"
|
|
|
|
|
:default-sort="defaultSort">
|
|
|
|
|
<el-table-column
|
|
|
|
|
lable="#"
|
|
|
|
|
type="index"
|
|
|
|
|
>
|
|
|
|
|
</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" prop="document" />
|
|
|
|
|
<el-table-column label="单号" align="center" prop="orderNumber" />
|
|
|
|
|
<el-table-column label="变动数量" align="center" prop="quantityChange" />
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total2>0"
|
|
|
|
|
:total="total2"
|
|
|
|
|
:page.sync="queryParams2.page"
|
|
|
|
|
:limit.sync="queryParams2.pageSize"
|
|
|
|
|
@pagination="getTrackingList"
|
|
|
|
|
/>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
|
</el-drawer>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2023-10-26 13:52:13 +08:00
|
|
|
|
import {exportExcelTankApi, getTankApi} from "@/api/oilConfig/oilTank";
|
2023-10-25 18:19:09 +08:00
|
|
|
|
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: {
|
|
|
|
|
tankName:'',
|
|
|
|
|
oilNumber:'',
|
|
|
|
|
storedQuantity:'',
|
|
|
|
|
updateTime:'',
|
|
|
|
|
unit:''
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
numberId:'',
|
|
|
|
|
status:'',
|
|
|
|
|
tankName: '',
|
|
|
|
|
page:null,
|
|
|
|
|
pageSize:null
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
queryParams2: {
|
|
|
|
|
page:null,
|
|
|
|
|
pageSize:null
|
|
|
|
|
},
|
|
|
|
|
drawer: false,
|
|
|
|
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: false,
|
|
|
|
|
// 默认排序
|
|
|
|
|
defaultSort: {prop: 'createTime', order: 'descending'},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async created() {
|
|
|
|
|
let this_ = this
|
|
|
|
|
await this_.getList()
|
|
|
|
|
this_.getOilNameList()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2023-10-26 13:52:13 +08:00
|
|
|
|
|
|
|
|
|
exportExcelTank() {
|
|
|
|
|
console.log("resbgdfgddffffffffffffffffffffffffffffffffffffffffffffffff")
|
|
|
|
|
|
|
|
|
|
exportExcelTankApi().then(res=>{
|
|
|
|
|
console.log("res",res)
|
|
|
|
|
const blob = new Blob([res], {
|
|
|
|
|
type: 'application/vnd.ms-excel'
|
|
|
|
|
});
|
|
|
|
|
let link = document.createElement('a');
|
|
|
|
|
link.href = URL.createObjectURL(blob);
|
|
|
|
|
link.setAttribute('download', '存油统计.xlsx');
|
|
|
|
|
link.click();
|
|
|
|
|
link = null;
|
|
|
|
|
})
|
|
|
|
|
},
|
2023-10-25 18:19:09 +08:00
|
|
|
|
getList() {
|
|
|
|
|
getTankApi(this.queryParams).then(res=>{
|
|
|
|
|
this.statisticsList = res.data.records
|
|
|
|
|
this.total = res.data.total;
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getTrackingList(data) {
|
|
|
|
|
this.queryParams2.tankId = data.id,
|
|
|
|
|
getTrackingApi(this.queryParams2).then(res=>{
|
|
|
|
|
this.trackList = res.data.records
|
|
|
|
|
this.total2 = res.data.total;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 库存跟踪
|
|
|
|
|
trace(data) {
|
|
|
|
|
let this_ = this
|
|
|
|
|
this_.statisticsForm = {},
|
|
|
|
|
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.trackList = []
|
|
|
|
|
this_.getTrackingList(data)
|
|
|
|
|
this.drawer=true
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleClose(done) {
|
|
|
|
|
done();
|
|
|
|
|
// this.$confirm('确认关闭?')
|
|
|
|
|
// .then(_ => {
|
|
|
|
|
// done();
|
|
|
|
|
// })
|
|
|
|
|
// .catch(_ => {});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 选择油品号
|
|
|
|
|
getOilNameList() {
|
|
|
|
|
var this_=this
|
|
|
|
|
getOilNameListApi().then( response => {
|
|
|
|
|
var list = response.data
|
|
|
|
|
this_.selectOilTypeByPrice = list
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 搜索按钮操作
|
|
|
|
|
handleQuery() {
|
|
|
|
|
|
|
|
|
|
this.queryParams.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.app-container{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
background: #f6f8f9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clearfix:before,
|
|
|
|
|
.clearfix:after {
|
|
|
|
|
display: table;
|
|
|
|
|
content: "";
|
|
|
|
|
}
|
|
|
|
|
.clearfix:after {
|
|
|
|
|
clear: both
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box-card {
|
|
|
|
|
width: 90%;
|
|
|
|
|
}
|
|
|
|
|
</style>
|