Browse Source

报表搜索

dev-xx
马远东 1 year ago
parent
commit
268ce605b0
  1. 2
      src/api/reportforms/index.js
  2. 4
      src/option/reportforms/DeliveryDetails.js
  3. 4
      src/option/reportforms/InventoryReceipt.js
  4. 2
      src/option/reportforms/Selfpickupreport.js
  5. 1
      src/views/reportforms/DeliveryCustomers.vue
  6. 117
      src/views/reportforms/DeliveryDetails.vue
  7. 4
      src/views/reportforms/DeliveryTrainNumber.vue
  8. 880
      src/views/reportforms/InventoryReceipt.vue
  9. 155
      src/views/reportforms/Selfpickupreport.vue

2
src/api/reportforms/index.js

@ -78,7 +78,7 @@ export const $_exportSelfpickup = (params) => {
// 库存品出库明细报表
export const $_getreport = (params) => {
return request({
url: '/api/logpm-report/stock-out-detail/report',
url: '/api/logpm-report/stock/outStocks',
method: 'get',
params,
});

4
src/option/reportforms/DeliveryDetails.js

@ -62,7 +62,7 @@ export const columnList = [
{
prop: 'type',
label: '配送类型',
type: 2,
type: 3,
values: '',
width: '150',
checkarr: [],
@ -73,7 +73,7 @@ export const columnList = [
{
prop: 'kind',
label: '配送种类',
type: 2,
type: 3,
values: '',
width: '150',
checkarr: [],

4
src/option/reportforms/InventoryReceipt.js

@ -17,7 +17,7 @@ export const columnList = [
{
prop: 'warehouseName',
label: '仓库',
type: 2,
type: 3,
values: '',
width: '180',
checkarr: [],
@ -39,7 +39,7 @@ export const columnList = [
{
prop: 'serviceType',
label: '类型',
type: 2,
type: 3,
values: '',
width: '150',
checkarr: [],

2
src/option/reportforms/Selfpickupreport.js

@ -28,7 +28,7 @@ export const columnList = [
{
prop: 'warehouse',
label: '仓库',
type: 2,
type: 3,
values: '',
width: '150',
checkarr: [],

1
src/views/reportforms/DeliveryCustomers.vue

@ -385,6 +385,7 @@ const searchChange = () => {
//
const searchReset=()=>{
TopQuery.value = {};
TopQuery.value.warehouseNameRange=[]
queryCarn.value = {};
getrain(queryCarn.value)
}

117
src/views/reportforms/DeliveryDetails.vue

@ -57,13 +57,23 @@
placeholder="多个配送司机请用逗号隔开"
/>
</el-form-item>
<el-form-item label="客户">
<el-form-item label="客户名称">
<el-input
v-model="TopQuery.consigneeRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个客户请用逗号隔开"
placeholder="多个客户名称请用逗号隔开"
/>
</el-form-item>
<el-form-item label="运单收货人">
<el-input
v-model="TopQuery.consigneeNameRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个运单收货人请用逗号隔开"
/>
</el-form-item>
</div>
@ -150,12 +160,37 @@ import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue
import { columnList } from '@/option/reportforms/DeliveryDetails.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util';
import { $_getdetails, $_exportDetails } from '@/api/reportforms/index.js';
import { $_getdetails, $_exportDetails,$_getMyWarehouseList } from '@/api/reportforms/index.js';
import { ElMessageBox } from 'element-plus';
import { downloadXls } from '@/utils/util';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
const queryCarn=ref({});//
const TopQuery=ref({});//
const warehouseList = ref([]); //
const DeliveryTypeList = ref([
{
label: '商配',
value: '商配',
},
{
label: '市配',
value: '市配',
},
]); //
//
const DeliverygenericList = ref([
{
label: '自主配送',
value: '自主配送',
},
{
label: '三方配送',
value: '三方配送',
},
]); //
const details = reactive({
/** 是否开启搜索 */
search: false,
@ -297,12 +332,20 @@ const btnsc = val => {
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
getrain();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchReset=()=>{
TopQuery.value = {};
TopQuery.value.warehouseNameRange=[]
queryCarn.value = {};
getrain();
}
//
const searchChange = () => {
//
@ -338,7 +381,16 @@ const searchChange = () => {
}else{
delete queryCarn.value.consigneeRange;
}
//
if(TopQuery.value.consigneeNameRange){
queryCarn.value.consigneeNameRange = TopQuery.value.consigneeNameRange
}else{
delete queryCarn.value.consigneeNameRange;
}
//
if(TopQuery.value.consigneeNameRange){
queryCarn.value.consigneeNameRange = TopQuery.value.consigneeNameRange
}
console.log(queryCarn.value, '顶部搜索触发');
getrain(queryCarn.value)
// details.search = false; //
@ -383,15 +435,37 @@ function updateDictionary(targetArray, dictionaryType) {
}
//
const onLoad = () => {
// updateDictionary(columnList[3].checkarr, 'pc_work_order'); //
warehouseList.value = [];
columnList.find(res => res.label == '配送类型').checkarr = [];
columnList.find(res => res.label == '配送类型').checkarr = DeliveryTypeList.value;
columnList.find(res => res.label == '配送种类').checkarr = [];
columnList.find(res => res.label == '配送种类').checkarr = DeliverygenericList.value;
columnList.find(res => res.label == '仓库').checkarr = [];
columnList.find(res => res.label == '仓库').checkarr = warehouseList.value;
console.log(columnList, 'columnList');
//
$_getMyWarehouseList().then(res => {
console.log(res, '仓库列表');
if (res.data.data.length)
res.data.data.forEach(item => {
warehouseList.value.push({
value: item.name,
label: item.name,
});
});
});
};
onLoad();
//
const getrain = () => {
const getrain = (val) => {
let data = {
current: details.page.currentPage,
size: details.page.pageSize,
...details.query,
...val,
};
details.loadingObj.list = true;
$_getdetails(data)
@ -455,4 +529,35 @@ const exportReport = () => {
display: flex;
flex-direction: column;
}
:deep(.el-fr-d) {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.el_top_left {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
.el-form-item {
align-items: flex-start;
}
.el-form-item__content {
align-items: flex-start;
height: 100%;
.el-date-editor {
height: 29px !important;
}
}
}
}
:deep(.el-btn) {
margin-right: 0;
display: flex;
width: 100%;
justify-content: flex-end;
.el-form-item__content {
justify-content: flex-end;
}
}
</style>

4
src/views/reportforms/DeliveryTrainNumber.vue

@ -166,6 +166,7 @@ import { $_getrain, $_exportTrain, $_getMyWarehouseList } from '@/api/reportform
import { ElMessageBox } from 'element-plus';
import { downloadXls } from '@/utils/util';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
const warehouseList = ref([]); //
const queryCarn=ref({});//
const DeliveryTypeList = ref([
@ -191,7 +192,7 @@ const DeliverygenericList = ref([
value: '三方配送',
},
]); //
import dayjs from 'dayjs';
const TopQuery = ref({}); //
const details = reactive({
/** 是否开启搜索 */
@ -377,6 +378,7 @@ const searchChange = () => {
//
const searchReset=()=>{
TopQuery.value={}
TopQuery.value.warehouseNameRange=[]
queryCarn.value={}
getrain(queryCarn.value)
}

880
src/views/reportforms/InventoryReceipt.vue

@ -1,366 +1,550 @@
<template>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<el-row v-if="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="el-fr-d">
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<el-row v-if="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="TopQuery" class="el-fr-d">
<!-- 查询按钮 -->
<div class="el_top_left">
<el-form-item label="入库时间">
<el-date-picker
v-model="TopQuery.time"
type="datetimerange"
start-placeholder="开始日期"
end-placeholder="结束日期"
format="YYYY-MM-DD"
date-format="YYYY/MM/DD"
time-format="A"
@change="Toptiem"
/>
</el-form-item>
</el-form>
</el-row>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="exportReport">
<el-icon><Download /></el-icon></el-button
<el-form-item label="仓库">
<el-select
multiple
v-model="TopQuery.warehouseNameRange"
filterable
placeholder="多选仓库搜索"
style="width: 240px"
>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
<el-option
v-for="item in warehouseList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="商场名称">
<el-input
v-model="TopQuery.marketNameRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个商场名称请用逗号隔开"
/>
</el-form-item>
<el-form-item label="物料编码">
<el-input
v-model="TopQuery.cargoNumberRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个物料编码请用逗号隔开"
/>
</el-form-item>
<el-form-item label="物料名称">
<el-input
v-model="TopQuery.descriptionGoodsRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个物料名称请用逗号隔开"
/>
</el-form-item>
<el-form-item label="订单自编码">
<el-input
v-model="TopQuery.orderCodeRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个订单自编码请用逗号隔开"
/>
</el-form-item>
<el-form-item label="包条码">
<el-input
v-model="TopQuery.packageCodeRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个包条码请用逗号隔开"
/>
</el-form-item>
</div>
</el-row>
<!-- 首页表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-button @click="view(slotProps.scope)">查看</el-button>
</div>
</template>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="exportReport">
<el-icon><Download /></el-icon></el-button
>
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
></edittablehead>
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/reportforms/InventoryReceipt.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util';
import { $_exportInStocks ,$_getinStocks} from '@/api/reportforms/index.js';
import { ElMessageBox } from 'element-plus';
import { downloadXls } from '@/utils/util';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
const details = reactive({
/** 是否开启搜索 */
search: false,
/** 表格搜索条件 */
query: {},
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<!-- 首页表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-button @click="view(slotProps.scope)">查看</el-button>
</div>
</template>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
></edittablehead>
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/reportforms/InventoryReceipt.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util';
import { $_exportInStocks, $_getinStocks, $_getMyWarehouseList } from '@/api/reportforms/index.js';
import { ElMessageBox } from 'element-plus';
import { downloadXls } from '@/utils/util';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
const queryCarn = ref({}); //
const TopQuery = ref({});
const warehouseList = ref([]); //
const DeliveryType=ref([{
label:'商配',
value:'商配'
},
{
label:'市配',
value:'市配'
},
{
label:'自提',
value:'自提'
},
{
label:'三方中专',
value:'三方中专'
},
]);//
const details = reactive({
/** 是否开启搜索 */
search: false,
/** 表格搜索条件 */
query: {},
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList,
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 包件明细 */
packageOrderListlVisited: false,
/** 二维码 */
QRCodeVisible: false,
/** 修改客户信息 */
editClientInfoVisible: false,
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 包明细 */
packageOrderListlVisited: false,
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList,
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 包件明细 */
packageOrderListlVisited: false,
/** 二维码 */
QRCodeVisible: false,
/** 修改客户信息 */
editClientInfoVisible: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 包明细 */
packageOrderListlVisited: false,
},
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
} = toRefs(details);
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
* */
const setnewcolum = (newarr, headarr, type) => {
if (type == 1) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
};
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
processRowProperty(index, row, details);
getrain();
};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
getrain();
};
/** 表格表头输入框搜索 */
const btnsc = val => {
console.log(val);
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
getrain();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchReset=()=>{
TopQuery.value={};
TopQuery.value.warehouseNameRange=[]
queryCarn.value={};
getrain();
}
//
const searchChange = () => {
console.log(TopQuery.value, 'TopQuery.value');
//
if (TopQuery.value.time) {
queryCarn.value.startWarehousingTime = dayjs(TopQuery.value.time[0]).format(
'YYYY-MM-DD HH:mm:ss'
); //
queryCarn.value.endWarehousingTime = dayjs(TopQuery.value.time[1]).format(
'YYYY-MM-DD HH:mm:ss'
); //
} else {
delete queryCarn.value.startWarehousingTime;
delete queryCarn.value.endWarehousingTime;
}
//
if (TopQuery.value.warehouseNameRange.length) {
queryCarn.value.warehouseNameRange = TopQuery.value.warehouseNameRange.join(',');
} else {
delete queryCarn.value.warehouseNameRange;
}
//
if (TopQuery.value.marketNameRange) {
queryCarn.value.marketNameRange = TopQuery.value.marketNameRange;
} else {
delete queryCarn.value.marketNameRange;
}
//
if (TopQuery.value.cargoNumberRange) {
queryCarn.value.cargoNumberRange = TopQuery.value.cargoNumberRange;
} else {
queryCarn.value.cargoNumberRange = TopQuery.value.cargoNumberRange;
}
//
if (TopQuery.value.descriptionGoodsRange) {
queryCarn.value.descriptionGoodsRange = TopQuery.value.descriptionGoodsRange;
} else {
queryCarn.value.descriptionGoodsRange;
}
//
if (TopQuery.value.orderCodeRange) {
queryCarn.value.orderCodeRange = TopQuery.value.orderCodeRange;
} else {
delete queryCarn.value.orderCodeRange;
}
//
if (TopQuery.value.examineUserRange) {
queryCarn.value.examineUserRange = TopQuery.value.examineUserRange;
} else {
delete queryCarn.value.examineUserRange;
}
//
if (TopQuery.value.packageCodeRange) {
queryCarn.value.packageCodeRange = TopQuery.value.packageCodeRange;
} else {
delete queryCarn.value.packageCodeRange;
}
console.log(queryCarn.value, '顶部搜索触发');
getrain(queryCarn.value);
// details.search = false; //
};
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
};
//
const searchChangeS = () => {
details.columnList.forEach(item => {
item.values = '';
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
} = toRefs(details);
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
* */
const setnewcolum = (newarr, headarr, type) => {
if (type == 1) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
};
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
processRowProperty(index, row, details);
getrain();
};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
getrain();
};
/** 表格表头输入框搜索 */
const btnsc = val => {
console.log(val);
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
details.search = false; //
};
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
};
//
const searchChangeS = () => {
details.columnList.forEach(item => {
item.values = '';
details.search = false; //
getrain();
};
//
const searchHide = () => {
console.log(details);
details.search = !details.search;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
};
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
});
});
details.search = false; //
getrain();
};
//
const searchHide = () => {
console.log(details);
details.search = !details.search;
});
}
//
const onLoad = () => {
warehouseList.value = [];
columnList.find(res => res.label == '仓库').checkarr = [];
columnList.find(res => res.label == '类型').checkarr = [];
columnList.find(res => res.label == '仓库').checkarr = warehouseList.value;
columnList.find(res => res.label == '类型').checkarr = DeliveryType.value;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
};
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
console.log(columnList, 'columnList');
//
$_getMyWarehouseList().then(res => {
console.log(res, '仓库列表');
if (res.data.data.length)
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
warehouseList.value.push({
value: item.name,
label: item.name,
});
});
});
}
//
const onLoad = () => {
// updateDictionary(columnList[3].checkarr, 'pc_work_order'); //
};
onLoad();
//
const getrain = () => {
let data = {
current: details.page.currentPage,
size: details.page.pageSize,
...details.query,
};
details.loadingObj.list = true;
$_getinStocks(data)
.then(res => {
console.log(res, '当前参数1');
details.page.total = res.data.data.total;
details.data = res.data.data.records;
})
.catch(() => {})
.finally(() => {
details.loadingObj.list = false;
});
});
};
onLoad();
//
const getrain = val => {
let data = {
current: details.page.currentPage,
size: details.page.pageSize,
...details.query,
...val,
};
getrain();
//
const exportReport = () => {
ElMessageBox.confirm('是否导出报表?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
details.loadingObj.list = true;
$_getinStocks(data)
.then(res => {
console.log(res, '当前参数1');
details.page.total = res.data.data.total;
details.data = res.data.data.records;
})
.then(() => {
details.loadingObj.list = true;
let data = {
...details.query,
};
$_exportInStocks(data)
.then(res => {
downloadXls(res.data, `库存入库明细报表数据.xlsx`);
})
.catch(() => {
})
.finally(() => {
details.loadingObj.list = false;
})
})
.catch(() => {});
};
</script>
<style scoped lang="scss">
.ElBtnClass button {
border: none;
padding: 0;
background-color: transparent;
}
:deep(.el-card) {
height: 100%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
margin-bottom: 10px;
}
.avue-crud {
height: 100%;
display: flex;
flex-direction: column;
}
</style>
.catch(() => {})
.finally(() => {
details.loadingObj.list = false;
});
};
getrain();
//
const exportReport = () => {
ElMessageBox.confirm('是否导出报表?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
details.loadingObj.list = true;
let data = {
...details.query,
};
$_exportInStocks(data)
.then(res => {
downloadXls(res.data, `库存入库明细报表数据.xlsx`);
})
.catch(() => {})
.finally(() => {
details.loadingObj.list = false;
});
})
.catch(() => {});
};
</script>
<style scoped lang="scss">
.ElBtnClass button {
border: none;
padding: 0;
background-color: transparent;
}
:deep(.el-card) {
height: 100%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
margin-bottom: 10px;
}
.avue-crud {
height: 100%;
display: flex;
flex-direction: column;
}
</style>

155
src/views/reportforms/Selfpickupreport.vue

@ -3,15 +3,75 @@
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<el-row v-if="search">
<!-- 搜索模块 -->
<el-row v-if="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="el-fr-d">
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
<el-form :inline="true" :model="TopQuery" class="el-fr-d">
<!-- 查询按钮 -->
<div class="el_top_left">
<el-form-item label="提货扫描时间">
<el-date-picker
v-model="TopQuery.time"
type="datetimerange"
start-placeholder="开始日期"
end-placeholder="结束日期"
format="YYYY-MM-DD"
date-format="YYYY/MM/DD"
time-format="A"
/>
</el-form-item>
</el-form>
<el-form-item label="仓库">
<el-select
multiple
v-model="TopQuery.warehouseNameRange"
filterable
placeholder="多选仓库搜索"
style="width: 240px"
>
<el-option
v-for="item in warehouseList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="收货单位">
<el-input
v-model="TopQuery.consigneeUnitRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个收货单位请用逗号隔开"
/>
</el-form-item>
<el-form-item label="订单自编号">
<el-input
v-model="TopQuery.orderCodeRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个订单自编号请用逗号隔开"
/>
</el-form-item>
<el-form-item label="文员复核人">
<el-input
v-model="TopQuery.examineUserRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个文员复核人请用逗号隔开"
/>
</el-form-item>
</div>
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<!-- 控件模块 -->
@ -90,11 +150,14 @@
import { columnList } from '@/option/reportforms/Selfpickupreport.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util';
import { $_getSelfpickup,$_exportSelfpickup } from '@/api/reportforms/index.js';
import { $_getSelfpickup,$_exportSelfpickup,$_getMyWarehouseList } from '@/api/reportforms/index.js';
import { ElMessageBox } from 'element-plus';
import { downloadXls } from '@/utils/util';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
const queryCarn=ref({});//
const TopQuery=ref({})
const warehouseList = ref([]); //
const details = reactive({
/** 是否开启搜索 */
search: false,
@ -236,16 +299,61 @@
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
getrain();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
details.search = false; //
};
//
const searchReset=()=>{
TopQuery.value = {};
TopQuery.value.warehouseNameRange=[]
queryCarn.value = {};
getrain();
}
//
const searchChange = () => {
console.log(TopQuery.value,'TopQuery.value');
//
if (TopQuery.value.time) {
queryCarn.value.startScanTime = dayjs(TopQuery.value.time[0]).format('YYYY-MM-DD HH:mm:ss'); //
queryCarn.value.endScanTime = dayjs(TopQuery.value.time[1]).format('YYYY-MM-DD HH:mm:ss'); //
}else{
delete queryCarn.value.startScanTime
delete queryCarn.value.endScanTime
}
//
if (TopQuery.value.warehouseNameRange.length) {
queryCarn.value.warehouseNameRange = TopQuery.value.warehouseNameRange.join(',');
}else{
delete queryCarn.value.warehouseNameRange;
}
//
if(TopQuery.value.consigneeUnitRange){
queryCarn.value.consigneeUnitRange = TopQuery.value.consigneeUnitRange
}else{
delete queryCarn.value.consigneeUnitRange;
}
//
if(TopQuery.value.orderCodeRange){
queryCarn.value.orderCodeRange = TopQuery.value.orderCodeRange
}else{
delete queryCarn.value.orderCodeRange;
}
//
if(TopQuery.value.examineUserRange){
queryCarn.value.examineUserRange = TopQuery.value.examineUserRange
}else{
delete queryCarn.value.examineUserRange;
}
console.log(queryCarn.value, '顶部搜索触发');
getrain(queryCarn.value)
// details.search = false; //
};
//
const sizeChange = val => {
details.page.pageSize = val;
@ -286,15 +394,32 @@
}
//
const onLoad = () => {
// updateDictionary(columnList[3].checkarr, 'pc_work_order'); //
};
warehouseList.value = [];
columnList.find(res => res.label == '仓库').checkarr = [];
columnList.find(res => res.label == '仓库').checkarr = warehouseList.value;
console.log(columnList, 'columnList');
//
$_getMyWarehouseList().then(res => {
console.log(res, '仓库列表');
if (res.data.data.length)
res.data.data.forEach(item => {
warehouseList.value.push({
value: item.name,
label: item.name,
});
});
});
};
onLoad();
//
const getrain = () => {
const getrain = (val) => {
let data = {
current: details.page.currentPage,
size: details.page.pageSize,
...details.query,
...val,
};
details.loadingObj.list = true;
$_getSelfpickup(data)

Loading…
Cancel
Save