Browse Source

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

dev-warehouse
0.0 2 years ago
parent
commit
9479e38f0a
  1. 3
      .gitignore
  2. 17
      src/api/distribution/distributionDeliveryList.js
  3. 22
      src/api/distribution/distributionStockArticle.js
  4. 50
      src/api/distribution/distrilbutionBillLading.js
  5. 45
      src/option/distribution/distrilbutionBillLading.js
  6. 38
      src/router/views/index.js
  7. 3
      src/views/basicdata/driverArtery/basicdataDriverArtery2.vue
  8. 15
      src/views/distribution/deliverylist/distributionDeliveryList.vue
  9. 1
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  10. 35
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  11. 197
      src/views/distribution/inventory/distrilbutionBillLading.vue
  12. 1
      src/views/distribution/reservation/reservationFrom.vue
  13. 4
      src/views/distribution/stockup/distributionStockup.vue
  14. 63
      src/views/distribution/stockup/distributionStockupDetails.vue
  15. 748
      src/views/distribution/stockup/distributionStockupDetailsSelf.vue
  16. 568
      src/views/distribution/stockup/distributionStockupDiscuss.vue
  17. 245
      src/views/distribution/stockup/distributionStockupMarket.vue
  18. 273
      src/views/distribution/stockup/distributionStockupSelf.vue
  19. 1922
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  20. 48
      src/views/distribution/turndelivery/deliveryInfo.vue
  21. 1318
      src/views/reservation/order_list.vue

3
.gitignore vendored

@ -1,9 +1,9 @@
.DS_Store
node_modules
/dist
vite.config.js
/tests/e2e/videos/
/tests/e2e/screenshots/
vite.config.js
# local env files
.env.local
@ -16,6 +16,7 @@ yarn-error.log*
# lock files
package-lock.json
yarn.lock
# editor directories and files

17
src/api/distribution/distributionDeliveryList.js

@ -122,3 +122,20 @@ export const update = (row) => {
})
}
/**
* 查询配送任务信息
* @param id
* @returns {AxiosPromise}
*/
export const getDeliveryList = (id) => {
return request({
url: '/api/logpm-distribution/deliveryList/getDeliveryList',
method: 'get',
params: {
id,
}
})
}

22
src/api/distribution/distributionStockArticle.js

@ -11,6 +11,28 @@ export const getList = (current, size, params) => {
}
})
}
/**
* 查询客户的订单列表
* @param {} current
* @param {*} size
* @param {*} params
* @returns
*/
export const getClientList = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockArticle/clientList',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getListOne = (current, size, params) => { //查询订单数据
return request({
url: '/api/logpm-distribution/distributionStockArticle/list',

50
src/api/distribution/distrilbutionBillLading.js

@ -52,6 +52,56 @@ export const add = (row) => {
})
}
export const addAssign = (row) => {
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/saveAssign',
method: 'post',
data: row
})
}
export const getDetailStockupOwn = (id) => {
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/detailOwn',
method: 'get',
params: {
id
}
})
}
export const getDetailReservationOwn = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/detailReservationOwn',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetailOrderOwn = (current, size, params) => { //订单
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/detailOrderOwn',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetailInventoryOwn = (current, size, params) => { //库存品
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/inventoryOwn',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const update = (row) => {
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/submit',

45
src/option/distribution/distrilbutionBillLading.js

@ -101,8 +101,23 @@ export default {
prop: "second",
},
{
label: "品名",
prop: "material",
label: "三级品",
prop: "thirdProduct",
},
{
label: "物料名称",
prop: "materialName",
},{
label: "物料单位",
prop: "materialUnit",
},
{
label: "所在库位",
prop: "goodsAllocation",
},
{
label: "所在托盘",
prop: "pallet",
},
{
label: "总件数",
@ -214,10 +229,10 @@ export default {
label: "商城名称",
prop: "mallName",
},
{
label: "品分类",
prop: "category",
},
// {
// label: "品分类",
// prop: "category",
// },
{
label: "货物名称",
prop: "descriptionGoods",
@ -227,17 +242,17 @@ export default {
prop: "cargoUnit",
},
{
label: "总件数",
label: "可用数量",
prop: "quantityStock",
},
{
label: "物流车次",
prop: "despatch",
},
{
label: "工厂车次",
prop: "factory",
},
// {
// label: "物流车次",
// prop: "despatch",
// },
// {
// label: "工厂车次",
// prop: "factory",
// },

38
src/router/views/index.js

@ -548,6 +548,25 @@ export default [
},
],
},
{
path: '/distribution/turndelivery/deliveryDiscuss',
component: Layout,
redirect: '/distribution/turndelivery/deliveryDiscuss',
children: [
{
path: '/distribution/turndelivery/deliveryDiscuss',
name: '配送查看',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/turndelivery/deliverylist/deliveryDiscuss.vue'),
},
],
},
{
path: '/basicdata/brand/basicdataTripartiteMall',
component: Layout,
@ -681,6 +700,25 @@ export default [
},
],
},
{
path: '/distribution/stockup/distributionStockupDetailsSelf',
component: Layout,
redirect: '/stockup/distributionStockupDetailsSelf',
children: [
{
path: '/distribution/stockup/distributionStockupDetailsSelf',
name: '备货明细',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/stockup/distributionStockupDetailsSelf.vue'),
},
],
},
// {
// path: '/distribution/inventory/distributionPrints',
// component: Layout,

3
src/views/basicdata/driverArtery/basicdataDriverArtery2.vue

@ -276,8 +276,7 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="从业资格证编号" label-width="120px" prop="employeeQualificationNub">

15
src/views/distribution/deliverylist/distributionDeliveryList.vue

