Browse Source

Merge remote-tracking branch 'origin/dev' into dev

test
kilo 2 years ago
parent
commit
8898bedefc
  1. 21
      src/api/basicdata/basicdataCategory.js
  2. 11
      src/api/basicdata/basicdataWarehouse.js
  3. 48
      src/option/basicdata/basicZonePrice.js
  4. 13
      src/option/basicdata/basicdataCategory.js
  5. 18
      src/router/views/index.js
  6. 17
      src/views/basicdata/brand/basicZonePrice.vue
  7. 689
      src/views/basicdata/brand/basicZonePriceFrom.vue
  8. 68
      src/views/basicdata/brand/basicdataCategory.vue

21
src/api/basicdata/basicdataCategory.js

@ -11,6 +11,17 @@ export const getList = (current, size, params) => {
}
})
}
export const getListCo = (current, size, params) => {
return request({
url: '/api/logpm-basicdata/basicdataCategory/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
@ -48,3 +59,13 @@ export const update = (row) => {
})
}
export const getDeptLazyTree = parentId => {
return request({
url: '/api/logpm-basicdata/basicdataCategory/lazy-tree',
method: 'get',
params: {
parentId,
},
});
};

11
src/api/basicdata/basicdataWarehouse.js

@ -11,6 +11,17 @@ export const getList = (current, size, params) => {
}
})
}
export const getListCopy = (current, size, params) => {
return request({
url: '/api/logpm-basicdata/warehouse/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getListBinName = (current, size, params) => {
return request({

48
src/option/basicdata/basicZonePrice.js

@ -87,11 +87,25 @@ export default {
label: "品牌",
prop: "brand",
search: true,
hide: true,
},
{
label: "品牌",
prop: "brandName",
label: "始发仓",
prop: "beginGranary",
search: true,
},
{
label: "始发仓地址",
prop: "province",
search: true,
},
{
label: "末端仓",
prop: "goalGranary",
search: true,
},
{
label: "末端仓地址",
prop: "provinceEnd",
search: true,
},
// {
@ -111,22 +125,18 @@ export default {
// label: "仓储时间端费用",
// prop: "warehousingTimeCharge",
// },
{
label: "地址",
prop: "province",
search: true,
},
{
label: "末端仓",
prop: "name",
search: true,
},
{
label: "末端仓",
prop: "goalGranary",
search: true,
hide: true,
},
// {
// label: "末端仓",
// prop: "name",
// search: true,
// },
// {
// label: "末端仓",
// prop: "goalGranary",
// search: true,
// hide: true,
// },
{
label: "创建时间",
prop: "createTime",

13
src/option/basicdata/basicdataCategory.js

@ -194,6 +194,19 @@ export default {
prop: "type",
type: "input",
search: true,
// dicUrl: '/api/blade-system/dict-biz/dictionary?code=category',
// props: {
// label: 'dictValue',
// value: 'dictKey',
// },
// rules: [
// {
// required: true,
// message: '请选择类型',
// trigger: 'blur'
// }
// ]
},
]
}

18
src/router/views/index.js

@ -247,6 +247,24 @@ export default [
},
],
},
{
path: '/basicdata/brand/basicZonePriceFrom',
component: Layout,
redirect: '/brand/basicZonePriceFrom',
children: [
{
path: '/basicdata/brand/basicZonePriceFrom',
name: '新增',
meta: {
i18n: 'dict',
},
props: route => ({ name: route.query.name,
id: route.query.id}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicZonePriceFrom.vue'),
},
],
},
{
path: '/basicdata/brand/basicStoreContact',
component: Layout,

17
src/views/basicdata/brand/basicZonePrice.vue

@ -612,10 +612,19 @@ export default {
},
handleAdd () {
this.title = '新增'
this.form = {}
this.init ();
this.box = true
// this.title = ''
// this.form = {}
// this.init ();
// this.box = true;
this.$router.push({
path:"/basicdata/brand/basicZonePriceFrom",
query: {
id : '',
name : '新增'
}
});
},
handleEdit (row) {
this.title = '编辑'

689
src/views/basicdata/brand/basicZonePriceFrom.vue

@ -0,0 +1,689 @@
<template>
<basic-container>
<div class="avue-crud" :style="`height:`+ height ">
<el-form :disabled="view" ref="form" :model="form" label-width="120px" :rules="rules">
<el-row :gutter="20">
<el-col :span="10">
<el-form-item label="始发仓地址" prop="province" >
<!-- <el-input v-model="form.province" placeholder="请输入省"/>-->
<el-cascader :options="optioner" v-model="form.province" style="width: 100%;" :props="{ checkStrictly: true }" popper-class='ca' @change="monitor">
<template #default="{ node, data }">
<span>{{ data.label }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="始发仓" prop="goalGranary">
<!-- <el-input v-model="form.goalGranary" placeholder="请输入末端仓"/>-->
<el-select style="width: 100%"
v-model="form.beginGranary"
filterable
remote
reserve-keyword
placeholder="请输入始发仓"
:remote-method="remoteMethodBin"
:loading="loading"
>
<el-option
v-for="item in optionser"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="目的仓地址" prop="province">
<!-- <el-input v-model="form.province" placeholder="请输入省"/>-->
<el-cascader :options="optioner" v-model="form.provinceEnd" style="width: 100%;" :props="{ checkStrictly: true }" popper-class='ca' @change="monitor">
<template #default="{ node, data }">
<span>{{ data.label }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="目的仓" prop="goalGranary">
<!-- <el-input v-model="form.goalGranary" placeholder="请输入末端仓"/>-->
<el-select style="width: 100%"
v-model="form.goalGranary"
filterable
remote
reserve-keyword
placeholder="请输入目的仓"
:remote-method="remoteMethodBin"
:loading="loading"
>
<el-option
v-for="item in optionser"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="10">
<el-form-item label="货物类型" prop="brand">
<el-cascader :props="propsType" style="width: 100%"></el-cascader>
<!-- <el-select style="width: 100%"-->
<!-- v-model="form.brand"-->
<!-- filterable-->
<!-- remote-->
<!-- reserve-keyword-->
<!-- placeholder="货物类型"-->
<!-- :remote-method="remoteMethod"-->
<!-- :loading="loading"-->
<!-- >-->
<!-- <el-option-->
<!-- v-for="item in optionsr"-->
<!-- :key="item.id"-->
<!-- :label="item.brandName"-->
<!-- :value="item.id"-->
<!-- />-->
<!-- </el-select>-->
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="费用类型" prop="freightMark">
<el-checkbox-group v-model="form.freightMark" @change="handleCheckedCitiesChange">
<el-checkbox style="width: 18%;margin-bottom: 3%"
v-for="(item,index) in clientType"
:key="index"
:label="item.dictValue"
:value="item.dictKey"
>{{item.dictValue}}
<el-input type="number" v-model="item.remark" placeholder="请输入费用" :disabled = !item.pitch @change="textbox($event,index)" style="width: 70%"/>
</el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
</el-row>
<!-- 表单字段 -->
</el-form>
<!-- 表单按钮 -->
<!-- foot -->
<div class="foot" v-if="!view" >
<div class="dialog-footer" >
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit('form')"> </el-button>
<!-- <el-button icon="el-icon-circle-close" @click="box = false"> </el-button>-->
</div>
</div>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/basicdata/basicZonePrice";
import { getListBinName} from "@/api/basicdata/basicdataWarehouse";
import {getListName} from "@/api/basicdata/basicBrand";
import option from "@/option/basicdata/basicZonePrice";
import { mapGetters } from "vuex";
import { getLazyTreeAll } from '@/api/base/region';
import { getDictionaryBiz } from '@/api/system/dict';
import { getListCopy } from "@/api/basicdata/basicdataWarehouse";
import {getListCo,
getDeptLazyTree
} from "@/api/basicdata/basicdataCategory";
export default {
name: "basicZonePriceFrom",
data () {
return {
propsType: {
lazy: true,
lazyLoad (node, resolve) {
const { level } = node;
setTimeout(() => {
let ids =0;
const nodes = Array.from({ length: level + 1 })
.map(item => ({
value: ++ids,
label: `选项${ids}`,
leaf: level >= 2
}));
// resolve
resolve(nodes);
}, 1000);
}
},
optionProps:{
value: 'id',
label: 'cName',
children: 'childrenList', //
emitPath : false,
checkStrictly:true,
expandTrigger: 'hover' //
},
cascaderKey : 1,//,+1
height: 0,
//
title: '',
costCorrelationId: '',
//
box: false,
//
drawer: false,
//
direction: 'rtl',
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
clientType:[], //
wareType:[], //
costList:[], //
costListName:[], //
costWraeList:[], //
costWraeListName:[], //
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
pan: false,
//
selectionList: [],
//
option: option,
//
data: [],
optioner:[], //
optionsr:[],//
optionser:[], //
rules: {
province: [
{ required: true, message: '请选择地址', trigger: 'blur' },
// { min: 3, max: 5, message: ' 3 5 ', trigger: 'blur' }
],
brand: [
{ required: true, message: '请选择品牌', trigger: 'change' }
],
freightMark : [
{ required: true, message: '请选择费用类型', trigger: 'blur' }
],
cost: [
{ required: true, message: '请输入费用', trigger: 'blur' }
],
warehousingTimeStatus: [
{ required: true, message: '请选择时间段', trigger: 'change' }
],
warehousingTimeCharge: [
{ required: true, message: '请选择时间段费用', trigger: 'blur' }
],
goalGranary: [
{ required: true, message: '请选择末端仓', trigger: 'blur' }
],
},
}
},
watch: {
'form.province'() {
console.log("监听到了====");
if (this.$refs.refHandle) {
this.$refs.refHandle.dropDownVisible = false; //
}
}
},
created() {
getLazyTreeAll().then( res => {
if(res.data.success){
this.optioner = res.data.data;
this.onLoad(this.page);
}
})
// getListCo(this.page.currentPage, this.page.pageSize, values).then(res =>{
//
// })
},
mounted () {
this.init();
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
//
hideCascaderInp(){
this.$refs.cascaderRef.value.togglePopperVisible(false)
},
handleDrawerClose(){
this.costCorrelationId = '';
this.drawer = false;
},
handleDrawer(row) {
this.costCorrelationId = row.id;
this.drawer = true;
},
textWarebox(e,index) {
console.log(e,index)
this.costWraeList[index] = e;
},
textbox(e,index) {
console.log(e,index)
this.costList[index] = e;
},
handleCheckedCities(value) {
console.log(value);
if(value.length < 1){
this.costWraeList = [];
}
this.wareType.forEach(i =>{
if(value.includes(i.dictValue)){
// console.log(i);
i.pitch = true;
// this.$set(i,'pitch',false);
this.costWraeListName = value;
}else{
i.pitch = false;
this.costWraeList[i] = null;
i.remark = null;
}
});
// let checkedCount = value.length;
// this.checkAll = checkedCount === this.cities.length;
// this.isIndeterminate = checkedCount > 0 && checkedCount < this.cities.length;
},
handleCheckedCitiesChange(value) {
// console.log(value);
if(value.length < 1){
this.costList = [];
this.costListName = [];
}
this.clientType.forEach(i =>{
if(value.includes(i.dictValue)){
// console.log(i);
i.pitch = true;
this.costListName = value;
// console.log(this.costListName);
// this.$set(i,'pitch',false);
}else{
i.pitch = false;
this.costList[i] = null;
i.remark = null;
}
});
// let checkedCount = value.length;
// this.checkAll = checkedCount === this.cities.length;
// this.isIndeterminate = checkedCount > 0 && checkedCount < this.cities.length;
},
remoteMethod(query){
if (query) {
this.loading = true
setTimeout(async () => {
this.loading = false;
let list = await getListName(this.page.currentPage, this.page.pageSize, { brandName: query });
this.optionsr = list.data.data.records.filter((item) => {
return item.brandName.toLowerCase().includes(query.toLowerCase())
})
}, 200)
} else {
this.optionsr = [];
}
},
monitor(row){
console.log("执行了===",row);
this.warehouse(row);
},
//
warehouse(row){
let a ={
province_code : row.length > 0 ? row[0] : null,
city_code : row.length > 1 ? row[1] : null,
code : row.length > 2 ? row[1] : null,
}
let co = getListCopy(this.page.currentPage, this.page.pageSize,a );
console.log("co>>>",co);
this.optionser = co.data.data.records.filter((item) => {
return item.name.toLowerCase().includes(query.toLowerCase())
})
},
remoteMethodBin(query){
if (query) {
this.loading = true;
setTimeout(async () => {
this.loading = false;
console.log( "this.form.province",this.form.province);
let list = await getListBinName(this.page.currentPage, this.page.pageSize, { name: query });
this.optionser = list.data.data.records.filter((item) => {
return item.name.toLowerCase().includes(query.toLowerCase())
})
}, 200)
} else {
this.optionser = [];
}
},
init () {
this.height = this.setPx(document.body.clientHeight - 155);
//
getDictionaryBiz('jg_freight_mark').then(res => {
// console.log("",res);
this.clientType = res.data.data;
});
//
// getDictionaryBiz('warehousing_time_status').then(res => {
// // console.log("",res);
// this.wareType = res.data.data;
// });
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
bianLier(costListName,clientType,costList,fei){
// console.log(">>>>>>>>>",costListName,clientType,costList,fei);
this.pan = false;
// fei = [];
for (let i = 0;i< costListName.length;i++){
if(!costList){ this.pan = true; return }
let zhi = costList[i];
if(!zhi){
this.pan = true;
continue;
}
clientType.forEach( it =>{
if(it.dictValue == costListName[i]){
// console.log("",it.dictValue , costListName[i]);
//2.
fei.set(it.dictKey,zhi)
}
})
}
},
handleSubmit (from) {
this.$refs[from].validate(async (valid) => {
if (valid) {
if (!this.form.id) {
// console.log("",this.form);
let fei = new Map();
await this.bianLier(this.costListName,this.clientType,this.costList,fei);
this.form.fei = Object.fromEntries(fei);
// console.log("fei",fei);
this.form.freightMark = undefined;
// let feishi = new Map();
// await this.bianli(this.costWraeListName,this.wareType,this.costWraeList,feishi);
// this.form.feishi = Object.fromEntries(feishi);
// // console.log("feishi",feishi);
// this.form.warehousingTimeStatus = undefined;
if(this.pan){
this.$message.warning("请填写完整已勾选的数据费用");
return
}
this.form.city = this.form.province[1];
this.form.district = this.form.province[2];
this.form.province = this.form.province[0];
console.log("提交的数据》》》",this.form);
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
this.form.city = this.form.province[1];
this.form.district = this.form.province[2];
this.form.province = this.form.province[0];
if(JSON.stringify(this.form.goalGranary).length < 15){
this.form.goalGranary = null;
}
if(JSON.stringify(this.form.brand).length < 15){
this.form.brand = null;
}
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
}
})
},
handleAdd () {
// this.title = ''
// this.form = {}
// this.init ();
// this.box = true;
this.$router.push({
path:"/basicdata/brand/basicZonePriceFrom",
query: {
id : '',
name : '新增'
}
});
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
let a= [];
if(!!this.form.province){
a.push(res.data.data.province);
a.push(res.data.data.city);
a.push(res.data.data.district);
}
this.form.province = a;
this.form.goalGranary = row.name;
this.form.brand = row.brandName;
});
},
handleView (row) {
console.log("row>>>>>>>>",row);
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
let a= [];
if(!!this.form.province){
a.push(res.data.data.province);
a.push(res.data.data.city);
a.push(res.data.data.district);
}
this.form.province = a;
this.form.goalGranary = row.name;
this.form.brand = row.brandName;
});
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
// this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
if(!!this.query.province){
this.query.city = this.query.province[1];
this.query.district = this.query.province[2];
this.query.province = this.query.province[0];
}
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.clientType.forEach(it =>{
data.records.forEach(i =>{
if(parseInt( it.dictKey ) == parseInt(i.freightMark)){
i.freightMark = it.dictValue
}
if(i.freightMark == '-1'){
i.freightMark = '无'
}
})
})
// this.wareType.forEach(it =>{
// data.records.forEach(i =>{
// if(parseInt( it.dictKey ) == parseInt(i.warehousingTimeStatus)){
// i.warehousingTimeStatus = it.dictValue
// }
// if(i.warehousingTimeStatus == '-1'){
// i.warehousingTimeStatus = ''
// }
// })
// })
this.page.total = data.total;
this.data = data.records;
let dz ="";
console.log("this.optioner>>>>>>>>data.records>>>>>>");
data.records.forEach(it =>{
let arrsheng = this.optioner.filter((i) => {
return it.province == i.value;
});
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
let arrshi = arrsheng[0].children.filter((i) => {
return it.city == i.value;
});
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
let arrqu = arrshi[0].children.filter((i) => {
return it.district == i.value;
});
// console.log("========",JSON.parse(JSON.stringify(arrsheng)) );
dz = arrsheng[0].label+"/"+arrshi[0].label+"/"+arrqu[0].label;
it.province = dz;
})
this.loading = false;
this.selectionClear();
});
}
}
};
</script>
<style>
.foot {
position: fixed;
right: 0;
bottom: 0;
left: 0;
z-index: 999;
height: 60px;
}
.foot .dialog-footer {
margin-bottom: 130px;
text-align: center;
}
.ca .el-radio__inner {
top: -18px;
left: -19px;
border-radius: 0;
border: 0;
width: 170px;
height: 34px;
background-color: transparent;
cursor: pointer;
box-sizing: border-box;
position: absolute;
}
.ca .el-radio__input.is-checked .el-radio__inner {
background: transparent;
}
</style>

68
src/views/basicdata/brand/basicdataCategory.vue

@ -1,7 +1,7 @@
<template>
<el-row>
<el-col :span="5">
<div class="box">
<div class="box" v-if="qw">
<el-scrollbar>
<basic-container>
<avue-tree :option="treeOption" :data="treeData" @node-click="nodeClick" />
@ -37,11 +37,11 @@
v-if="permission.basicdataCategory_delete"
@click="handleDelete">
</el-button>
<el-button type="warning"
plain
icon="el-icon-download"
@click="handleExport">
</el-button>
<!-- <el-button type="warning"-->
<!-- plain-->
<!-- icon="el-icon-download"-->
<!-- @click="handleExport"> -->
<!-- </el-button>-->
</template>
</avue-crud>
</basic-container>
@ -50,7 +50,9 @@
</template>
<script>
import {getList, getDetail, add, update, remove} from "@/api/basicdata/basicdataCategory";
import {getList, getDetail, add, update, remove,
getDeptLazyTree
} from "@/api/basicdata/basicdataCategory";
import option from "@/option/basicdata/basicdataCategory";
import {mapGetters} from "vuex";
import {exportBlob} from "@/api/common";
@ -59,7 +61,7 @@
import {dateNow} from "@/utils/date";
import NProgress from 'nprogress';
import 'nprogress/nprogress.css';
import { getDeptLazyTree } from '@/api/system/dept';
// import { getDeptLazyTree } from '@/api/system/dept';
export default {
data() {
@ -67,7 +69,9 @@
form: {},
query: {},
search: {},
loading: true,
loading: false,
qw: true,
treeId: '',
page: {
pageSize: 10,
currentPage: 1,
@ -81,10 +85,10 @@
nodeKey: 'id',
lazy: true,
treeLoad: function (node, resolve) {
console.log("<<<<<<<<<<<<<<",node,resolve);
const parentId = node.level === 0 ? 0 : node.data.id;
// console.log("<<<<<<<<<<<<<<",node,resolve);
const parentId = node.level === 0 ? 1 : node.data.id;
getDeptLazyTree(parentId).then(res => {
console.log("res>",res)
// console.log("res>",res)
resolve(
res.data.data.map(item => {
return {
@ -127,17 +131,36 @@
},
methods: {
nodeClick(data) {
this.treeDeptId = data.id;
console.log("点击了",data);
this.treeId = data.id;
this.page.currentPage = 1;
this.onLoad(this.page);
},
rowSave(row, done, loading) {
//
// if(!!this.treeOption.treeLoad()){
//
// }else{
//
// }
console.log("row+++",row);
if(row.type == '1' ){
this.treeId = '';
}
if(!!this.treeId){
row.pid = this.treeId;
}
this.qw = false;
add(row).then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.qw = true;
if(!!this.treeId){
this.onLoad(this.page);
}
done();
}, error => {
loading();
@ -145,12 +168,14 @@
});
},
rowUpdate(row, index, done, loading) {
this.qw = false;
update(row).then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.qw = true;
done();
}, error => {
loading();
@ -253,18 +278,21 @@
this.onLoad(this.page, this.query);
},
onLoad(page, params = {}) {
this.loading = true;
this.loading = false;
const {
name,
type,
} = this.query;
let values = {
name_: name,
type_: type,
name_like: name,
type: type,
};
if(!!this.treeId){
values.pid = this.treeId;
}else{
values.type = 1;
}
console.log("查询条件",values);
getList(page.currentPage, page.pageSize, values).then(res => {
const data = res.data.data;
this.page.total = data.total;

Loading…
Cancel
Save