Browse Source

合并分支

fix_bug_pro20231227
qb 2 years ago
parent
commit
0175a3b632
  1. 50
      src/api/distribution/distributionSignPrint.js
  2. 24
      src/api/distribution/distributionSignfor.js
  3. 12
      src/api/distribution/distributionStockList.js
  4. 98
      src/option/distribution/distributionSignPrint.js
  5. 25
      src/option/factory/mt/factoryOrderMain.js
  6. 26
      src/option/factory/mt/packageInfo.js
  7. 27
      src/page/login/index.vue
  8. 300
      src/views/distribution/inventory/distributionSignPrint.vue
  9. 24
      src/views/distribution/inventory/distributionStockList.vue
  10. 51
      src/views/distribution/inventory/distributionStockListDetails.vue
  11. 24
      src/views/distribution/inventory/distributionStockListDiscuss.vue
  12. 24
      src/views/distribution/inventory/distributionStockListMarket.vue
  13. 24
      src/views/distribution/inventory/distributionStockListSelf.vue
  14. 4
      src/views/distribution/inventory/distrilbutionBillLading.vue
  15. 4
      src/views/distribution/reservation/reservation.vue
  16. 374
      src/views/distribution/signfor/distributionSignfortreat.vue
  17. 83
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  18. 2
      src/views/distribution/turndelivery/deliveryMarket.vue
  19. 7
      src/views/factory/mt/factoryOrderMain.vue
  20. 11
      src/views/factory/mt/packageInfo.vue
  21. 66
      src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
  22. 4
      src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue
  23. 2
      vite.config.js

50
src/api/distribution/distributionSignPrint.js

@ -0,0 +1,50 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/logpm-distribution/distributionSignPrint/submit',
method: 'post',
data: row
})
}

24
src/api/distribution/distributionSignfor.js

@ -99,6 +99,30 @@ export const update = (row) => {
})
}
export const loadingAbnormalPackageListDetail = (signId) => {
return request({
url: '/api/logpm-distribution/signfor/loadingAbnormalPackageListDetail',
method: 'get',
params: {
signId,
}
})
}
/**
* 审核异常包件
* @param signId
* @returns {AxiosPromise}
*/
export const loadingAbnormalPackageListAuditing = (ids) => {
return request({
url: '/api/logpm-distribution/signfor/loadingAbnormalPackageListAuditing',
method: 'post',
params: {
ids,
}
})
}
export const signforPackageList = (signforId) => {
return request({
url: '/api/logpm-distribution/signfor/signforPackageList',

12
src/api/distribution/distributionStockList.js

@ -12,6 +12,18 @@ export const getList = (current, size, params) => {
})
}
export const getListAllocation = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockList/listAllocation',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getStockListOwn = (current, size, params) => {
return request({
url: '/api/logpm-distribution/distributionStockList/listOwn',

98
src/option/distribution/distributionSignPrint.js

@ -0,0 +1,98 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
},
{
label: "预留2",
prop: "reserve2",
},
{
label: "预留3",
prop: "reserve3",
},
{
label: "预留4",
prop: "reserve4",
},
{
label: "预留5",
prop: "reserve5",
},
{
label: "类型",
prop: "type",
},
{
label: "名称",
prop: "name",
},
{
label: "路径",
prop: "urlRoute",
},
{
label: "预约id",
prop: "reservationId",
},
]
}

25
src/option/factory/mt/factoryOrderMain.js

@ -46,6 +46,7 @@ export default {
{
label: "仓库类型",
prop: "warehouseType",
search:true,
type: "input",
},
{
@ -141,10 +142,34 @@ export default {
viewDisplay: false,
hide: true,
},
{
label: "推送状态",
prop: "pushStatusName",
search: true,
type: 'select',
dicData: [
{
label: '已推送',
value: 1,
},
{
label: '未推送',
value: 2,
}
],
},
{
label: "推送时间",
prop: "pushTime",
type: "input",
addDisplay: false,
editDisplay: false,
viewDisplay: false,
hide: false,
},
]
}

26
src/option/factory/mt/packageInfo.js