@ -51,6 +51,7 @@
>
<template #default="slotProps">
<el-button size="small" @click="editsolt(slotProps.scope)"> </el-button>
<el-button size="small" @click="handleEdit(slotProps.scope)"> </el-button>
<el-button size="small" @click="costadd(slotProps.scope)"> </el-button>
</template>
</tablecmt>
@ -104,7 +105,6 @@
v-model="dialogVisible"
title="增值服务"
width="30%"
:model="addvalue"
:before-close="handleClose">
<el-form-item label="增值服务" prop="freightMark">
<el-checkbox-group v-model="form.addvalueType" @change="handleCheckedCitiesChange">
@ -710,11 +710,14 @@ export default {
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
handleEdit (scope) {
const { row} = scope;
this.$router.push({
path: '/distribution/turndelivery/deliveryDiscuss',
query: {
id: row.id,
name: row.trainNumber +'-编辑配送'
}
});
},
handleView (row) {

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

@ -96,6 +96,7 @@
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)"> </el-button>
<el-button size="small" @click="handleEdit(slotProps.scope)"> </el-button>
<el-button type="primary" text icon="el-icon-view" @click="handleOne(row)" v-if="deliverydata.deliveryNumber > deliverydata.deliveryNumber"> </el-button>
<el-button type="primary" text icon="el-icon-view" @click="handleSign(row)" v-if="row.signingStatus=='未签收' "> </el-button>
</template>

35
src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue

@ -614,12 +614,25 @@ export default {
sortable: true,
},
{
prop: 'state',
prop: 'stateName',
label: '状态',
type: 2,
type: 3,
values: '',
width: '150',
checkarr: [],
checkarr: [
{
value: '1',
label: '待预约 ',
},
{
value: '2',
label: '已预约',
}, {
value: '7 ',
label: '已完成',
},
],
fixed: false,
sortable: true,
},
@ -1027,8 +1040,12 @@ export default {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}else if (this.selectionList.length > 1){
}else {
this.getSock();
}
/* if (this.selectionList.length > 1){
}else if (this.selectionList.length < 2){
//
let params ={
@ -1048,7 +1065,7 @@ export default {
}else{
this.getSock();
}
}
}*/
},
getSock(){
this.$confirm("确定将选择的订单转为库存品吗?", {
@ -1183,7 +1200,6 @@ export default {
break;
case '2':
this.dialogFormService = true;
break;
case '3':
@ -1418,6 +1434,13 @@ export default {
}else{
i.notification = '已通知'
}
if(i.state == '1'){
i.stateName = '待预约'
}else if(i.state == '2'){
i.stateName = '已预约'
}else if(i.state == '7'){
i.stateName = '已完成'
}
});
this.data = data.records;
this.loading = false;

197
src/views/distribution/inventory/distrilbutionBillLading.vue

@ -121,7 +121,7 @@
</el-dialog>
</div>-->
<div class="avue-crud" :style="`height:`+ height+';overflow:auto;' " >
<el-form :disabled="view" ref="form" :model="form" label-width="80px">
<el-form :disabled="view" ref="form" :model="form" label-width="100px" :rules="rules" >
<!-- 表单字段 -->
<el-row :gutter="20">
<el-col :span="12">
@ -173,7 +173,7 @@
</el-row>
<el-row :gutter="20">
<el-col :span="24">
<el-form-item label="费用" prop="certificateType">
<el-form-item label="费用" prop="freightMark">
<el-checkbox-group v-model="form.freightMark" @change="handleCheckedCitiesChange">
<el-checkbox style="width: 16%;margin-bottom: 3%"
v-for="(item,index) in clientType"
@ -181,7 +181,7 @@
:label="item.dictKey"
>{{item.dictValue}}
<el-input type="number" v-model="item.remark" placeholder="请输入费用" :disabled = "this.form?.freightMark?.indexOf(item.dictKey) == -1"
@change="textbox($event,index)" style="width: 70%"/>
@change="textbox($event,index)" style="width: 70%"/>
</el-checkbox>
</el-checkbox-group>
@ -223,7 +223,7 @@
<!-- </el-table-column>-->
</el-table>
</el-tab-pane>
<el-tab-pane label="标准品">
<el-tab-pane label="库存品">
<el-button type="primary" text icon="el-icon-view" @click="handleAddView(row)">新增</el-button>
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
@ -341,9 +341,10 @@
</div>
</div>
</div>
<el-dialog v-model="dialogFormVisible" title="添加标准品" style="width: 80% ">
<el-dialog v-model="dialogFormVisible" title="添加库存品" style="width: 80% ">
<el-table ref="table" v-loading="loading"
@selection-change="selectionChangeStock"
@row-click="handleHighlightChangeTable"
:data="dataOwn"
style="width: 100%"
:border="option.border">
@ -360,6 +361,12 @@
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="添加数量" :width="220" align="center">
<template #="{row}">
<el-input v-model="row.inventoryQuantity" @blur="handleNumberRange($event,row)" ></el-input>
</template>
</el-table-column>
</el-table>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
@ -453,7 +460,33 @@ export default {
// name: 'food2.jpeg',
// url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
// },
]
],
rules: {
pickUpTime: [
{ type: 'date', required: true, message: '请选择提货时间', trigger: 'change' }
],
consignee: [
{ required: true, message: '请输入提货人', trigger: 'blur' },
// { min: 3, max: 5, message: ' 3 5 ', trigger: 'blur' }
],
pickUpPlate: [
{ required: true, message: '请输入提货车牌号', trigger: 'change' }
],
deliveryDocument: [
{ required: true, message: '请输入提货证件码', trigger: 'change' },
// { min: 3, max: 5, message: ' 3 5 ', trigger: 'blur' }
],
certificateType: [
{ required: true, message: '请选择证件类型', trigger: 'change' }
],
freightMark: [
{ required: true, message: '请选择费用', trigger: 'change' }
],
totalCost: [
{ required: true, message: '请输入费用合计', trigger: 'change' }
],
},
}
},
mounted () {
@ -516,16 +549,23 @@ export default {
},
//
callFordelivery(inde){
this.dialogFormVisible = false;
let isa= false;
this.selectionListStock.some( i =>{
// console.log("asdgfasdv",i);
console.log("asdgfasdv",i);
if(parseInt(i.inventoryQuantity) > parseInt(i.quantityStock) ){
// this.$message.warning("");
isa= true;
return ;
}
let a = this.data.filter((ele) => ele.id == i.id ).length >= 1
// console.log("asdgfasdv",a);
if(!a){
this.data.push(i);
}
})
if(!isa){
this.dialogFormVisible = false;
}
},
//
handleNumberRange(e,row) {
@ -536,8 +576,8 @@ export default {
e.target.value = parseInt(e.target.value); //
}
if((e.target.value > row.quantityStock )) {
this.$message.error('数量不能大于订单数')
e.target.value = row.quantityStock;
this.$message.error('数量不能大于可用数量')
// e.target.value = row.quantityStock;
return
}
}
@ -556,6 +596,15 @@ export default {
textbox(e,index) {
console.log("e,index",e,index);
this.costList[index+1] = e;
//
this.costList.forEach( i =>{
if(!! this.form.totalCost){
this.form.totalCost = parseInt(this.form.totalCost)+parseInt(i);
}else{
this.form.totalCost =parseInt(i);
}
})
},
handleCheckedCitiesChange(value) {
console.log(">>>>>>>",value );
@ -577,7 +626,6 @@ export default {
this.height = this.setPx(document.body.clientHeight - 160);
//
getDictionaryBiz('delivery_cost').then(res => {
this.clientType = res.data.data;
}); //
getDictionaryBiz('certificate_type').then(res => {
@ -619,66 +667,71 @@ export default {
}
},
async handleSubmit () {
if (!this.form.id) {
let fei = new Map();
await this.bianLier(this.costListName,this.clientType,this.costList,fei);
this.form.fei = Object.fromEntries(fei);
this.form.stockArticleId = this.$route.query.id;
this.form.stockDTOList = this.data;
let o = [];
if(this.fileListClerk.length > 0){
this.fileListClerk.forEach( i =>{
// console.log("iiii",i);
let num = {};
num.state = "2";
num.name = i.response.data.name;
num.url = i.response.data.link;
o.push(num);
});
this.$refs.form.validate( async valid=>{
if (valid) {
if (!this.form.id) {
let fei = new Map();
await this.bianLier(this.costListName,this.clientType,this.costList,fei);
this.form.fei = Object.fromEntries(fei);
this.form.stockArticleId = this.$route.query.id;
this.form.stockDTOList = this.data;
let o = [];
if(this.fileListClerk.length > 0){
this.fileListClerk.forEach( i =>{
// console.log("iiii",i);
let num = {};
num.state = "2";
num.name = i.response.data.name;
num.url = i.response.data.link;
o.push(num);
});
}else if(this.fileListLibrary.length > 0){
this.fileListLibrary.forEach( i =>{
let num = {};
num.state = "3";
num.name = i.response.data.name;
num.url = i.response.data.link;
o.push(num);
});
}else if(this.fileListLibrary.length > 0){
this.fileListLibrary.forEach( i =>{
let num = {};
num.state = "3";
num.name = i.response.data.name;
num.url = i.response.data.link;
o.push(num);
});
}else if(this.fileListSell.length > 0){
this.fileListSell.forEach( i =>{
// console.log(",.,.,.,.",i);
let num = {};
num.state = "1";
num.name = i.response.data.name;
num.url = i.response.data.link;
o.push(num);
});
}
this.form.printList = o.length > 0 ? o : [];
}else if(this.fileListSell.length > 0){
this.fileListSell.forEach( i =>{
// console.log(",.,.,.,.",i);
let num = {};
num.state = "1";
num.name = i.response.data.name;
num.url = i.response.data.link;
o.push(num);
});
}
this.form.printList = o.length > 0 ? o : [];
console.log("this.form",this.form);
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.contextmenuFlag = false;
this.$store.commit('DEL_TAG_CURRENT');
this.$router.push(this.tagWel);
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
}
})
console.log("this.form",this.form);
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.contextmenuFlag = false;
this.$store.commit('DEL_TAG_CURRENT');
this.$router.push(this.tagWel);
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd () {
this.title = '新增'
@ -751,6 +804,11 @@ export default {
selectionChange (list) {
this.selectionList = list;
},
handleHighlightChangeTable(row) {
if(!row.disabled){
this.$refs.table.toggleRowSelection(row);
}
},
selectionChangeStock (list) {
this.selectionListStock = list;
},
@ -801,6 +859,7 @@ export default {
this.loading = true;
this.query.stockArticleId = this.$route.query.id;
getListOwn(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
console.log("包件信息>>>>",res.data.data);
const dataList = res.data.data;
this.page.total = dataList.total;
this.dataList = dataList.records;

1
src/views/distribution/reservation/reservationFrom.vue

@ -1030,7 +1030,6 @@
this.form.deliveryPhone = phone;
this.form.deliveryType = typeService;
this.form.deliveryAddress = address;
this.orderData = data;
});
}

4
src/views/distribution/stockup/distributionStockup.vue

@ -24,8 +24,8 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派叉车司机</el-button>
</div>
<!-- 头部右侧按钮模块 -->

63
src/views/distribution/stockup/distributionStockupDetails.vue

@ -595,12 +595,41 @@ export default {
// this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
if(!!this.leibiao && this.leibiao == 'library'){
this.page.currentPage = currentPage;
this.getOrderList(this.page);
}else if(!!this.leibiao && this.leibiao == 'outbound'){
this.page1.currentPage = currentPage;
this.getStockUpParcelsList(this.page1);
}
else if(!!this.leibiao && this.leibiao == 'enter'){
this.page2.currentPage = currentPage;
this.getInventoryList(this.page2);
}
else {
this.page3.currentPage = currentPage;
this.getReservationList(this.page3);
}
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
if(!!this.leibiao && this.leibiao == 'library'){
this.page.pageSize = pageSize;
this.getOrderList(this.page);
}else if(!!this.leibiao && this.leibiao == 'outbound'){
this.page1.pageSize = pageSize;
this.getStockUpParcelsList(this.page1);
}
else if(!!this.leibiao && this.leibiao == 'enter'){
this.page2.pageSize = pageSize;
this.getInventoryList(this.page2);
}
else{
this.page3.pageSize = pageSize;
this.getReservationList(this.page3);
}
},
onLoad (page, params = {}) {
this.loading = true;
@ -622,14 +651,14 @@ export default {
deliveryTypeName
});
this.loading = false;
this.getReservationList();
this.getReservationList(page);
// console.log(">>>>>",this.data[0],deliveryTypeName,deliveryWayName,serveTypeName);
this.selectionClear();
});
} ,
//
async getReservationList(){
let a =await getDetailReservationOwn(this.page3.currentPage,this.page3.pageSize,{id :this.$route.query.id});
async getReservationList(page){
let a =await getDetailReservationOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
// console.log("......",a.data);
const data = a.data.data;
this.data3 = data.records;
@ -644,8 +673,8 @@ export default {
this.selectionClear();
},
//
async getStockUpParcelsList(){
let a = await getParcelListOwn(this.page1.currentPage,this.page1.pageSize,{id :this.$route.query.id});
async getStockUpParcelsList(page){
let a = await getParcelListOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
console.log("包件...",a.data);
const data = a.data.data;
this.data1 = data.records;
@ -660,8 +689,8 @@ export default {
this.selectionClear();
},
//
async getOrderList(){
let a =await getDetailOrderOwn(this.page.currentPage,this.page.pageSize,{id :this.$route.query.id});
async getOrderList(page){
let a =await getDetailOrderOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
console.log("订单...",a.data);
const data = a.data.data;
this.dataPare = data.records;
@ -676,18 +705,18 @@ export default {
this.selectionClear();
},
//
async getInventoryList(){
let a =await getDetailInventoryOwn(this.page.currentPage,this.page.pageSize,{id :this.$route.query.id});
console.log("订单...",a.data);
async getInventoryList(page){
let a =await getDetailInventoryOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
console.log("库存品...",a.data);
const data = a.data.data;
this.dataPare = data.records;
this.dataPare.forEach(i =>{
this.data2 = data.records;
this.data2.forEach(i =>{
let b = this.stockupStatusList.find( a => a.dictKey == i.stockupStatus);
if(!!b){
i.stockupStatusName = b.dictValue;
}
})
this.page.total = a.data.data.total;
this.page2.total = a.data.data.total;
this.loading = false;
this.selectionClear();
},

748
src/views/distribution/stockup/distributionStockupDetailsSelf.vue

@ -0,0 +1,748 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="margin-bottom: 5%">
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
:data="data"
height="20%"
style="width: 100%"
:border="option.border">
<template v-for="(item,index) in option.columnBasic">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
</el-table>
</el-row>
<!-- <el-row style="margin-bottom: 5%">
&lt;!&ndash; 列表模块 &ndash;&gt;
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
height="20%"
style="width: 100%"
:border="option.border">
<template v-for="(item,index) in option.columnTakeOver">
&lt;!&ndash; table字段 &ndash;&gt;
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
</el-table>
</el-row>
<el-row style="margin-bottom: 5%">
&lt;!&ndash; 列表模块 &ndash;&gt;
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
style="width: 100%"
:border="option.border">
<template v-for="(item,index) in option.columnStockUp">
&lt;!&ndash; table字段 &ndash;&gt;
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
</el-table>
</el-row>-->
<el-row>
<el-tabs
type="card"
class="demo-tabs"
style="width: 100%"
v-model="activeName"
@tab-click="handleClick"
>
<el-tab-pane label="预约列表" name="reservation">
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data3"
:height="height"
style="width: 100%"
:border="option.border">
<!-- <el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>-->
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center">
</el-table-column>
<template v-for="(item,index) in option.columnReservation">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>&ndash;&gt;-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page3.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page3.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page3.total">
</el-pagination>
</div>
</el-tab-pane>
<el-tab-pane label="订单列表" name="library">
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="dataPare"
:height="height"
style="width: 100%"
:border="option.border">
<!-- <el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>-->
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center">
</el-table-column>
<template v-for="(item,index) in option.columnStockOrder">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>&ndash;&gt;-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-tab-pane>
<el-tab-pane label="备货包件" name="outbound">
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data1"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center">
</el-table-column>
<template v-for="(item,index) in option.columnStockingBag">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
</el-table>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page1.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page1.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page1.total">
</el-pagination>
</div>
</el-tab-pane>
<el-tab-pane label="库存品" name="enter">
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data2"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="序号" type="index" width="70" align="center">
</el-table-column>
<template v-for="(item,index) in option.columnInventory">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
</el-table>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page2.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page2.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page2.total">
</el-pagination>
</div>
</el-tab-pane>
</el-tabs>
</el-row>
<!-- <el-row>
<div class="avue-crud__pagination" style="width:100%">
&lt;!&ndash; 分页模块 &ndash;&gt;
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>-->
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer">
<el-form-item label="姓名" :label-width="formLabelWidth">
<el-input v-model="formCustomer.name" autocomplete="off" />
</el-form-item>
<el-form-item label="电话" :label-width="formLabelWidth">
<el-input v-model="formCustomer.phone" autocomplete="off" />
</el-form-item>
<el-form-item label="地址" :label-width="formLabelWidth">
<el-input
v-model="formCustomer.address"
:rows="2"
type="textarea"
placeholder="请填写地址"
/>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getDetailStockupOwn,
getDetailReservationOwn, getDetailOrderOwn, getDetailInventoryOwn
} from '@/api/distribution/distrilbutionBillLading';
import option from "@/option/distribution/distributionStockup";
import { mapGetters } from "vuex";
import { getDictionaryBiz } from '@/api/system/dict';
import { getParcelListOwn } from '@/api/distribution/distributionParcelList';
export default {
data () {
return {
height: 0,
activeName: 'reservation',
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
page1: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
page2: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
page3: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
formCall: {},//
formService: {}, //
formCustomer: {}, //
//
selectionList: [],
//
option: option,
//
data: [],
data1: [],
data2: [],
dataPare: [],
data3: [],
distributionType: [],
serveTypeList: [],
deliveryWayList: [],
stockupStatusList: [],
dialogTableVisible: false,
dialogFormVisible: false,
dialogFormCustomer: false,
dialogFormService: false,
formLabelWidth: '120px',
handler:true, //
trade:false, //
municipal:true, //
taker:true, //
}
},
mounted () {
this.init();
},
watch:{
'$route.query.id':{
handler(newVal, oldVal) {
// console.log(newVal, oldVal);
this.init();
},
deep: true,
immediate: true
}
},
computed: {
...mapGetters(["permission"]),
permissionList() {
return {
addBtn: this.validData(this.permission.basicdataBrandCategory_add, false),
viewBtn: this.validData(this.permission.basicdataBrandCategory_view, false),
delBtn: this.validData(this.permission.basicdataBrandCategory_delete, false),
editBtn: this.validData(this.permission.basicdataBrandCategory_edit, false)
};
},
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
handleClick (tab, event) {
console.log(tab, event)
console.log(tab.props.name);
this.leibiao = tab.props.name;
if( this.leibiao == 'library'){
//
this.getOrderList(this.page);
}else if( this.leibiao == 'outbound'){
//
this.getStockUpParcelsList(this.page1);
}else if( this.leibiao == 'enter'){
//
this.getInventoryList(this.page2);
}
},
init () {
this.height = this.setPx(document.body.clientHeight - 570);
getDictionaryBiz('distribution_type').then(res => { //
this.distributionType = res.data.data;
});
getDictionaryBiz('delivery_way').then(res => { //
this.deliveryWayList = res.data.data;
});
getDictionaryBiz('stockup_status').then(res => { //
this.stockupStatusList = res.data.data;
});
getDictionaryBiz('addvalue_serve_type').then(res => { //
this.serveTypeList = res.data.data;
});
this.onLoad(this.page);
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
//
handleEntire(){
this.handler = true;
this.taker = true;
this.trade = false;
},
//
handleTrade(){
// this.handler = true;
this.trade = true;
},
//
handleMunicipal(){
// this.handler = true;
// this.taker = true;
},
//
handlePickUpStore(){
this.loading = true;
// console.log("this.query",this.query);
let params = {};
this.query.typeService = '1';
getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
this.handler = false;
this.taker = false;
});
}, //
handleInform(index){
this.loading = true;
// console.log("this.query",this.query);
let params = {};
this.query.typeService = '1';
switch (index) {
case '1':
this.query.notification = index;
break;
case '2':
this.query.notification = index;
break;
}
this.query.typeService = '1';
getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
this.handler = false;
this.taker = false;
});
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
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) {
// console.log("",list);
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
// this.$refs.table.clearSelection();
},
currentChange (currentPage) {
if(!!this.leibiao && this.leibiao == 'library'){
this.page.currentPage = currentPage;
this.getOrderList(this.page);
}else if(!!this.leibiao && this.leibiao == 'outbound'){
this.page1.currentPage = currentPage;
this.getStockUpParcelsList(this.page1);
}
else if(!!this.leibiao && this.leibiao == 'enter'){
this.page2.currentPage = currentPage;
this.getInventoryList(this.page2);
}
else {
this.page3.currentPage = currentPage;
this.getReservationList(this.page3);
}
},
sizeChange (pageSize) {
if(!!this.leibiao && this.leibiao == 'library'){
this.page.pageSize = pageSize;
this.getOrderList(this.page);
}else if(!!this.leibiao && this.leibiao == 'outbound'){
this.page1.pageSize = pageSize;
this.getStockUpParcelsList(this.page1);
}
else if(!!this.leibiao && this.leibiao == 'enter'){
this.page2.pageSize = pageSize;
this.getInventoryList(this.page2);
}
else{
this.page3.pageSize = pageSize;
this.getReservationList(this.page3);
}
},
onLoad (page, params = {}) {
// this.loading = true;
this.query.id = this.$route.query.id;
getDetailStockupOwn(this.$route.query.id).then(res => {
// console.log("",res.data.data);
const data = res.data.data;
this.data[0] = data;
const { serveType, deliveryWay, deliveryType } = this.data[0];
const serveTypes = serveType.split(',');
const deliveryWays = deliveryWay.split(',');
const deliveryTypes = deliveryType.split(',');
const serveTypeName = this.getOwnServer(serveTypes, '', this.serveTypeList) || null;
const deliveryWayName = this.getOwnServer(deliveryWays, '', this.deliveryWayList) || null;
const deliveryTypeName = this.getOwnServer(deliveryTypes, '', this.distributionType) || null;
Object.assign(this.data[0], {
serveTypeName,
deliveryWayName,
deliveryTypeName
});
this.loading = false;
this.getReservationList(page);
// console.log(">>>>>",this.data[0],deliveryTypeName,deliveryWayName,serveTypeName);
this.selectionClear();
});
} ,
//
async getReservationList(page){
let a =await getDetailReservationOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
// console.log("......",a.data);
const data = a.data.data;
this.data3 = data.records;
this.data3.forEach(i =>{
let b = this.stockupStatusList.find( a => a.dictKey == i.stockupStatus);
if(!!b){
i.stockupStatusName = b.dictValue;
}
})
this.page3.total = a.data.data.total;
this.loading = false;
this.selectionClear();
},
//
async getStockUpParcelsList(page){
let a = await getParcelListOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
console.log("包件...",a.data);
const data = a.data.data;
this.data1 = data.records;
this.data1.forEach(i =>{
let b = this.stockupStatusList.find( a => a.dictKey == i.stockupStatus);
if(!!b){
i.stockupStatusName = b.dictValue;
}
})
this.page1.total = a.data.data.total;
this.loading = false;
this.selectionClear();
},
//
async getOrderList(page){
let a =await getDetailOrderOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
console.log("订单...",a.data);
const data = a.data.data;
this.dataPare = data.records;
this.dataPare.forEach(i =>{
let b = this.stockupStatusList.find( a => a.dictKey == i.stockupStatus);
if(!!b){
i.stockupStatusName = b.dictValue;
}
})
this.page.total = a.data.data.total;
this.loading = false;
this.selectionClear();
},
//
async getInventoryList(page){
let a =await getDetailInventoryOwn(page.currentPage,page.pageSize,{id :this.$route.query.id});
console.log("库存品...",a.data);
const data = a.data.data;
this.data2 = data.records;
this.data2.forEach(i =>{
let b = this.stockupStatusList.find( a => a.dictKey == i.stockupStatus);
if(!!b){
i.stockupStatusName = b.dictValue;
}
})
this.page2.total = a.data.data.total;
this.loading = false;
this.selectionClear();
},
//
getOwnServer(row,name,list){
row.forEach( i =>{
let a = list.find( s => s.dictKey == i);
name += a.dictValue+' ';
});
return name;
},
}
};
</script>
<style scoped>
.el-button--text {
margin-right: 15px;
}
.el-select {
width: 300px;
}
.el-input {
width: 300px;
}
.dialog-footer button:first-child {
margin-right: 10px;
}
</style>

568
src/views/distribution/stockup/distributionStockupDiscuss.vue

@ -1,7 +1,7 @@
<template>
<basic-container>
<div class="avue-crud">
<!-- <el-row :hidden="!search" style="padding: 6px 18px">
<!--<el-row :hidden="!search" style="padding:6px 18px">
&lt;!&ndash; 查询模块 &ndash;&gt;
<el-form :inline="true" :model="query">
<el-form-item label="备货状态:">
@ -11,10 +11,7 @@
<el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>
</el-form-item>
<el-form-item label="指派状态;1-未指派、2-已指派:">
<el-input
v-model="query.assignStatus"
placeholder="请输入指派状态;1-未指派、2-已指派"
></el-input>
<el-input v-model="query.assignStatus" placeholder="请输入指派状态;1-未指派、2-已指派"></el-input>
</el-form-item>
&lt;!&ndash; 查询按钮 &ndash;&gt;
<el-form-item>
@ -27,20 +24,16 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain
> </el-button
>
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift(row)"
>指派叉车司机</el-button
>
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派叉车司机</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<!-- <el-button icon="el-icon-search" @click="onLoad">全部</el-button>-->
<!-- <el-button icon="el-icon-refresh" @click="getStockUp('2')">已备货</el-button>
<el-button icon="el-icon-search" @click="getStockUp('1')">待备货</el-button>
-->
<!-- <el-button icon="el-icon-search" @click="onLoad" >全部</el-button>-->
<!-- <el-button icon="el-icon-refresh" @click="getStockUp('2')" >已备货</el-button>
<el-button icon="el-icon-search" @click="getStockUp('1')" >待备货</el-button>-->
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
@ -60,120 +53,101 @@
@selection="selectionChange"
>
<template #default="slotProps">
<el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)"
>查看</el-button
>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)"
>编辑</el-button
>
<el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">编辑</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">取消</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">打印</el-button>
</template>
</tablecmt>
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width: 100%">
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>
<el-dialog v-model="dialogFormCustomer" title="指派叉车">
<el-form :model="form">
<el-form-item label="叉车司机" :label-width="formLabelWidth">
<el-select v-model="form.forklift" clearable placeholder="请选择叉车司机">
<el-select v-model="form.forkliftId" clearable placeholder="请选择叉车司机" @change="getForklift($event,'1')">
<el-option
v-for="item in forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="装卸班组" :label-width="formLabelWidth">
<el-select v-model="form.loader" clearable placeholder="请选择装卸班组">
<el-select v-model="form.loaderId" clearable placeholder="请选择装卸班组" @change="getForklift($event,'2')">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="备货区域" :label-width="formLabelWidth">
<el-select v-model="form.stockupArea" clearable placeholder="请选择备货区编号">
<el-form-item label="备货区域" :label-width="formLabelWidth" >
<el-select v-model="form.goodsAreaId" clearable placeholder="请选择备货区编号" @change="getForklift($event,'3')">
<el-option
v-for="item in goodsAreaIdData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button>
</span>
<span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button>
</span>
</template>
</el-dialog>
<!-- 表单模块 -->
<el-dialog
:title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body
>
<el-dialog :title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
<el-form-item label="备货时间" prop="stockupDate">
<el-date-picker
v-model="form.stockupDate"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择备货时间"
></el-date-picker>
<el-date-picker v-model="form.stockupDate" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择备货时间"></el-date-picker>
</el-form-item>
<el-form-item label="备货人" prop="stockupUser">
<el-input v-model="form.stockupUser" placeholder="请输入备货人" />
<el-input v-model="form.stockupUser" placeholder="请输入备货人"/>
</el-form-item>
<el-form-item label="备货状态" prop="stockupStatus">
<el-input v-model="form.stockupStatus" placeholder="请输入备货状态" />
<el-input v-model="form.stockupStatus" placeholder="请输入备货状态"/>
</el-form-item>
<el-form-item label="备货区" prop="stockupArea">
<el-input v-model="form.stockupArea" placeholder="请输入备货区" />
<el-input v-model="form.stockupArea" placeholder="请输入备货区"/>
</el-form-item>
<el-form-item label="指派状态;1-未指派、2-已指派" prop="assignStatus">
<el-select
v-model="form.assignStatus"
clearable
placeholder="请选择指派状态;1-未指派、2-已指派"
>
<el-select v-model="form.assignStatus" clearable placeholder="请选择指派状态;1-未指派、2-已指派">
<el-option
v-for="item in assignStatusData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="备货库位" prop="stockipAllocation">
<el-input v-model="form.stockipAllocation" placeholder="请输入备货库位" />
<el-input v-model="form.stockipAllocation" placeholder="请输入备货库位"/>
</el-form-item>
<el-form-item label="备货区编号" prop="goodsAreaId">
<el-select v-model="form.goodsAreaId" clearable placeholder="请选择备货区编号">
@ -181,8 +155,7 @@
v-for="item in goodsAreaIdData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
@ -192,8 +165,7 @@
v-for="item in forkliftData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
@ -203,34 +175,21 @@
v-for="item in loaderData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey"
>
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="确认完成备货时间" prop="fixTime">
<el-date-picker
v-model="form.fixTime"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择确认完成备货时间"
></el-date-picker>
<el-date-picker v-model="form.fixTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择确认完成备货时间"></el-date-picker>
</el-form-item>
<el-form-item label="指派时间" prop="assignTime">
<el-date-picker
v-model="form.assignTime"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择指派时间"
></el-date-picker>
<el-date-picker v-model="form.assignTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择指派时间"></el-date-picker>
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"
> </el-button
>
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"> </el-button>
<el-button icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
@ -246,25 +205,18 @@
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getListUser,
addAssign,
} from '@/api/distribution/distributionStockup';
import { getList, getDetail, add, update, remove,getListUser,addAssign } from "@/api/distribution/distributionStockup";
import { getPostList } from '@/api/system/post';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getListOwn, getUser } from '@/api/system/user';
import option from '@/option/distribution/distributionStockup';
import { mapGetters } from 'vuex';
import { getListOwn,getUser } from '@/api/system/user';
import option from "@/option/distribution/distributionStockup";
import { mapGetters } from "vuex";
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import dayjs from 'dayjs';
import { getDictionaryBiz } from '@/api/system/dict';
export default {
data() {
data () {
return {
columnList: [
{
@ -429,7 +381,7 @@ export default {
label: '操作',
type: 6,
values: '',
width: '160',
width: '280',
checkarr: [],
fixed: 'right',
hide: true,
@ -457,7 +409,7 @@ export default {
page: {
currentPage: 1,
pageSize: 10,
total: 40,
total: 40
},
//
form: {},
@ -470,97 +422,68 @@ export default {
forkliftData: [],
loaderData: [],
goodsAreaIdData: [],
distributionType: [],
deptId: '',
};
}
},
mounted() {
mounted () {
this.init();
/**
/**
* 初始化获取本地缓存的编辑隐藏的列表
* 固定搭配不能更改
*/
let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList');
let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList');
let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist');
if (checkListnewarr) {
let newarr = this.$functions.getStorage(window.location.pathname);
if (newarr) {
this.columnList.map(item => {
item.head = false;
});
checkListnewarr.map(ite => {
newarr.map(ite => {
this.columnList.map(item => {
if (ite == item.label) {
item.head = true;
}
});
});
}else{
let arr=[]
this.columnList.map(item => {
if(item.head){
arr.push(item.label)
}
});
this.$functions.setStorage(window.location.pathname+'checkList',arr)
}
if (flexListnewarr) {
this.columnList.map(item => {
item.fixed = false;
});
flexListnewarr.map(ite => {
this.columnList.map(item => {
if (ite == item.label) {
if(item.type==6){
item.fixed = 'right';
}else{
item.fixed = true;
}
}
});
});
}else{
let arr=[]
this.columnList.map(item => {
if(item.fixed){
arr.push(item.label)
}
});
this.$functions.setStorage(window.location.pathname+'flexList',arr)
}
if (sortlistnewarr) {
this.columnList.map(item => {
item.sortable = false;
});
sortlistnewarr.map(ite => {
this.columnList.map(item => {
if (ite == item.label) {
item.sortable = true;
}
});
});
}else{
let arr=[]
this.columnList.map(item => {
if(item.sortable){
arr.push(item.label)
}
});
this.$functions.setStorage(window.location.pathname+'sortlist',arr)
}
},
computed: {
...mapGetters(['permission']),
ids() {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
},
return ids.join(",");
}
},
methods: {
showdrawer(value) {
this.drawerShow = value;
//
getForklift(row,ty){
console.log("执行了了了了",row);
switch (ty){
case '1':
let x = this.forkliftData.find(i =>i.dictKey==row);
// console.log("xxx",x);
this.form.forkliftName = x.dictValue;
break;
case '2':
let b = this.loaderData.find(i =>i.dictKey == row)
this.form.loaderName = b.dictValue;
break;
case '3':
let f = this.goodsAreaIdData.find(i =>i.dictKey == row)
console.log("fff",f);
this.form.stockupArea = f.dictValue;
break;
}
},
showdrawer(value){
this.drawerShow=value
},
/**
* 弹窗的勾选回调用于更改头部数组
@ -596,23 +519,54 @@ export default {
},
selectsc(index, row) {
console.log(index, row);
if(row.prop =='typeServiceName'){
this.query['typeService'] = index;
}else if(row.prop =='stockupStatusName'){
this.query["stockupStatus"] = index;
}else if(row.prop =='assignStatusName'){
this.query["assignStatus"] = index;
}else{
this.query[row.prop] = index;
}
// this.query[row.prop] = index;
this.onLoad(this.page);
},
timesc(index, row) {
console.log(index, row);
if (!!index){
index = dayjs(index).format('YYYY-MM-DD');
}
this.query[row.prop] = index
if (!index){
delete this.query[row.prop]
}
this.onLoad(this.page);
},
inputsc(index, row) {
console.log(index, row);
/* if(row.prop =='typeServiceName'){
this.query['typeService'] = index;
}else if(row.prop =='stockupStatusName'){
this.query["stockupStatus"] = index;
}else if(row.prop =='assignStatusName'){
this.query["assignStatus"] = index;
}else{
this.query[row.prop] = index;
}*/
this.query[row.prop] = index;
this.onLoad(this.page);
},
//
getStockUp(row) {
console.log('row', row);
getStockUp(row){
console.log("row",row);
let params = {};
switch (row) {
case '1':
params.stockupStatus = '2';
params.stockupStatus = '2'
break;
case '2':
params.stockupStatus = '3';
params.stockupStatus = '3'
break;
}
getList(this.page.currentPage, this.page.pageSize, params).then(res => {
@ -624,105 +578,127 @@ export default {
});
},
//
async getFork() {
async getFork(){
let ides = '';
let ide = {};
await getListUser().then(res => {
let ide = { };
let b = false;
await getListUser().then(res =>{ //
// console.log("res>>>",res.data.data);
if(res.data.data.userName != 'admin'){
b = true;
}
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
});
await getPostList(ides).then(res => {
// console.log(">>>>",res.data.data);
res.data.data.forEach(i => {
if (i.postName == '叉车') {
})
await getPostList(ides).then(res =>{ //
// console.log(">>>>",res.data.data);
res.data.data.forEach(i =>{
if(i.postName == "叉车"){
ide = i;
}
});
});
})
})
// console.log("ied>>>>>",ide);
let params = {
postId: ide.id, //
let params={
// postId: ide.id, //
deptId: this.deptId, //
// roleId: '', //
};
getListOwn(Object.assign(params, this.query)).then(res => {
}
if(b){
// console.log("");
params.postId = ide.id;//
}
// console.log("",params);
getListOwn(Object.assign(params, this.query)).then(res =>{ //
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
res.data.data.forEach( i =>{
let a ={
dictKey: i.id,
dictValue: i.name,
dictValue: i.name
};
fo.push(a);
});
this.forkliftData = fo;
});
})
await this.getStorageArea();
await this.getTeam();
},
//
async getTeam() {
let params = {
department: this.deptId,
};
getListTeam(
this.page.currentPage,
this.page.pageSize,
Object.assign(params, this.query)
).then(res => {
async getTeam(){
let params ={
department: this.deptId
}
getListTeam(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res =>{
// console.log(">><><",res.data.data.records);
let fo = [];
res.data.data.records.forEach(i => {
let a = {
let fo= [];
res.data.data.records.forEach(i =>{
let a= {
dictKey: i.id,
dictValue: i.name + '-' + i.groupName,
};
dictValue: i.name +'-'+i.groupName
}
fo.push(a);
});
this.loaderData = fo;
});
})
},
//
async getStorageArea() {
let params = {
department: this.deptId,
};
stockUp(params).then(res => {
async getStorageArea(){
let params ={
department: this.deptId
}
stockUp(params).then(res =>{
// console.log("res>>>",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let fo =[];
res.data.data.forEach(i =>{
let v = {
dictKey: i.id,
dictValue: i.name + '-' + i.headline,
};
fo.push(v);
});
dictValue: i.name +'-'+i.headline
}
fo.push(v)
})
this.goodsAreaIdData = fo;
});
})
},
handleForklift() {
/**
* 指派叉车查询的司机
*/
handleForklift(){
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
this.$message.warning("请选择至少一条数据");
return;
}
this.dialogFormCustomer = true;
this.getFork();
this.getTeam();
let a = false ;
this.selectionList.some(i =>{
if(i.assignStatus == "2"){
a = true;
return;
}
})
// = this.selectionList.findIndex(i => i.assignStatus == 2);
if(!a){
this.dialogFormCustomer = true;
this.getFork();
this.getTeam()
}else{
this.$message.warning("已指派,请勿重复指派!!!")
}
},
//
callFordelivery() {
callFordelivery(){
this.form.ids = this.ids;
addAssign(this.form).then(res => {
console.log("数据》》》",this.form);
addAssign(this.form).then(res =>{
this.$message({
type: 'success',
message: '操作成功!',
type: "success",
message: "操作成功!"
});
this.onLoad(this.page);
this.dialogFormCustomer = false;
});
})
},
init() {
init () {
this.height = this.setPx(document.body.clientHeight - 340);
getDictionaryBiz('distribution_type').then(res => {
// console.log("8908098080",res.data.data);
@ -735,25 +711,25 @@ export default {
});
this.onLoad(this.page);
},
searchHide() {
searchHide () {
this.search = !this.search;
},
searchChange() {
searchChange () {
this.onLoad(this.page);
},
searchReset() {
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
type: "success",
message: "操作成功!"
});
});
} else {
@ -761,41 +737,50 @@ export default {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
type: "success",
message: "操作成功!"
});
});
})
}
},
handleAdd() {
this.title = '新增';
this.form = {};
this.box = true;
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit(row) {
this.title = '编辑';
this.box = true;
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看';
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
handleView (row) {
// this.title = ''
// this.view = true;
// this.box = true;
// getDetail(row.id).then(res => {
// this.form = res.data.data;
// });
this.$router.push({
path: '/distribution/stockup/distributionStockupDetails',
query: {
id : row.row.id,
name: "备货明细"
},
})
},
handleDelete() {
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
@ -804,16 +789,16 @@ export default {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
type: "success",
message: "操作成功!"
});
});
},
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
@ -821,45 +806,44 @@ export default {
.then(() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
type: "success",
message: "操作成功!"
});
});
},
beforeClose(done) {
done();
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange(list) {
selectionChange (list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
selectionClear () {
// this.selectionList = [];
// this.$refs.table.clearSelection();
},
currentChange(currentPage) {
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
onLoad (page, params = {}) {
this.loading = true;
this.query.typeService = 1;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.data.forEach(async i => {
/*if (i.forklift != '-1') {
console.log('i==', i);
let a = await getUser(i.forklift);
i.forklift = a.data.data.name;
}*/
this.data.forEach(async i =>{
/* if(i.forkliftId != "-1"){
console.log("i==",i);
let a = await getUser(i.forkliftId);
i.forkliftId =a.data.data.name;
}*/
let s =this.distributionType.find(d => d.dictKey == i.typeService);
// console.log("sssss",s);
i.typeServiceName = s.dictValue;
@ -878,10 +862,10 @@ export default {
i.stockupStatusName = '未备货';
}
});
// this.selectionClear();
this.selectionClear();
this.loading = false;
});
},
},
}
}
};
</script>

245
src/views/distribution/stockup/distributionStockupMarket.vue

@ -24,15 +24,15 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift(row)" >指派叉车司机</el-button>
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派叉车司机</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<!-- <el-button icon="el-icon-search" @click="onLoad" >全部</el-button>-->
<!-- <el-button icon="el-icon-refresh" @click="getStockUp('2')" >已备货</el-button>
<el-button icon="el-icon-search" @click="getStockUp('1')" >待备货</el-button>-->
<!-- <el-button icon="el-icon-search" @click="onLoad" >全部</el-button>-->
<!-- <el-button icon="el-icon-refresh" @click="getStockUp('2')" >已备货</el-button>
<el-button icon="el-icon-search" @click="getStockUp('1')" >待备货</el-button>-->
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
@ -54,7 +54,9 @@
>
<template #default="slotProps">
<el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">编辑</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">编辑</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">取消</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">打印</el-button>
</template>
</tablecmt>
</el-row>
@ -76,7 +78,7 @@
<el-dialog v-model="dialogFormCustomer" title="指派叉车">
<el-form :model="form">
<el-form-item label="叉车司机" :label-width="formLabelWidth">
<el-select v-model="form.forklift" clearable placeholder="请选择叉车司机">
<el-select v-model="form.forkliftId" clearable placeholder="请选择叉车司机" @change="getForklift($event,'1')">
<el-option
v-for="item in forkliftData"
:key="item.dictKey"
@ -86,7 +88,7 @@
</el-select>
</el-form-item>
<el-form-item label="装卸班组" :label-width="formLabelWidth">
<el-select v-model="form.loader" clearable placeholder="请选择装卸班组">
<el-select v-model="form.loaderId" clearable placeholder="请选择装卸班组" @change="getForklift($event,'2')">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
@ -95,8 +97,8 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="备货区域" :label-width="formLabelWidth">
<el-select v-model="form.stockupArea" clearable placeholder="请选择备货区编号">
<el-form-item label="备货区域" :label-width="formLabelWidth" >
<el-select v-model="form.goodsAreaId" clearable placeholder="请选择备货区编号" @change="getForklift($event,'3')">
<el-option
v-for="item in goodsAreaIdData"
:key="item.dictKey"
@ -210,6 +212,7 @@ import { getListOwn,getUser } from '@/api/system/user';
import option from "@/option/distribution/distributionStockup";
import { mapGetters } from "vuex";
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import dayjs from 'dayjs';
import { getDictionaryBiz } from '@/api/system/dict';
export default {
@ -378,7 +381,7 @@ export default {
label: '操作',
type: 6,
values: '',
width: '160',
width: '280',
checkarr: [],
fixed: 'right',
hide: true,
@ -419,17 +422,17 @@ export default {
forkliftData: [],
loaderData: [],
goodsAreaIdData: [],
distributionType: [],
deptId: '',
}
},
mounted () {
this.init();
/**
* 初始化获取本地缓存的编辑隐藏的列表
* 固定搭配不能更改
*/
let newarr = this.$functions.getStorage(window.location.pathname);
let newarr = this.$functions.getStorage(window.location.pathname);
if (newarr) {
this.columnList.map(item => {
item.head = false;
@ -454,6 +457,31 @@ export default {
}
},
methods: {
//
getForklift(row,ty){
console.log("执行了了了了",row);
switch (ty){
case '1':
let x = this.forkliftData.find(i =>i.dictKey==row);
// console.log("xxx",x);
this.form.forkliftName = x.dictValue;
break;
case '2':
let b = this.loaderData.find(i =>i.dictKey == row)
this.form.loaderName = b.dictValue;
break;
case '3':
let f = this.goodsAreaIdData.find(i =>i.dictKey == row)
console.log("fff",f);
this.form.stockupArea = f.dictValue;
break;
}
},
showdrawer(value){
this.drawerShow=value
},
@ -461,10 +489,19 @@ export default {
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
*/
setnewcolum(newarr, headarr) {
setnewcolum(newarr, headarr,type) {
// console.log(newarr,'+++++++++++')
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname, headarr);
if(type==1){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'checkList', headarr);
}else if(type==2){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'flexList', headarr);
}else if(type==3){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'sortlist', headarr);
}
},
selectionsc(value) {
console.log(value);
@ -482,44 +519,79 @@ export default {
},
selectsc(index, row) {
console.log(index, row);
if(row.prop =='typeServiceName'){
this.query['typeService'] = index;
}else if(row.prop =='stockupStatusName'){
this.query["stockupStatus"] = index;
}else if(row.prop =='assignStatusName'){
this.query["assignStatus"] = index;
}else{
this.query[row.prop] = index;
}
// this.query[row.prop] = index;
this.onLoad(this.page);
},
timesc(index, row) {
console.log(index, row);
if (!!index){
index = dayjs(index).format('YYYY-MM-DD');
}
this.query[row.prop] = index
if (!index){
delete this.query[row.prop]
}
this.onLoad(this.page);
},
inputsc(index, row) {
console.log(index, row);
/* if(row.prop =='typeServiceName'){
this.query['typeService'] = index;
}else if(row.prop =='stockupStatusName'){
this.query["stockupStatus"] = index;
}else if(row.prop =='assignStatusName'){
this.query["assignStatus"] = index;
}else{
this.query[row.prop] = index;
}*/
this.query[row.prop] = index;
this.onLoad(this.page);
},
//
getStockUp(row){
console.log("row",row);
let params = {};
switch (row) {
case '1':
params.stockupStatus = '2'
break;
case '2':
params.stockupStatus = '3'
break;
case '1':
params.stockupStatus = '2'
break;
case '2':
params.stockupStatus = '3'
break;
}
getList(this.page.currentPage, this.page.pageSize, params).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
// this.selectionClear();
this.selectionClear();
});
},
//
async getFork(){
let ides = '';
let ide = { };
await getListUser().then(res =>{
let b = false;
await getListUser().then(res =>{ //
// console.log("res>>>",res.data.data);
if(res.data.data.userName != 'admin'){
b = true;
}
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
})
await getPostList(ides).then(res =>{
// console.log(">>>>",res.data.data);
await getPostList(ides).then(res =>{ //
// console.log(">>>>",res.data.data);
res.data.data.forEach(i =>{
if(i.postName == "叉车"){
ide = i;
@ -528,11 +600,16 @@ export default {
})
// console.log("ied>>>>>",ide);
let params={
postId: ide.id, //
// postId: ide.id, //
deptId: this.deptId, //
// roleId: '', //
}
getListOwn(Object.assign(params, this.query)).then(res =>{
if(b){
// console.log("");
params.postId = ide.id;//
}
// console.log("",params);
getListOwn(Object.assign(params, this.query)).then(res =>{ //
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach( i =>{
@ -544,8 +621,8 @@ export default {
});
this.forkliftData = fo;
})
await this.getStorageArea();
await this.getTeam();
await this.getStorageArea();
await this.getTeam();
},
//
@ -584,19 +661,34 @@ export default {
this.goodsAreaIdData = fo;
})
},
handleForklift(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.dialogFormCustomer = true;
this.getFork();
this.getTeam()
/**
* 指派叉车查询的司机
*/
handleForklift(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
let a = false ;
this.selectionList.some(i =>{
if(i.assignStatus == "2"){
a = true;
return;
}
})
// = this.selectionList.findIndex(i => i.assignStatus == 2);
if(!a){
this.dialogFormCustomer = true;
this.getFork();
this.getTeam()
}else{
this.$message.warning("已指派,请勿重复指派!!!")
}
},
//
callFordelivery(){
this.form.ids = this.ids;
console.log("数据》》》",this.form);
addAssign(this.form).then(res =>{
this.$message({
type: "success",
@ -605,7 +697,6 @@ export default {
this.onLoad(this.page);
this.dialogFormCustomer = false;
})
},
init () {
this.height = this.setPx(document.body.clientHeight - 340);
@ -665,12 +756,21 @@ export default {
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
// this.title = ''
// this.view = true;
// this.box = true;
// getDetail(row.id).then(res => {
// this.form = res.data.data;
// });
this.$router.push({
path: '/distribution/stockup/distributionStockupDetails',
query: {
id : row.row.id,
name: "备货明细"
},
})
},
handleDelete () {
if (this.selectionList.length === 0) {
@ -720,7 +820,7 @@ export default {
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
// this.selectionList = [];
// this.$refs.table.clearSelection();
},
currentChange (currentPage) {
@ -738,31 +838,30 @@ export default {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.data.forEach(async i =>{
/*if(i.forklift != "-1"){
console.log("i==",i);
let a = await getUser(i.forklift);
i.forklift =a.data.data.name;
}*/
let s =this.distributionType.find(d => d.dictKey == i.typeService);
// console.log("sssss",s);
i.typeServiceName = s.dictValue;
i.loader = i.groupName;
i.stockupArea = i.headline;
if(i.assignStatus == '2'){
i.assignStatusName = '已指派';
}else{
i.assignStatusName = '未指派';
}
if(i.stockupStatus == '2'){
i.stockupStatusName = '待备货';
}else if(i.stockupStatus == '3'){
i.stockupStatusName = '已备货';
}else{
i.stockupStatusName = '未备货';
}
});
this.data.forEach(async i =>{
/* if(i.forkliftId != "-1"){
console.log("i==",i);
let a = await getUser(i.forkliftId);
i.forkliftId =a.data.data.name;
}*/
let s =this.distributionType.find(d => d.dictKey == i.typeService);
// console.log("sssss",s);
i.typeServiceName = s.dictValue;
i.loader = i.groupName;
i.stockupArea = i.headline;
if(i.assignStatus == '2'){
i.assignStatusName = '已指派';
}else{
i.assignStatusName = '未指派';
}
if(i.stockupStatus == '2'){
i.stockupStatusName = '待备货';
}else if(i.stockupStatus == '3'){
i.stockupStatusName = '已备货';
}else{
i.stockupStatusName = '未备货';
}
});
this.selectionClear();
this.loading = false;
});

273
src/views/distribution/stockup/distributionStockupSelf.vue

@ -1,7 +1,7 @@
<template>
<basic-container>
<div class="avue-crud">
<!-- <el-row :hidden="!search" style="padding:6px 18px">
<!--<el-row :hidden="!search" style="padding:6px 18px">
&lt;!&ndash; 查询模块 &ndash;&gt;
<el-form :inline="true" :model="query">
<el-form-item label="备货状态:">
@ -24,15 +24,15 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift(row)" >指派叉车司机</el-button>
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleForklift" >指派叉车司机</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<!-- <el-button icon="el-icon-search" @click="onLoad" >全部</el-button>-->
<!-- <el-button icon="el-icon-refresh" @click="getStockUp('2')" >已备货</el-button>
<el-button icon="el-icon-search" @click="getStockUp('1')" >待备货</el-button>-->
<!-- <el-button icon="el-icon-search" @click="onLoad" >全部</el-button>-->
<!-- <el-button icon="el-icon-refresh" @click="getStockUp('2')" >已备货</el-button>
<el-button icon="el-icon-search" @click="getStockUp('1')" >待备货</el-button>-->
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
@ -54,7 +54,9 @@
>
<template #default="slotProps">
<el-button type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">编辑</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">编辑</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">取消</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope)">打印</el-button>
</template>
</tablecmt>
</el-row>
@ -76,7 +78,7 @@
<el-dialog v-model="dialogFormCustomer" title="指派叉车">
<el-form :model="form">
<el-form-item label="叉车司机" :label-width="formLabelWidth">
<el-select v-model="form.forklift" clearable placeholder="请选择叉车司机">
<el-select v-model="form.forkliftId" clearable placeholder="请选择叉车司机" @change="getForklift($event,'1')">
<el-option
v-for="item in forkliftData"
:key="item.dictKey"
@ -86,7 +88,7 @@
</el-select>
</el-form-item>
<el-form-item label="装卸班组" :label-width="formLabelWidth">
<el-select v-model="form.loader" clearable placeholder="请选择装卸班组">
<el-select v-model="form.loaderId" clearable placeholder="请选择装卸班组" @change="getForklift($event,'2')">
<el-option
v-for="item in loaderData"
:key="item.dictKey"
@ -95,8 +97,8 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="备货区域" :label-width="formLabelWidth">
<el-select v-model="form.stockupArea" clearable placeholder="请选择备货区编号">
<el-form-item label="备货区域" :label-width="formLabelWidth" >
<el-select v-model="form.goodsAreaId" clearable placeholder="请选择备货区编号" @change="getForklift($event,'3')">
<el-option
v-for="item in goodsAreaIdData"
:key="item.dictKey"
@ -203,13 +205,15 @@
</template>
<script>
import { getList, getDetail, add, update, remove,getListUser,addAssign } from "@/api/distribution/distributionStockup";
import { getListUser } from "@/api/distribution/distributionStockup";
import { getList, getDetail, add, update, remove,addAssign } from "@/api/distribution/distrilbutionBillLading";
import { getPostList } from '@/api/system/post';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getListOwn,getUser } from '@/api/system/user';
import option from "@/option/distribution/distributionStockup";
import { mapGetters } from "vuex";
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import dayjs from 'dayjs';
import { getDictionaryBiz } from '@/api/system/dict';
export default {
@ -226,8 +230,8 @@ export default {
fixed: true,
},
{
prop: 'stockupDate',
label: '备货时间',
prop: 'stockupCode',
label: '备货编码',
type: 4,
values: '',
width: '150',
@ -333,16 +337,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'typeServiceName',
label: '服务类型',
type: 3,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
},
// {
// prop: 'typeServiceName',
// label: '',
// type: 3,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'loaderName',
label: '装卸班组',
@ -378,7 +382,7 @@ export default {
label: '操作',
type: 6,
values: '',
width: '160',
width: '280',
checkarr: [],
fixed: 'right',
hide: true,
@ -419,17 +423,17 @@ export default {
forkliftData: [],
loaderData: [],
goodsAreaIdData: [],
distributionType: [],
deptId: '',
}
},
mounted () {
this.init();
/**
* 初始化获取本地缓存的编辑隐藏的列表
* 固定搭配不能更改
*/
let newarr = this.$functions.getStorage(window.location.pathname);
let newarr = this.$functions.getStorage(window.location.pathname);
if (newarr) {
this.columnList.map(item => {
item.head = false;
@ -454,6 +458,31 @@ export default {
}
},
methods: {
//
getForklift(row,ty){
console.log("执行了了了了",row);
switch (ty){
case '1':
let x = this.forkliftData.find(i =>i.dictKey==row);
// console.log("xxx",x);
this.form.forkliftName = x.dictValue;
break;
case '2':
let b = this.loaderData.find(i =>i.dictKey == row)
this.form.loaderName = b.dictValue;
break;
case '3':
let f = this.goodsAreaIdData.find(i =>i.dictKey == row)
console.log("fff",f);
this.form.stockupArea = f.dictValue;
break;
}
},
showdrawer(value){
this.drawerShow=value
},
@ -461,10 +490,19 @@ export default {
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
*/
setnewcolum(newarr, headarr) {
setnewcolum(newarr, headarr,type) {
// console.log(newarr,'+++++++++++')
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname, headarr);
if(type==1){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'checkList', headarr);
}else if(type==2){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'flexList', headarr);
}else if(type==3){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'sortlist', headarr);
}
},
selectionsc(value) {
console.log(value);
@ -482,44 +520,79 @@ export default {
},
selectsc(index, row) {
console.log(index, row);
if(row.prop =='typeServiceName'){
this.query['typeService'] = index;
}else if(row.prop =='stockupStatusName'){
this.query["stockupStatus"] = index;
}else if(row.prop =='assignStatusName'){
this.query["assignStatus"] = index;
}else{
this.query[row.prop] = index;
}
// this.query[row.prop] = index;
this.onLoad(this.page);
},
timesc(index, row) {
console.log(index, row);
if (!!index){
index = dayjs(index).format('YYYY-MM-DD');
}
this.query[row.prop] = index
if (!index){
delete this.query[row.prop]
}
this.onLoad(this.page);
},
inputsc(index, row) {
console.log(index, row);
/* if(row.prop =='typeServiceName'){
this.query['typeService'] = index;
}else if(row.prop =='stockupStatusName'){
this.query["stockupStatus"] = index;
}else if(row.prop =='assignStatusName'){
this.query["assignStatus"] = index;
}else{
this.query[row.prop] = index;
}*/
this.query[row.prop] = index;
this.onLoad(this.page);
},
//
getStockUp(row){
console.log("row",row);
let params = {};
switch (row) {
case '1':
params.stockupStatus = '2'
break;
case '2':
params.stockupStatus = '3'
break;
case '1':
params.stockupStatus = '2'
break;
case '2':
params.stockupStatus = '3'
break;
}
getList(this.page.currentPage, this.page.pageSize, params).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
// this.selectionClear();
this.selectionClear();
});
},
//
async getFork(){
let ides = '';
let ide = { };
await getListUser().then(res =>{
let b = false;
await getListUser().then(res =>{ //
// console.log("res>>>",res.data.data);
if(res.data.data.userName != 'admin'){
b = true;
}
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
})
await getPostList(ides).then(res =>{
// console.log(">>>>",res.data.data);
await getPostList(ides).then(res =>{ //
// console.log(">>>>",res.data.data);
res.data.data.forEach(i =>{
if(i.postName == "叉车"){
ide = i;
@ -528,11 +601,16 @@ export default {
})
// console.log("ied>>>>>",ide);
let params={
postId: ide.id, //
// postId: ide.id, //
deptId: this.deptId, //
// roleId: '', //
}
getListOwn(Object.assign(params, this.query)).then(res =>{
if(b){
// console.log("");
params.postId = ide.id;//
}
// console.log("",params);
getListOwn(Object.assign(params, this.query)).then(res =>{ //
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach( i =>{
@ -544,8 +622,8 @@ export default {
});
this.forkliftData = fo;
})
await this.getStorageArea();
await this.getTeam();
await this.getStorageArea();
await this.getTeam();
},
//
@ -584,19 +662,34 @@ export default {
this.goodsAreaIdData = fo;
})
},
handleForklift(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.dialogFormCustomer = true;
this.getFork();
this.getTeam()
/**
* 指派叉车查询的司机
*/
handleForklift(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
let a = false ;
this.selectionList.some(i =>{
if(i.assignStatus == "2"){
a = true;
return;
}
})
// = this.selectionList.findIndex(i => i.assignStatus == 2);
if(!a){
this.dialogFormCustomer = true;
this.getFork();
this.getTeam()
}else{
this.$message.warning("已指派,请勿重复指派!!!")
}
},
//
callFordelivery(){
this.form.ids = this.ids;
console.log("数据》》》",this.form);
addAssign(this.form).then(res =>{
this.$message({
type: "success",
@ -605,7 +698,6 @@ export default {
this.onLoad(this.page);
this.dialogFormCustomer = false;
})
},
init () {
this.height = this.setPx(document.body.clientHeight - 340);
@ -665,12 +757,21 @@ export default {
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
// this.title = ''
// this.view = true;
// this.box = true;
// getDetail(row.id).then(res => {
// this.form = res.data.data;
// });
this.$router.push({
path: '/distribution/stockup/distributionStockupDetailsSelf',
query: {
id : row.row.id,
name: "备货明细"
},
})
},
handleDelete () {
if (this.selectionList.length === 0) {
@ -733,36 +834,34 @@ export default {
},
onLoad (page, params = {}) {
this.loading = true;
this.query.typeService = 3;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.data.forEach(async i =>{
/* if(i.forklift != "-1"){
console.log("i==",i);
let a = await getUser(i.forklift);
i.forklift =a.data.data.name;
}*/
let s =this.distributionType.find(d => d.dictKey == i.typeService);
// console.log("sssss",s);
i.typeServiceName = s.dictValue;
i.loader = i.groupName;
i.stockupArea = i.headline;
if(i.assignStatus == '2'){
i.assignStatusName = '已指派';
}else{
i.assignStatusName = '未指派';
}
if(i.stockupStatus == '2'){
i.stockupStatusName = '待备货';
}else if(i.stockupStatus == '3'){
i.stockupStatusName = '已备货';
}else{
i.stockupStatusName = '未备货';
}
});
this.data.forEach(async i =>{
/* if(i.forkliftId != "-1"){
console.log("i==",i);
let a = await getUser(i.forkliftId);
i.forkliftId =a.data.data.name;
}*/
// let s =this.distributionType.find(d => d.dictKey == i.typeService);
// // console.log("sssss",s);
// i.typeServiceName = s.dictValue;
// i.loader = i.groupName;
// i.stockupArea = i.headline;
if(i.assignStatus == '2'){
i.assignStatusName = '已指派';
}else{
i.assignStatusName = '未指派';
}
if(i.stockupStatus == '2'){
i.stockupStatusName = '待备货';
}else if(i.stockupStatus == '3'){
i.stockupStatusName = '已备货';
}else{
i.stockupStatusName = '未备货';
}
});
this.selectionClear();
this.loading = false;
});

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

File diff suppressed because it is too large Load Diff

48
src/views/distribution/turndelivery/deliveryInfo.vue

@ -476,6 +476,7 @@
{ immediate: true }
);
this.getDictionary();
this.getFork();
this.getTeam();
@ -756,6 +757,8 @@
const params = this.form;
let stockup = {};
let tripartite = {};
let data = {};
let allocationInfo = [];
//
if (params.loader) {
@ -765,26 +768,41 @@
stockup.loaderId = a.dictKey;
}
});
data.stockup = stockup;
}
if (params.forklift){
this.forkliftData.forEach(b => {
if (params.forklift === b.dictKey) {
stockup.forkliftName = b.dictValue;
stockup.forkliftId = b.dictKey;
}
});
data.stockup = stockup;
}
if (params.goodsAreaId){
this.goodsAreaData.forEach(c => {
if (params.goodsAreaId === c.dictKey) {
stockup.goodsAreaId = c.dictKey;
stockup.goodsAreaName = c.dictValue;
}
});
data.stockup = stockup;
}
this.forkliftData.forEach(b => {
if (params.forklift === b.dictKey) {
stockup.forkliftName = b.dictValue;
stockup.forkliftId = b.dictKey;
}
});
this.goodsAreaData.forEach(c => {
if (params.goodsAreaId === c.dictKey) {
stockup.goodsAreaId = c.dictKey;
stockup.goodsAreaName = c.dictValue;
}
});
if (params.stockupDate) {
stockup.stockupDate = params.stockupDate;
data.stockup = stockup;
}
if (params.remarks) {
stockup.remarks = params.remarks;
data.stockup = stockup;
}
if (this.loadAndUnload.length>0){
stockup.loadAndUnload = this.loadAndUnload.join(',');
data.stockup = stockup;
}
stockup.loadAndUnload = this.loadAndUnload.join(',');
//
if (params.tripartiteSource) {
//
@ -831,8 +849,8 @@
allocationInfo = info;
}
}
let data = {};
data.stockup = stockup;
// data.stockup = stockup;
data.masterDriverName = this.form.masterDriverName;
data.masterVehicleNub = this.form.masterVehicleNub;
data.allocationInfo = allocationInfo;

1318
src/views/reservation/order_list.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save