qb 11 months ago
parent
commit
e42b74a050
  1. 12
      src/api/financialsector/index.js
  2. 13
      src/option/Pricesystem/index.js
  3. 8
      src/option/financialsector/index.js
  4. 34
      src/views/Pricesystem/ListOfPriceSystems.vue
  5. 21
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  6. 18
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  7. 56
      src/views/financialsector/CustomerBaseprice.vue
  8. 10
      src/views/warehouse/warehousesignedorder/distributionStockArticle.vue

12
src/api/financialsector/index.js

@ -60,3 +60,15 @@ export const $_tempDelpriceTemplate = params => {
params, params,
}); });
}; };
// 导出模板
export const $_getexport= params => {
return request({
url: '/api/logpm-basicdata/basicdataPrice/export',
method: 'get',
params,
responseType: 'blob',
});
};

13
src/option/Pricesystem/index.js

@ -41,7 +41,7 @@ export const columnList = [
{ {
prop: 'serviceType', prop: 'serviceType',
label: '服务类型', label: '服务类型',
type: 2, type: 1,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
@ -55,7 +55,16 @@ export const columnList = [
type: 3, type: 3,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [
{
label: '未维护',
value: '未维护',
},
{
label: '已维护',
value: '已维护',
}
],
fixed: false, fixed: false,
sortable: true, sortable: true,
head: false, head: false,

8
src/option/financialsector/index.js

@ -39,7 +39,7 @@ export const columnList = [
{ {
prop: 'serviceType', prop: 'serviceType',
label: '服务类型', label: '服务类型',
type: 2, type: 1,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
@ -50,7 +50,7 @@ export const columnList = [
{ {
prop: 'createTime', prop: 'createTime',
label: '创建时间', label: '创建时间',
type: 4, type: 1,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
@ -61,7 +61,7 @@ export const columnList = [
{ {
prop: 'userName', prop: 'userName',
label: '创建人', label: '创建人',
type: 4, type: 1,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],
@ -72,7 +72,7 @@ export const columnList = [
{ {
prop: 'templateType', prop: 'templateType',
label: '模板类型', label: '模板类型',
type: 4, type: 1,
values: '', values: '',
width: '150', width: '150',
checkarr: [], checkarr: [],

34
src/views/Pricesystem/ListOfPriceSystems.vue

@ -20,7 +20,7 @@
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button> <el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button> <el-button icon="el-icon-delete" @click="searchReset"> </el-button>
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> <el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> <el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button> <el-button icon="Search" @click="searchHide" circle></el-button>
@ -30,7 +30,7 @@
<!-- 列表模块 --> <!-- 列表模块 -->
<tablecmt <tablecmt
class="tableNode" class="tableNode"
:columnList="columnList" :columnList="details.columnList"
:tableData="details.data" :tableData="details.data"
:loading="loadingObj.list" :loading="loadingObj.list"
@inputTxt="inputsc" @inputTxt="inputsc"
@ -62,9 +62,9 @@
background background
@size-change="sizeChange" @size-change="sizeChange"
@current-change="currentChange" @current-change="currentChange"
:current-page="page.currentPage" :current-page="page.current"
:page-sizes="[30, 50, 80, 120]" :page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize" :page-size="page.size"
layout="total, sizes, prev, pager, next, jumper" layout="total, sizes, prev, pager, next, jumper"
:total="page.total" :total="page.total"
> >
@ -224,8 +224,8 @@ const details = reactive({
drawerShow: false, drawerShow: false,
/** 分页参数 */ /** 分页参数 */
page: { page: {
currentPage: 1, current: 1,
pageSize: 50, size: 50,
total: 0, total: 0,
}, },
/** 弹出层显示 */ /** 弹出层显示 */
@ -283,7 +283,8 @@ const inputsc = (index, row) => {
if (!index) delete details.query[row.prop]; if (!index) delete details.query[row.prop];
processRowProperty(index, row, details); processRowProperty(index, row, details);;
onLoad()
}; };
/** 表格表头时间选择 */ /** 表格表头时间选择 */
@ -296,6 +297,7 @@ const timesc = (index, row) => {
if (!index) { if (!index) {
delete details.query[row.prop]; delete details.query[row.prop];
} }
onLoad()
}; };
/** 表格表头输入框搜索 */ /** 表格表头输入框搜索 */
@ -305,23 +307,35 @@ const btnsc = val => {
/** 表格表头下拉框选择 */ /** 表格表头下拉框选择 */
const selectsc = (index, row) => { const selectsc = (index, row) => {
processRowProperty(index, row, details); processRowProperty(index, row, details);
onLoad()
}; };
/** 表格表头复选框选择 */ /** 表格表头复选框选择 */
const selectionChange = list => { const selectionChange = list => {
console.log(list); console.log(list);
details.selectionList = list; details.selectionList = list;
}; };
// //
const searchChange = () => { const searchChange = () => {
details.search = false; // onLoad()
}; };
//
const searchReset=()=>{
details.columnList.forEach(item=>{
item.values=''
})
details.query={}
onLoad()
}
// //
const sizeChange = val => { const sizeChange = val => {
page.value.pageSize = val; details.page.size = val;
onLoad()
}; };
/** 页码改变执行的回调 */ /** 页码改变执行的回调 */
const currentChange = val => { const currentChange = val => {
page.value.currentPage = val; details.page.current = val;
onLoad();
}; };
// //
const searchChangeS = () => { const searchChangeS = () => {

21
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -1748,7 +1748,16 @@ export default {
sortable: true, sortable: true,
head: false, head: false,
}, },
{
label: '物料名称',
prop: 'materialName',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{ {
prop: 'trainNumber', prop: 'trainNumber',
label: '入库车次', label: '入库车次',
@ -2650,6 +2659,16 @@ export default {
fixed: false, fixed: false,
sortable: true, sortable: true,
}, },
{
label: '物料名称',
prop: 'materialName',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{ {
label: '仓库', label: '仓库',
prop: 'warehouse', prop: 'warehouse',

18
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -977,8 +977,11 @@ async function Info() {
let data = []; // let data = []; //
console.log(res, '备货人员'); console.log(res, '备货人员');
console.log(res.data.data); console.log(res.data.data);
if(res.data.data.length){
if(res.data.data && res.data.data.length){
console.log(res.data.data[0].deptId, '关键参数'); console.log(res.data.data[0].deptId, '关键参数');
deptId.value = res.data.data[0].deptId; //TGG deptId.value = res.data.data[0].deptId; //TGG
}
// , // ,
if (res.data.data.length > 0) { if (res.data.data.length > 0) {
res.data.data.forEach(item => { res.data.data.forEach(item => {
@ -986,11 +989,11 @@ async function Info() {
data.push({ realName: item.realName, id: item.id }); data.push({ realName: item.realName, id: item.id });
}); });
} }
console.log(data, '备货人员'); console.log(data, '备货人员');
StockInfo.value.StockPersonnel = data; StockInfo.value.StockPersonnel = data;
});
// //
await $_stockUpInfo({ $_stockUpInfo({
params: deptId.value, params: deptId.value,
}).then(res => { }).then(res => {
console.log(res, '备货区域'); console.log(res, '备货区域');
@ -998,11 +1001,16 @@ async function Info() {
console.log(StockInfo.value.StockUpArea, ' StockInfo.value.StockUpArea'); console.log(StockInfo.value.StockUpArea, ' StockInfo.value.StockUpArea');
}); });
// //
await getListTeamInfo(deptId.value).then(res => { getListTeamInfo(deptId.value).then(res => {
console.log(res.data.data, '装卸班组'); console.log(res.data.data, '装卸班组');
StockInfo.value.UnloadingTeam = res.data.data; // StockInfo.value.UnloadingTeam = res.data.data; //
StockInfo.value.LoadingTeam = res.data.data; // StockInfo.value.LoadingTeam = res.data.data; //
}); });
}
});
// - // -
await getDictionaryBiz('tripartite_source').then(res => { await getDictionaryBiz('tripartite_source').then(res => {
StockInfo.value.OutsourcingSources = res.data.data; StockInfo.value.OutsourcingSources = res.data.data;
@ -1731,6 +1739,8 @@ onMounted(() => {
// wrapLoading.value = true; // // wrapLoading.value = true; //
editLoading.value = true; // editLoading.value = true; //
getDeliveryList(route.query.id).then(res => { getDeliveryList(route.query.id).then(res => {
console.log(res,'页面信息');
// //
if (res.data.data.kind == 2) { if (res.data.data.kind == 2) {
if(!res.data.data.deliveryTripartiteVO){ if(!res.data.data.deliveryTripartiteVO){
@ -1739,7 +1749,7 @@ onMounted(() => {
DataSubmit.value.tripartite.distributionCompany = res.data.data.distributionCompany; // DataSubmit.value.tripartite.distributionCompany = res.data.data.distributionCompany; //
DataSubmit.value.tripartite.driverName = res.data.data.deliveryTripartiteVO.driverName; // DataSubmit.value.tripartite.driverName = res.data.data.deliveryTripartiteVO.driverName; //
DataSubmit.value.tripartite.vehicleNum = res.data.data.deliveryTripartiteVO.vehicleNum; // DataSubmit.value.tripartite.vehicleNum = res.data.data.deliveryTripartiteVO.vehicleNum; //
DataSubmit.value.tripartite.deliveryFee = res.data.data.deliveryTripartiteVO.deliveryFee; // DataSubmit.value.tripartite.deliveryFee = res.data.data.deliveryTripartiteVO.deliveryFee || 0; //
DataSubmit.value.tripartite.driverPhone = res.data.data.deliveryTripartiteVO.driverPhone; // DataSubmit.value.tripartite.driverPhone = res.data.data.deliveryTripartiteVO.driverPhone; //
numTab.value[0].name = '1'; // numTab.value[0].name = '1'; //
numTab.value[1].name = '0'; numTab.value[1].name = '0';

56
src/views/financialsector/CustomerBaseprice.vue

@ -7,9 +7,7 @@
<!-- 查询模块 --> <!-- 查询模块 -->
<el-form :inline="true" :model="query" class="el-fr-d"> <el-form :inline="true" :model="query" class="el-fr-d">
<!-- 查询按钮 --> <!-- 查询按钮 -->
<el-form-item class="el-btn"> <el-form-item class="el-btn"> </el-form-item>
</el-form-item>
</el-form> </el-form>
</el-row> </el-row>
@ -25,11 +23,17 @@
<el-button type="primary" @click="Deletetemplate"> <el-button type="primary" @click="Deletetemplate">
<el-icon><Delete /></el-icon> </el-button <el-icon><Delete /></el-icon> </el-button
> >
<el-button type="primary" @click="exporTemp">
<el-icon><Download /></el-icon></el-button
>
<el-button type="primary" @click="ImportTemplate">
<el-icon><Download /></el-icon></el-button
>
</div> </div>
<!-- 头部右侧按钮模块 --> <!-- 头部右侧按钮模块 -->
<div class="avue-crud__right"> <div class="avue-crud__right">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button> <el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button> <el-button icon="el-icon-delete" @click="searchReset"> </el-button>
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> <el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> <el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button> <el-button icon="Search" @click="searchHide" circle></el-button>
@ -42,7 +46,7 @@
<!-- 列表模块 --> <!-- 列表模块 -->
<tablecmt <tablecmt
class="tableNode" class="tableNode"
:columnList="columnList" :columnList="details.columnList"
:tableData="data" :tableData="data"
:loading="loadingObj.list" :loading="loadingObj.list"
@inputTxt="inputsc" @inputTxt="inputsc"
@ -93,12 +97,15 @@
<script setup> <script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/financialsector/index.js'; import { columnList } from '@/option/financialsector/index.js';
import { $_getpriceTemplate, $_deletelpriceTemplate } from '@/api/financialsector/index'; // import {
$_getpriceTemplate,
$_deletelpriceTemplate,
$_getexport,
} from '@/api/financialsector/index'; //
import { getDictionaryBiz } from '@/api/system/dict'; // import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight, deepClone } from '@/utils/util'; import { processRowProperty, setNodeHeight, deepClone, downloadXls } from '@/utils/util';
import functions from '@/utils/functions.js'; import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus'; import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex'; import { useStore } from 'vuex';
import dayjs from 'dayjs'; import dayjs from 'dayjs';
const $router = useRouter(); // const $router = useRouter(); //
@ -251,15 +258,17 @@ const selectionChange = list => {
}; };
// //
const searchChange = () => { const searchChange = () => {
details.search = false; // priceTemplate();
}; };
// //
const sizeChange = val => { const sizeChange = val => {
page.value.pageSize = val; details.page.pageSize = val;
priceTemplate();
}; };
/** 页码改变执行的回调 */ /** 页码改变执行的回调 */
const currentChange = val => { const currentChange = val => {
page.value.currentPage = val; details.page.currentPage = val;
priceTemplate();
}; };
// //
const searchChangeS = () => { const searchChangeS = () => {
@ -290,6 +299,7 @@ const priceTemplate = () => {
let data = { let data = {
current: details.page.currentPage, current: details.page.currentPage,
size: details.page.pageSize, size: details.page.pageSize,
...details.query,
}; };
details.loadingObj.list = true; details.loadingObj.list = true;
$_getpriceTemplate(data) $_getpriceTemplate(data)
@ -303,6 +313,14 @@ const priceTemplate = () => {
details.loadingObj.list = false; details.loadingObj.list = false;
}); });
}; };
//
const searchReset = () => {
details.columnList.forEach(item => {
item.values = '';
});
details.query = {};
priceTemplate();
};
priceTemplate(); priceTemplate();
// //
const Addtemplate = () => { const Addtemplate = () => {
@ -359,6 +377,22 @@ const Modifytemplate = row => {
path: '/financialsector/FinanceHome', path: '/financialsector/FinanceHome',
}); });
}; };
//
const exporTemp = () => {
ElMessageBox.confirm('是否导出价格模板', 'Warning', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
$_getexport().then(res => {
downloadXls(res.data, `价格模板.xlsx`);
});
});
};
//
const ImportTemplate=()=>{
}
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

10
src/views/warehouse/warehousesignedorder/distributionStockArticle.vue

@ -299,7 +299,17 @@ const informationClick = (item, row) => {
} }
) )
.then(() => { .then(() => {
let data= row.info.find(res=>res.reservationCode ==cleanedItem)
$router.push({
path: '/distribution/signfor/distributionSignforedt',
query: {
id: data.id,
reservationId:data.reservationId,
name: `${data.reservationCode}待签收查看`,
isZero: 0,
},
});
}) })
.catch(() => { .catch(() => {

Loading…
Cancel
Save