@ -32,6 +32,7 @@ export default {
{
label: "订单自编码",
prop: "orderCode",
search: true,
type: "input",
},
{
@ -52,6 +53,8 @@ export default {
{
label: "包装编号",
prop: "packageCode",
search: true,
type: "input",
},
{
@ -88,8 +91,31 @@ export default {
{
label: "推送状态",
prop: "pushStatusName",
search: true,
type: 'select',
dicData: [
{
label: '已推送',
value: 1,
},
{
label: '未推送',
value: 2,
}
],
},
{
label: "推送时间",
prop: "pushTime",
type: "input",
addDisplay: false,
editDisplay: false,
viewDisplay:true,
hide: false,
},
{
label: "创建人",
prop: "createUser",

27
src/page/login/index.vue

@ -6,32 +6,15 @@
{{ time }}
</div>
<p class="title">{{ $t('login.info') }}</p>
<!-- <div style="font-size: 15px">
<span>----------------------------------------------</span>
<br />
<span>管理租户编号000000</span>
<br />
<span>超级管理员账号: admin / admin</span>
<br />
<span>人事账号: hr / hr</span>
<br />
<span>经理账号: manager / manager</span>
<br />
<span>老板账号: boss / boss</span>
<br />
<span>----------------------------------------------</span>
<br />
<span>普通租户编号详见租户管理模块</span>
<br />
<span>租户管理员账号: admin / admin</span>
<br />
<span>----------------------------------------------</span>
</div> -->
<!--<img class="img" src="/img/logo.png" alt="">-->
<!-- <img class="img" src="/img/logo.png" alt=""> -->
</div>
<div class="login-border">
<div class="login-main">
<h4 class="login-title">
{{ $t('login.title') }}{{ website.title }}
<top-lang></top-lang>
</h4>

300
src/views/distribution/inventory/distributionSignPrint.vue

@ -0,0 +1,300 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<!-- 查询按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
: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="50" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- 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>
</el-row>
<el-row>
<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-row>
<!-- 表单模块 -->
<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="预留1" prop="reserve1">
<el-input v-model="form.reserve1" placeholder="请输入预留1"/>
</el-form-item>
<el-form-item label="预留2" prop="reserve2">
<el-input v-model="form.reserve2" placeholder="请输入预留2"/>
</el-form-item>
<el-form-item label="预留3" prop="reserve3">
<el-input v-model="form.reserve3" placeholder="请输入预留3"/>
</el-form-item>
<el-form-item label="预留4" prop="reserve4">
<el-input v-model="form.reserve4" placeholder="请输入预留4"/>
</el-form-item>
<el-form-item label="预留5" prop="reserve5">
<el-input v-model="form.reserve5" placeholder="请输入预留5"/>
</el-form-item>
<el-form-item label="类型" prop="type">
<el-input v-model="form.type" placeholder="请输入类型"/>
</el-form-item>
<el-form-item label="名称" prop="name">
<el-input v-model="form.name" placeholder="请输入名称"/>
</el-form-item>
<el-form-item label="路径" prop="urlRoute">
<el-input v-model="form.urlRoute" placeholder="请输入路径"/>
</el-form-item>
<el-form-item label="预约id" prop="reservationId">
<el-input v-model="form.reservationId" placeholder="请输入预约id"/>
</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 icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionSignPrint";
import option from "@/option/distribution/distributionSignPrint";
import { mapGetters } from "vuex";
export default {
data () {
return {
height: 0,
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
//
option: option,
//
data: [],
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
init () {
this.height = this.setPx(document.body.clientHeight - 340);
},
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: "操作成功!"
});
})
}
},
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) {
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
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.loading = false;
this.selectionClear();
});
}
}
};
</script>

24
src/views/distribution/inventory/distributionStockList.vue

@ -379,8 +379,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -388,16 +388,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -538,6 +528,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

51
src/views/distribution/inventory/distributionStockListDetails.vue

@ -87,7 +87,7 @@
<template #default="slotProps">
</template>
</tablecmt>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
@ -106,7 +106,7 @@
<el-tab-pane label="出库明细" name="outbound">
<tablecmt
:columnList="columnListarrs.columnDetails"
:tableData="data"
:tableData="data1"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@ -134,7 +134,7 @@
<el-tab-pane label="入库明细" name="enter">
<tablecmt
:columnList="columnListarrs.columnWarehousing"
:tableData="data"
:tableData="data2"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@ -217,7 +217,7 @@
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/distribution/distributionStockList";
import { getList, getDetail, add, update, remove, getListAllocation } from '@/api/distribution/distributionStockList';
import option from "@/option/distribution/distributionStockList";
import { mapGetters } from "vuex";
import { getListStock } from '@/api/distribution/distributionStock';
@ -261,8 +261,8 @@ export default {
head: false,
},
{
prop: 'cargoNumber',
label: '运单编号',
prop: 'brandName',
label: '品牌',
type: 2,
values: '',
width: '150',
@ -273,7 +273,7 @@ export default {
},
{
prop: 'despatch',
label: '物流车次',
label: '运单号',
type: 2,
values: '',
width: '150',
@ -317,7 +317,7 @@ export default {
// fixed: true,
// },
{
prop: 'storageLocation',
prop: 'allocationTitle',
label: '货位',
type: 2,
values: '',
@ -328,7 +328,7 @@ export default {
head: false,
},
{
prop: 'descriptionGoods',
prop: 'marketName',
label: '货物名称',
type: 2,
values: '',
@ -339,7 +339,7 @@ export default {
head: false,
},
{
prop: 'groundingTime',
prop: 'createTime',
label: '上架时间',
type: 2,
values: '',
@ -361,8 +361,8 @@ export default {
head: false,
},
{
prop: 'licensePlate',
label: '车牌',
prop: 'num',
label: '货位数',
type: 2,
values: '',
width: '150',
@ -382,17 +382,17 @@ export default {
sortable: true,
head: false,
},
{
prop: 'unpackingQuantity',
label: '拆包数',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
// {
// prop: 'unpackingQuantity',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
],
columnDetails:[
// {
@ -472,7 +472,7 @@ export default {
},
],
},
height: 0,
activeName: 'library',
//
@ -771,7 +771,8 @@ export default {
this.query.materialId = this.queryOwn.materialId;
this.query.warehouseId = this.queryOwn.warehouseId;
this.query.storeId = !!this.queryOwn.storeId && this.queryOwn.storeId != '-1' ? this.queryOwn.storeId : null;
let b =await getList(page.currentPage, page.pageSize, Object.assign(params, this.query));
console.log("库存品参数<><><><",this.query);
let b =await getListAllocation(page.currentPage, page.pageSize, Object.assign(params, this.query));
this.data = b.data.data.records;
console.log("库存品信息",this.data);
this.page.total = b.data.data.total;

24
src/views/distribution/inventory/distributionStockListDiscuss.vue

@ -410,8 +410,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -419,16 +419,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -579,6 +569,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

24
src/views/distribution/inventory/distributionStockListMarket.vue

@ -391,8 +391,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -400,16 +400,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -560,6 +550,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

24
src/views/distribution/inventory/distributionStockListSelf.vue

@ -362,8 +362,8 @@ export default {
sortable: true,
},
// {
// prop: 'warehouse',
// label: '',
// prop: 'despatch',
// label: '',
// type: 2,
// values: '',
// width: '130',
@ -371,16 +371,6 @@ export default {
// fixed: false,
// sortable: true,
// },
{
prop: 'despatch',
label: '物流车次',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'incomingBatch',
label: '入库批次',
@ -530,6 +520,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'packageNum',
label: '包装数量',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'unpackingQuantity',
label: '拆包数量',

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

@ -241,8 +241,7 @@
</el-tab-pane>
<el-tab-pane label="库存品">
<el-button type="primary" text icon="el-icon-view" @click="handleAddView(row)"
>新增</el-button
>
>新增</el-button>
<tablecmt
:columnList="columnStock"
:tableData="data"
@ -2392,6 +2391,7 @@ export default {
console.log('aaa', a);
if (!!a.mallId) {
params.marketId = a.mallId;
params.warehouseId = a.warehouseId;
getListStockList(page.currentPage, page.pageSize, params).then(res => {
const dataOwn = res.data.data;
this.pageStock.total = dataOwn.total;

4
src/views/distribution/reservation/reservation.vue

@ -433,7 +433,7 @@
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getStockUpArea, stockUp } from '@/api/basicdata/basicdataGoodsArea';
import dayjs from 'dayjs';
import print from '@/utils/print';
@ -1258,7 +1258,7 @@
let params = {
department: this.deptId
};
stockUp(params).then(res => {
getStockUpArea().then(res => {
// console.log("res>>>",res.data.data);
let fo = [];
res.data.data.forEach(i => {

374
src/views/distribution/signfor/distributionSignfortreat.vue

@ -128,6 +128,7 @@
>
<template #default="slotProps">
<el-text size="small" @click="editsolt(slotProps.scope)"> </el-text>
<el-text size="small" v-if="slotProps.scope.row.isHaveAbnormalPackage === 2" @click="viewAbnormalLoading(slotProps.scope)"> </el-text>
<el-text size="small" v-if="slotProps.scope.row.signingStatusAll == '司机签收'" @click="handleSign(slotProps.scope.row)"> </el-text>
<!-- <el-button size="small" type="danger" @click="delectsolt(slotProps.scope)"-->
<!-- >Delete</el-button>-->
@ -255,6 +256,71 @@
:drawerShow="drawerShow"
:columnList="columnList"
></edittablehead>
<el-dialog
title="异常装车包件列表"
v-model="abnormalBox"
width="50%"
:before-close="beforeClose"
append-to-body>
<el-table
ref="table"
v-loading="loading"
@selection-change="selectionChange"
:data="wrapdata"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<template v-for="(item, index) in wrapoption.column">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:show-overflow-tooltip="true"
:width="item.width"
:key="index"
>
<!-- :align="center"-->
</el-table-column>
</template>
<el-table-column
fixed="right"
label="操作"
width="100">
<template #default="scope">
<el-button v-if="scope.row.auditingStatus === 1 || scope.row.auditingStatusName === '待审核'" @click="auditing(scope.row)" type="text" size="small" > </el-button>
<!-- <el-button type="text" size="small">编辑</el-button>-->
</template>
</el-table-column>
</el-table>
<div style="width: 100%">
<el-button type="primary" @click="fastAuditing" style="margin-left: 40%">一键审批</el-button>
<el-button type="primary" @click="this.abnormalBox = false">关闭</el-button>
</div>
<!-- <div class="avue-crud__pagination" style="width: 100%">-->
<!-- &lt;!&ndash; 分页模块 &ndash;&gt;-->
<!-- <el-pagination-->
<!-- background-->
<!-- @size-change="wsizeChange"-->
<!-- @current-change="wcurrentChange"-->
<!-- :current-page="wpage.currentPage"-->
<!-- :page-sizes="[30, 50, 80, 120]"-->
<!-- :page-size="wpage.pageSize"-->
<!-- layout="total, sizes, prev, pager, next, jumper"-->
<!-- :total="wpage.total"-->
<!-- >-->
<!-- &lt;!&ndash; :align="center"&ndash;&gt;-->
<!-- </el-pagination>-->
<!-- </div>-->
<!-- 表单按钮 -->
<!-- <template #footer>-->
<!-- <span v-if="!view" class="dialog-footer">-->
<!-- <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>-->
</el-dialog>
</template>
<script>
@ -265,7 +331,7 @@
update,
remove,
getPage,
getstatistics
getstatistics, loadingAbnormalPackageListDetail, loadingAbnormalPackageListAuditing
} from '@/api/distribution/distributionSignfor';
import { update as updatesign } from '@/api/distribution/distributionSignfor';
import option from '@/option/distribution/distributionSignfor';
@ -487,7 +553,7 @@
sortable: true
},
{
prop: 'signingStatusAll',
prop: 'sijiSigningStatus',
label: '司机签收状态',
type: 3,
values: '',
@ -505,6 +571,26 @@
fixed: false,
sortable: true
},
{
prop: 'wenyuanSigningStatus',
label: '文员审核状态',
type: 3,
values: '',
width: '150',
checkarr: [
{
value: '2',
label: '已签收'
},
{
value: '1',
label: '未签收'
}
],
fixed: false,
sortable: true
},
{
prop: '',
label: '操作',
@ -642,6 +728,239 @@
]
},
columnListedit: [],
wrapdata:[],
wrapoption: {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: '配送车次',
prop: 'trainNumber',
search: true,
width: '100px',
},
{
label: '运单号',
prop: 'waybillNumber',
search: true,
width: '100px',
},
{
label: '服务号',
prop: 'serviceNumber',
search: true,
width: '100px',
},
{
label: '订单自编号',
prop: 'orderCode',
width: '100px',
search: true,
},
{
label: '货物名称',
prop: 'materialName',
width: '100px',
search: true,
},
{
label: '包条码',
prop: 'packageCode',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'warehouse',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'sendWarehouseName',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'acceptWarehouseName',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'waybillNumber',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'warehouseEntryTimeEnd',
// search: true,
// width: '100px',
// },
// {
// label: '',
// prop: 'trainNumber',
// search: true,
// width: '100px'
// },
// {
// label: '',
// prop: 'trainNumber',
// search: true,
// width: '100px'
// },
// {
// label: '',
// prop: 'trainNumber',
// search: true,
// width: '100px',
// },
{
label: '一级品类',
prop: 'firsts',
search: true,
width: '100px',
},
{
label: '二级品类',
prop: 'second',
search: true,
width: '100px',
},
{
label: '三级品类',
prop: 'thirdProduct',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'materialCode',
// search: true,
// width: '100px'
// },
// {
// label: '',
// prop: 'materialName',
// search: true,
// width: '100px'
// },
{
label: '包件状态',
prop: 'orderPackageStatusName',
search: true,
width: '100px',
},
{
label: '冻结状态',
prop: 'orderPackageFreezeStatusName',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'orderPackageGroundingStatusName',
// search: true,
// width: '100px',
// },
{
label: '备货状态',
prop: 'orderPackageStockupStatusName',
search: true,
width: '100px',
},
{
label: '预约状态',
prop: 'orderPackageReservationStatusName',
search: true,
width: '100px',
},
{
label: '装车状态',
prop: 'orderPackageLoadingStatusName',
search: true,
width: '100px',
},
// {
// label: '',
// prop: 'orderPackageDeliveryStatus',
// search: true,
// width: '130px'
// },
// {
// label: '',
// prop: 'orderPackageReservationStatusName',
// search: true,
// width: '150px'
// },
// {
// label: '',
// prop: 'scanStatus',
// search: true,
// width: '150px',
// },
// {
// label: '',
// prop: 'orderPackageDeliveryStatus',
// search: true,
// width: '150px'
// },
// {
// label: '',
// prop: 'driverName',
// search: true,
// width: '150px',
// },
{
label: '实际装车人',
prop: 'scanUser',
search: true,
width: '150px',
},
// {
// label: '',
// prop: 'signingTime',
// search: true,
// width: '150px',
// },
{
label: '审核状态',
prop: 'auditingStatusName',
search: true,
width: '150px',
},
{
label: '审核时间',
prop: 'auditingTime',
search: true,
width: '150px',
},
{
label: '审核人',
prop: 'auditingUser',
search: true,
width: '150px',
},
// {
// label: '',
// prop: 'pallet',
// width: '100px'
// },
// {
// label: '',
// prop: 'goodsAllocation',
// width: '100px'
// }
]
},
drawerShow: false,
height: 0,
//
@ -662,6 +981,7 @@
signdata: [],
//
query: {},
abnormalBox:false,
//
signoption: {
height: 'auto',
@ -902,6 +1222,7 @@
showdrawer(value) {
this.drawerShow = value;
},
/**
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
@ -918,7 +1239,6 @@
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
},
//
cancellation() {
@ -956,6 +1276,43 @@
const { row } = scope;
console.log(row);
},
//
auditing(row){
// const { row } = scope;
console.log("----------->row",row);
loadingAbnormalPackageListAuditing(row.id).then(res=>{
console.log("res-------->",res);
if (res){
this.$message({
type: 'success',
message: '操作成功!'
});
}
})
},
/**
* 一键审批
*/
fastAuditing(){
console.log("this.wrapdata---------->",this.wrapdata);
let ids = []
this.wrapdata.forEach(item=>{
ids.push(item.id)
})
loadingAbnormalPackageListAuditing(ids.join(",")).then(res=>{
console.log("res-------->",res);
if (res){
this.$message({
type: 'success',
message: '操作成功!'
});
this.abnormalBox = false;
}
})
console.log("ids---------->",ids);
},
handleSign(row) {
console.log('签收>>>>>>>>>>', row);
// this.title = '';
@ -965,6 +1322,17 @@
// this.wid= row.id
// this.getWrapdetails(this.wpage)
},
viewAbnormalLoading(scope){
const { row } = scope;
// this.title = '';
// this.view = true;
this.abnormalBox = true;
console.log("异常装车审核------------->",row);
loadingAbnormalPackageListDetail(row.id).then(res=>{
this.wrapdata = res.data.data;
console.log("res------------->",res.data.data);
})
},
editsolt(scope) {
const { row } = scope;
console.log('row>>>>>>>>>>>>>>>>>>>', row);

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

@ -801,40 +801,55 @@
methods: {
//
async getFork() {
let ides = '';
let ide = {};
await getListUser().then(res => {
console.log('res>>>', res.data.data);
ides = res.data.data.tenantId;
this.deptId = res.data.data.deptId;
});
await getPostList(ides).then(res => {
console.log('>>>>', res.data.data);
// this.forkliftData = res.data.data;
res.data.data.forEach(i => {
if (i.postName == '叉车') {
ide = i;
}
});
});
// console.log("ied>>>>>",ide);
let params = {
postId: ide.id, //
deptId: this.deptId //
// roleId: '', //
};
getListOwn(Object.assign(params, this.query)).then(res => {
// console.log(".............",res.data.data);
let fo = [];
res.data.data.forEach(i => {
let a = {
dictKey: i.id,
dictValue: i.name
};
fo.push(a);
});
this.forkliftData = fo;
});
await getListUser().then(res =>{ //
console.log("查询当前人信息>>>",res.data.data);
let fo = [];
res.data.data.forEach( i =>{
let a ={
dictKey: i.id,
dictValue: i.realName
};
fo.push(a);
if(!this.deptId){
this.deptId =i.deptId;
}
});
this.forkliftData = fo;
})
// let ides = '';
// let ide = {};
// await getListUser().then(res => {
// console.log('res>>>', res.data.data);
// ides = res.data.data.tenantId;
// this.deptId = res.data.data.deptId;
// });
// await getPostList(ides).then(res => {
// console.log('>>>>', res.data.data);
// // this.forkliftData = res.data.data;
// res.data.data.forEach(i => {
// if (i.postName == '') {
// ide = i;
// }
// });
// });
// // console.log("ied>>>>>",ide);
// let params = {
// postId: ide.id, //
// deptId: this.deptId //
// // roleId: '', //
// };
// getListOwn(Object.assign(params, this.query)).then(res => {
// // console.log(".............",res.data.data);
// let fo = [];
// res.data.data.forEach(i => {
// let a = {
// dictKey: i.id,
// dictValue: i.name
// };
// fo.push(a);
// });
// this.forkliftData = fo;
// });
await this.getStorageArea();
await this.getTeam();
},

2
src/views/distribution/turndelivery/deliveryMarket.vue

@ -1020,7 +1020,7 @@
}
if (this.stockUpForm.unloader) {
this.loaderData.forEach(a => {
if (this.stockUpForm.loader === a.dictKey) {
if (this.stockUpForm.unloader === a.dictKey) {
stockup.unloaderName = a.dictValue;
stockup.unloaderId = a.dictKey;
}

7
src/views/factory/mt/factoryOrderMain.vue

@ -321,10 +321,13 @@ export default {
onLoad(page, params = {}) {
this.loading = true;
const {invoiceOrderCode} = this.query;
const {invoiceOrderCode,pushStatusName,warehouseType} = this.query;
let values = {
invoiceOrderCode:invoiceOrderCode
invoiceOrderCode:invoiceOrderCode,
pushStatus:pushStatusName,
warehouseType:warehouseType
};
getList(page.currentPage, page.pageSize, values).then(res => {

11
src/views/factory/mt/packageInfo.vue

@ -30,9 +30,9 @@
@click="handleDelete"
>
</el-button> -->
<el-button type="warning" plain icon="el-icon-download" @click="handleExport"
<!-- <el-button type="warning" plain icon="el-icon-download" @click="handleExport"
>
</el-button>
</el-button> -->
<el-button type="warning" @click="handlePush">推送 </el-button>
</template>
@ -360,10 +360,13 @@ export default {
onLoad(page, params = {}) {
this.loading = true;
const { invoiceOrderCode } = this.query;
const { invoiceOrderCode,pushStatusName,orderCode,packageCode } = this.query;
let values = {
invoiceOrderCode: invoiceOrderCode,
pushStatus:pushStatusName,
orderCode:orderCode,
packageCode:packageCode,
};
getList(page.currentPage, page.pageSize, values).then(res => {

66
src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue

@ -67,9 +67,9 @@
clearable
>
<el-option
v-for="item in optionCodes"
v-for="item in options"
:key="item.value"
:label="item.label"
:label="item.code"
:value="item.value"
/>
</el-select>
@ -391,7 +391,7 @@
<el-form-item label="包装规格">
<el-input v-model="formDetail.packagingSpecifications" placeholder="请输入包装规格" />
</el-form-item>
<el-form-item label="产品品牌" prop="actualReceipt">
<el-form-item label="产品品牌" prop="brandId">
<!-- <el-input v-model="formDetail.actualReceipt" placeholder="请选择物资品牌"/>-->
<el-select
v-model="formDetail.brandId"
@ -596,6 +596,7 @@ export default {
this.options.push({
label: da.customerName,
code: da.customerCode,
value: da.clientId,
});
this.optionCodes.push({
@ -726,10 +727,12 @@ export default {
if (query) {
console.log('客户ID', this.form.clientId);
if (!!this.form.clientId) {
this.brandList = [];
let si = !!this.form.storeId ? this.form.storeId : this.form.clientId;
let cl = await getListIdsName(this.page.currentPage, this.page.pageSize, {
brandName: query,
ids: si,
type: !!this.form.storeId ? 2 : 1
});
console.log('>>>>', cl.data.data);
cl.data.data.forEach(i => {
@ -770,22 +773,24 @@ export default {
if (num == 1) {
const obj = this.options.find(item => item.value === row);
console.log('obj>>>>>>>>>>>', obj);
this.optionCodes = [
this.options = [
{
key: obj.value,
value: obj.value,
label: obj.code,
label: obj.label,
code: obj.code,
},
];
this.form.clientCode = obj.value;
this.form.customerCode = obj.code;
} else {
const obj = this.optionCodes.find(item => item.value === row);
const obj = this.options.find(item => item.value === row);
console.log('obj>>>>>>>>>>>', obj);
this.options = [
{
key: obj.value,
value: obj.value,
label: obj.code,
label: obj.label,
code: obj.code,
},
];
this.form.clientId = obj.value;
@ -796,14 +801,7 @@ export default {
// console.log(">><><><<>",i);
if (i.value == row) {
this.form.customerName = i.label;
//
aa = i.value;
}
});
this.optionCodes.some(i => {
console.log('>><><><<>', i);
if (i.value == row) {
this.form.clientCode = i.label;
this.form.clientCode = i.code;
//
aa = i.value;
}
@ -862,6 +860,7 @@ export default {
if (query) {
// this.loading = true;
this.options = [];
this.form.customerCode = null;
let cl = await getListClient(this.page.currentPage, this.page.pageSize, {
clientName: query,
});
@ -888,18 +887,19 @@ export default {
async remoteCodeMethod(query) {
if (query) {
// this.loading = true;
this.optionCodes = [];
this.options = [];
this.form.clientId = null;
let cl = await getListClient(this.page.currentPage, this.page.pageSize, {
clientCode: query,
});
console.log('客户信息1234>>>>', cl.data.data.records);
cl.data.data.records.forEach(i => {
let st = {
label: i.clientCode,
label: i.clientName,
value: i.id,
code: i.clientName,
code: i.clientCode,
};
this.optionCodes.push(st);
this.options.push(st);
});
// setTimeout(() => {
// this.loading = false
@ -908,7 +908,7 @@ export default {
// })
// }, 200)
} else {
this.optionCodes = [];
this.options = [];
}
},
handleEditOwn(row) {
@ -1088,7 +1088,29 @@ export default {
this.title = '新增';
// this.form = {}
this.box = true;
//
//
this.getBingPai();
},
async getBingPai(){
console.log('客户ID', this.form.clientId);
this.brandList = [];
if (!!this.form.clientId) {
let si = !!this.form.storeId ? this.form.storeId : this.form.clientId;
let cl = await getListIdsName(this.page.currentPage, this.page.pageSize, {
ids: si,
type: !!this.form.storeId ? 2 : 1
});
console.log('>>>>', cl.data.data);
cl.data.data.forEach(i => {
let st = {
label: i.brandName,
value: i.id,
};
this.brandList.push(st);
});
} else {
this.$message.warning('请先填写客户信息,产品品牌信息才能带出!!');
}
},
handleEdit(row) {
this.title = '编辑';

4
src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue

@ -659,6 +659,10 @@ export default {
},
//
uploadAfter(res, done, loading, column) {
if(!res){
this.$message.success("导入成功!!!");
}
// window.console.log("",res,column);
window.console.log("column",column);
this.excelBox = false;
this.refreshChange();

2
vite.config.js

@ -15,8 +15,8 @@ export default ({ mode, command }) => {
// target: 'http://192.168.10.126:8889',
// target: 'http://192.168.10.48:8888',
// target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.75:8777',
target: 'http://192.168.10.101:8888',
// target: 'http://192.168.10.101:8888',
// target: 'http://192.168.10.29:13000',
// target: 'http://test.api.huitongys.com',
changeOrigin: true,

Loading…
Cancel
Save