Compare commits

..

No commits in common. "59f33a2ef5a13ca1a787e61c75961c646e036208" and "ca08b46f77be065561c6ba79d96ead0e2490a48a" have entirely different histories.

44 changed files with 509 additions and 805 deletions

View File

@ -49,14 +49,6 @@ export function getWarehouseAreaList(id) {
}) })
} }
// 获得库区设置列表
export function getWarehouseAreaListAll() {
return request({
url: '/extend/warehouse-area/listAll',
method: 'get'
})
}
// 获得库区设置分页 // 获得库区设置分页
export function getWarehouseAreaPage(query) { export function getWarehouseAreaPage(query) {
return request({ return request({

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2023-11-02 16:20:15 * @Date: 2023-11-02 16:20:15
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-21 11:03:14 * @LastEditTime: 2024-08-08 15:56:30
* @Description: * @Description:
*/ */
import request from '@/utils/request' import request from '@/utils/request'
@ -41,13 +41,6 @@ export function getWarehouseLocation(id) {
}) })
} }
// 库位存储详情
export function getStoreInfo(id) {
return request({
url: '/extend/warehouse-location/getStoreInfo?id=' + id,
method: 'get'
})
}
// 获得库位设置列表 // 获得库位设置列表
export function getWarehouseLocationTree() { export function getWarehouseLocationTree() {
return request({ return request({

View File

@ -63,14 +63,6 @@ export function getWarehouseRealtimePage(data) {
}) })
} }
// 获得库存列表分页
export function inventoryPage(data) {
return request({
url: '/extend/warehouse-realtime/allPage',
method: 'post',
data: data
})
}
// 获得出入库-无库位-历史分页 // 获得出入库-无库位-历史分页
export function getWarehouseRealtimeHisPage(data) { export function getWarehouseRealtimeHisPage(data) {
return request({ return request({

View File

@ -1,121 +0,0 @@
/*
* @Author: zwq
* @Date: 2022-08-24 11:19:43
* @LastEditors: zwq
* @LastEditTime: 2023-11-02 15:33:39
* @Description:
*/
import { listData } from "@/api/system/dict/data";
export default {
data() {
/* eslint-disable */
return {
urlOptions: {
createURL: '',
updateURL: '',
infoURL: '',
codeURL: '',
getOption: false, //是否加载获取下拉框方法
isGetCode: false, //是否加载获取code方法
getDictList: false, //是否加载获取数据字典方法
optionArrUrl: [], //需要获取下拉框的方法数组
optionArr: {}, //需要获取下拉框的方法数组的返回结果
dictList: {}, //需要获取数据字典的方法数组的返回结果
},
visible: false,
setData: false
}
},
created() {
},
activated() {
},
methods: {
init(id) {
this.dataForm.id = id || "";
this.visible = true;
if (this.urlOptions.getOption) {
this.getArr()
}
if (this.urlOptions.getDictList) {
this.getDict()
}
this.$nextTick(() => {
this.$refs["dataForm"].resetFields();
if (this.dataForm.id) {
this.urlOptions.infoURL(id).then(response => {
this.dataForm = response.data;
if (this.setData) {
this.setDataForm()
}
});
} else {
if (this.urlOptions.isGetCode) {
this.getCode()
}
}
});
},
getCode() {
this.urlOptions.codeURL()
.then(({ data: res }) => {
this.dataForm.code = res;
})
.catch(() => {});
},
getArr() {
const params = {
pageSize: 100,
pageNo: 1,
}
this.urlOptions.optionArrUrl.forEach((item, index) => {
item(params).then(({ data: res }) => {
this.$set(this.urlOptions.optionArr, `arr${index}`, res.list)
})
.catch(() => {
});
});
},
/** 查询字典数据列表 */
getDict() {
this.nameList.forEach((item,index)=>{
const queryParams = {
pageNo: 1,
pageSize: 99,
dictType: item,
}
listData(queryParams).then(response => {
this.$set(this.urlOptions.dictList, `dict${index}`, response.data.list)
});
})
},
// 表单提交
dataFormSubmit() {
this.$refs["dataForm"].validate((valid) => {
if (!valid) {
return false;
}
// 修改的提交
if (this.dataForm.id) {
this.urlOptions.updateURL(this.dataForm).then(response => {
this.$modal.msgSuccess("修改成功");
this.visible = false;
this.$emit("refreshDataList");
});
return;
}
// 添加的提交
this.urlOptions.createURL(this.dataForm).then(response => {
this.$modal.msgSuccess("新增成功");
this.visible = false;
this.$emit("refreshDataList");
});
});
},
formClear() {
if (this.$refs.dataForm!==undefined) {
this.$refs.dataForm.resetFields();
}
}
}
}

View File

@ -1,175 +0,0 @@
/*
* @Author: zwq
* @Date: 2022-08-24 11:19:43
* @LastEditors: zwq
* @LastEditTime: 2024-08-14 15:17:01
* @Description:
*/
export default {
data() {
/* eslint-disable */
return {
urlOptions: {
getDataListURL: '',
deleteURL: '',
statusUrl: '',
exportURL: ''
},
tableData: [],
listQuery: {
pageSize: 20,
pageNo: 1,
total: 1,
},
exportLoading: false,
dataListLoading: false,
addOrEditTitle: '',
addOrUpdateVisible: false,
addOrUpdate: 'addOrUpdate'
}
},
created() {
},
mounted() {
this.getDataList()
},
methods: {
// 获取数据列表
getDataList() {
this.dataListLoading = true;
this.urlOptions.getDataListURL(this.listQuery).then(response => {
if (response.hasOwnProperty('data')) {
this.tableData = response.data.list;
this.listQuery.total = response.data.total;
} else {
this.tableData = []
}
this.dataListLoading = false;
});
},
// 每页数
sizeChangeHandle(val) {
this.listQuery.pageSize = val;
this.listQuery.pageNo = 1;
this.getDataList();
},
// 当前页
currentChangeHandle(val) {
this.listQuery.pageNo = val;
this.getDataList();
},
// 新增 / 修改
addOrUpdateHandle(id) {
this.addOrUpdateVisible = true;
this.$nextTick(() => {
this.$refs.addOrUpdate.init(id);
});
},
cancel(id) {
this.$refs["popover-" + id].showPopper = false;
},
//改变状态
changeStatus(id) {
this.$http
.post(this.urlOptions.statusUrl, { id })
.then(({ data: res }) => {
if (res.code !== 0) {
return this.$message.error(res.msg);
}
this.$refs["popover-" + id].showPopper = false;
this.$message({
message: this.$t("prompt.success"),
type: "success",
duration: 500,
onClose: () => {
this.getDataList();
},
});
})
.catch(() => { });
},
//tableBtn点击
handleClick(val) {
if (val.type === "edit") {
this.addOrUpdateVisible = true;
this.addOrEditTitle = "编辑";
this.$nextTick(() => {
this.$refs.addOrUpdate.init(val.data.id);
});
} else if (val.type === "delete") {
if (val.data.name) {
this.deleteHandle(val.data.id, val.data.name)
} else {
this.setDelete(val.data)
}
} else if (val.type === "change") {
this.changeStatus(val.data.id)
} else {
this.otherMethods(val)
}
},
// 删除
deleteHandle(id, name) {
this.$modal
.delConfirm(name)
.then(() => {
this.urlOptions.deleteURL(id).then(({ data }) => {
this.$message({
message: "操作成功",
type: "success",
duration: 1500,
onClose: () => {
this.getDataList();
},
});
});
})
.catch(() => { });
},
//search-bar点击
buttonClick(val) {
switch (val.btnName) {
case "search":
this.listQuery.xm1 = val.xm1;
this.listQuery.xm2 = val.xm2;
this.listQuery.pageNo = 1;
this.getDataList();
break;
case "add":
this.addOrEditTitle = '新增'
this.addOrUpdateVisible = true;
this.addOrUpdateHandle()
break;
default:
console.log(val)
}
},
handleCancel() {
this.$refs[this.addOrUpdate].formClear()
this.addOrUpdateVisible = false
this.addOrEditTitle = ''
this.addOrUpdate = 'addOrUpdate'
},
handleConfirm() {
this.$refs[this.addOrUpdate].dataFormSubmit()
},
successSubmit() {
this.handleCancel()
this.getDataList()
},
/** 导出按钮操作 */
handleExport() {
// 处理查询参数
let params = { ...this.queryParams };
params.pageNo = undefined;
params.pageSize = undefined;
this.$modal.confirm('是否确认导出所有数据项?').then(() => {
this.exportLoading = true;
return this.urlOptions.exportURL(params);
}).then(response => {
this.$download.excel(response, '报表.xls');
this.exportLoading = false;
}).catch(() => { });
}
}
}

View File

@ -1,73 +0,0 @@
/*
* @Date: 2020-12-29 16:49:28
* @LastEditors: zwq
* @LastEditTime: 2024-08-21 11:14:58
* @FilePath: \basic-admin\src\filters\basicData\index.js
* @Description:
*/
const table = {
lineStatus: {
1: '生产中',
2: '停止',
3: '未知',
},
deactivate: {
1: '启用',
0: '停用',
},
reportType: {
1: '日',
2: '周',
3: '月'
}
}
// 日期格式化
export function parseTime(time, pattern) {
if (arguments.length === 0 || !time) {
return null
}
const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'
let date
if (typeof time === 'object') {
date = time
} else {
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
time = parseInt(time)
} else if (typeof time === 'string') {
time = time.replace(new RegExp(/-/gm), '/').replace('T', ' ').replace(new RegExp(/\.\d{3}/gm),'');
}
if ((typeof time === 'number') && (time.toString().length === 10)) {
time = time * 1000
}
date = new Date(time)
}
const formatObj = {
y: date.getFullYear(),
m: date.getMonth() + 1,
d: date.getDate(),
h: date.getHours(),
i: date.getMinutes(),
s: date.getSeconds(),
a: date.getDay()
}
const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => {
let value = formatObj[key]
// Note: getDay() returns 0 on Sunday
if (key === 'a') {
return ['日', '一', '二', '三', '四', '五', '六'][value]
}
if (result.length > 0 && value < 10) {
value = '0' + value
}
return value || 0
})
return time_str
}
export default function (dictTable) {
return function (val) {
return table?.[dictTable]?.[val]
}
}

View File

@ -53,7 +53,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../../core/mixins/basic-add';
import { createCustomer, updateCustomer, getCustomer, getCode } from "@/api/base/coreCustomer"; import { createCustomer, updateCustomer, getCustomer, getCode } from "@/api/base/coreCustomer";
export default { export default {

View File

@ -9,7 +9,6 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:max-height="tableH"
:table-data="tableData"> :table-data="tableData">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
@ -40,20 +39,18 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../core/mixins/basic-page';
import { parseTime } from '../../core/mixins/code-filter'; import { parseTime } from '../../core/mixins/code-filter';
import { import {
getCustomerPage, getCustomerPage,
deleteCustomer deleteCustomer
} from '@/api/base/coreCustomer'; } from '@/api/base/coreCustomer';
import tableHeightMixin from '@/mixins/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime
width: 150
}, },
{ {
prop: 'name', prop: 'name',
@ -61,8 +58,7 @@ const tableProps = [
}, },
{ {
prop: 'code', prop: 'code',
label: '客户编码', label: '客户编码'
width: 150
}, },
{ {
prop: 'contact', prop: 'contact',
@ -83,7 +79,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage,tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -137,18 +133,27 @@ export default {
}, },
created() {}, created() {},
methods: { methods: {
//
// getDataList() {
// this.dataListLoading = true;
// this.urlOptions.getDataListURL(this.listQuery).then(response => {
// this.tableData = response.data.list;
// this.listQuery.total = response.data.total;
// this.dataListLoading = false;
// });
// },
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 20; this.listQuery.pageSize = 10;
this.listQuery.name = val.name ? val.name : undefined; this.listQuery.name = val.name ? val.name : undefined;
this.getDataList(); this.getDataList();
break; break;
case 'reset': case 'reset':
this.$refs.searchBarForm.resetForm(); this.$refs.searchBarForm.resetForm();
this.listQuery = { this.listQuery = {
pageSize: 20, pageSize: 10,
pageNo: 1, pageNo: 1,
total: 1, total: 1,
}; };

View File

@ -1,8 +1,8 @@
<!-- <!--
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: DY
* @LastEditTime: 2024-08-14 15:15:45 * @LastEditTime: 2023-11-22 10:27:43
* @Description: * @Description:
--> -->
<template> <template>
@ -53,7 +53,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../../core/mixins/basic-add';
import { createCoreSupplier, updateCoreSupplier, getCoreSupplier, getCode } from "@/api/base/coreSupplier"; import { createCoreSupplier, updateCoreSupplier, getCoreSupplier, getCode } from "@/api/base/coreSupplier";
export default { export default {

View File

@ -9,7 +9,6 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:max-height="tableH"
:table-data="tableData"> :table-data="tableData">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
@ -40,55 +39,52 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../core/mixins/basic-page';
import { parseTime } from '../../core/mixins/code-filter'; import { parseTime } from '../../core/mixins/code-filter';
import { import {
getCoreSupplierPage, getCoreSupplierPage,
deleteCoreSupplier, deleteCoreSupplier
} from '@/api/base/coreSupplier'; } from '@/api/base/coreSupplier';
import tableHeightMixin from '@/mixins/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime
width: 150,
}, },
{ {
prop: 'code', prop: 'code',
label: '供应商编码', label: '供应商编码'
width: 150,
}, },
{ {
prop: 'name', prop: 'name',
label: '供应商名称', label: '供应商名称'
}, },
{ {
prop: 'contact', prop: 'contact',
label: '联系人', label: '联系人'
}, },
{ {
prop: 'telephone', prop: 'telephone',
label: '联系电话', label: '联系电话'
}, },
{ {
prop: 'address', prop: 'address',
label: '地址', label: '地址'
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注'
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
getDataListURL: getCoreSupplierPage, getDataListURL: getCoreSupplierPage,
deleteURL: deleteCoreSupplier, deleteURL: deleteCoreSupplier
}, },
tableProps, tableProps,
tableBtn: [ tableBtn: [
@ -104,7 +100,7 @@ export default {
btnName: '删除', btnName: '删除',
} }
: undefined, : undefined,
].filter((v) => v), ].filter((v)=>v),
tableData: [], tableData: [],
formConfig: [ formConfig: [
{ {
@ -123,13 +119,11 @@ export default {
type: 'separate', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-supplier:create') type: this.$auth.hasPermi('base:core-supplier:create') ? 'button' : '',
? 'button'
: '',
btnName: '新增', btnName: '新增',
name: 'add', name: 'add',
color: 'success', color: 'success',
plain: true, plain: true
}, },
], ],
}; };

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2024-07-01 14:53:55 * @Date: 2024-07-01 14:53:55
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-14 15:21:31 * @LastEditTime: 2024-07-22 15:20:51
* @Description: * @Description:
--> -->
<template> <template>
@ -233,7 +233,7 @@ export default {
,'提示') ,'提示')
.then(function () { .then(function () {
return _this.$modal return _this.$modal
.delConfirm(row.name) .delConfirm('名称: ' + row.name)
.then(function () { .then(function () {
return deleteGroupClasses(row.id); return deleteGroupClasses(row.id);
}) })
@ -245,7 +245,7 @@ export default {
}); });
} else { } else {
_this.$modal _this.$modal
.delConfirm(row.name) .delConfirm('名称: ' + row.name)
.then(function () { .then(function () {
return deleteGroupClasses(row.id); return deleteGroupClasses(row.id);
}) })

View File

@ -219,7 +219,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
this.$modal this.$modal
.delConfirm(row.name) .delConfirm('名称: ' + row.name)
.then(function () { .then(function () {
return deleteGroupTeam(row.id); return deleteGroupTeam(row.id);
}) })

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2024-07-10 11:08:48 * @Date: 2024-07-10 11:08:48
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-14 15:35:06 * @LastEditTime: 2024-07-19 14:09:18
* @Description: * @Description:
--> -->
<template> <template>
@ -216,7 +216,7 @@ export default {
handleDelete(row) { handleDelete(row) {
let _this = this; let _this = this;
_this.$modal _this.$modal
.delConfirm(row.name) .confirm('是否确认删除名称为"' + row.name + '"的数据项?')
.then(function () { .then(function () {
return deleteGroupPlan(row.id); return deleteGroupPlan(row.id);
}) })

View File

@ -226,10 +226,8 @@ export default {
}, },
discard(row) { discard(row) {
let _this = this let _this = this
_this.$modal this.$modal
.newConfirm( .confirm('是否确认作废序号为"' + row._pageIndex + '"的数据项?')
'是否确认作废序号为"' + row.planName + '"的数据项?'
,'提示')
.then(() => { .then(() => {
getGroupRule(row.id).then((response) => { getGroupRule(row.id).then((response) => {
let datas = response.data; let datas = response.data;
@ -246,7 +244,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
this.$modal this.$modal
.delConfirm(row.planName) .confirm('是否确认删除序号为"' + row._pageIndex + '"的数据项?')
.then(function () { .then(function () {
return deleteGroupRule(row.id); return deleteGroupRule(row.id);
}) })

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-14 15:24:11 * @LastEditTime: 2024-08-05 16:12:18
* @Description: * @Description:
--> -->
<template> <template>
@ -104,7 +104,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../mixins/basic-add';
import { getTreeArr } from '../mixins/code-filter'; import { getTreeArr } from '../mixins/code-filter';
import { import {
createProductMaterial, createProductMaterial,

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2024-07-01 14:54:06 * @Date: 2024-07-01 14:54:06
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-21 11:19:51 * @LastEditTime: 2024-08-08 16:46:44
* @Description: * @Description:
--> -->
<template> <template>
@ -136,8 +136,8 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../mixins/basic-page';
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../mixins/code-filter';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import { import {
getProductMaterialPage, getProductMaterialPage,
@ -293,6 +293,27 @@ export default {
this.getTreeselect(); this.getTreeselect();
}, },
methods: { methods: {
//
deleteHandle(id, name, index) {
this.$confirm(`是否确认删除物料产品名称为"${name}"的数据项`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
this.urlOptions.deleteURL(id).then(({ data }) => {
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
onClose: () => {
this.getDataList();
},
});
});
})
.catch(() => {});
},
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
@ -356,8 +377,11 @@ export default {
}, },
// //
remove(node, data) { remove(node, data) {
this.$modal this.$confirm(`是否确认删除名称为"${data.name}"的数据项`, '提示', {
.delConfirm(data.name) confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => { .then(() => {
deleteMaterialTree(data.id).then(({ data }) => { deleteMaterialTree(data.id).then(({ data }) => {
this.$message({ this.$message({

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-14 15:24:29 * @LastEditTime: 2024-08-05 16:12:58
* @Description: * @Description:
--> -->
<template> <template>
@ -56,7 +56,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../mixins/basic-add';
import { createMaterialDate, updateMaterialDate, getMaterialDate, getCode } from "@/api/base/materialDate"; import { createMaterialDate, updateMaterialDate, getMaterialDate, getCode } from "@/api/base/materialDate";
import { getMaterialList } from "@/api/base/material"; import { getMaterialList } from "@/api/base/material";

View File

@ -39,7 +39,7 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../mixins/basic-page';
import { parseTime } from '../mixins/code-filter'; import { parseTime } from '../mixins/code-filter';
import { import {
getMaterDatePage, getMaterDatePage,
@ -164,6 +164,27 @@ export default {
console.log(val); console.log(val);
} }
}, },
//
deleteHandle(id, name, index) {
this.$confirm(`是否删除物料批次名称为"${name}"的数据项?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.urlOptions.deleteURL(id).then(({ data }) => {
this.$message({
message: "操作成功",
type: "success",
duration: 1500,
onClose: () => {
this.getDataList();
},
});
});
})
.catch(() => { });
}
}, },
}; };
</script> </script>

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-14 15:26:32 * @LastEditTime: 2024-08-08 16:47:36
* @Description: * @Description:
--> -->
<template> <template>
@ -115,7 +115,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../mixins/basic-add';
import { import {
createMaterialPB, createMaterialPB,
updateMaterialPB, updateMaterialPB,

View File

@ -33,7 +33,7 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../mixins/basic-page';
// import { parseTime } from '../mixins/code-filter'; // import { parseTime } from '../mixins/code-filter';
import { import {
getMaterialPBPage, getMaterialPBPage,
@ -177,9 +177,6 @@ export default {
console.log(val); console.log(val);
} }
}, },
setDelete(data){
this.deleteHandle(data.id,data.productName)
}
}, },
}; };
</script> </script>

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-14 15:27:50 * @LastEditTime: 2024-08-05 16:13:52
* @Description: * @Description:
--> -->
<template> <template>
@ -140,7 +140,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../mixins/basic-add';
import { import {
createMaterialLog, createMaterialLog,
updateMaterialLog, updateMaterialLog,

View File

@ -40,7 +40,7 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../mixins/basic-page';
import { parseTime } from '../mixins/code-filter'; import { parseTime } from '../mixins/code-filter';
import { import {
getMaterialLogPage, getMaterialLogPage,
@ -212,8 +212,38 @@ export default {
console.log(val); console.log(val);
} }
}, },
setDelete(data){ //tableBtn
this.deleteHandle(data.id,data.materialName) handleClick(val) {
if (val.type === "edit") {
this.addOrUpdateVisible = true;
this.addOrEditTitle = "编辑";
this.$nextTick(() => {
this.$refs.addOrUpdate.init(val.data.id);
});
} else if (val.type === "delete") {
this.deleteHandle(val.data.id, val.data.materialName)
} else if (val.type === "change") {
this.changeStatus(val.data.id)
} else {
this.otherMethods(val)
}
},
//
deleteHandle(id, name) {
this.$modal
.delConfirm(name ? '名称: ' + name : '序号: ' + index).then(() => {
this.urlOptions.deleteURL(id).then(({ data }) => {
this.$message({
message: "操作成功",
type: "success",
duration: 1500,
onClose: () => {
this.getDataList();
},
});
});
})
.catch(() => { });
} }
}, },
}; };

View File

@ -2,7 +2,7 @@
/* /*
* @Date: 2020-12-29 16:49:28 * @Date: 2020-12-29 16:49:28
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-21 11:15:56 * @LastEditTime: 2024-07-08 16:27:39
* @FilePath: \basic-admin\src\filters\basicData\index.js * @FilePath: \basic-admin\src\filters\basicData\index.js
* @Description: * @Description:
*/ */

View File

@ -67,7 +67,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../../mixins/basic-add';
import { import {
createWarehouseArea, createWarehouseArea,
updateWarehouseArea, updateWarehouseArea,

View File

@ -46,12 +46,12 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import codeFilter from '@/mixins/code-filter'; import codeFilter from '../../mixins/code-filter';
import { import {
deleteWarehouseArea, deleteWarehouseArea,
getWarehouseAreaPage, getWarehouseAreaPage,
getWarehouseAreaListAll getWarehouseAreaList
} from "@/api/warehouse/warehouse-area-setup"; } from "@/api/warehouse/warehouse-area-setup";
import { import {
getWarehouseList getWarehouseList
@ -145,7 +145,7 @@ export default {
getWarehouseList().then((response) => { getWarehouseList().then((response) => {
this.formConfig[0].selectOptions = response.data; this.formConfig[0].selectOptions = response.data;
}); });
getWarehouseAreaListAll().then((response) => { getWarehouseAreaList().then((response) => {
this.formConfig[1].selectOptions = response.data; this.formConfig[1].selectOptions = response.data;
}); });
}, },

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2023-08-01 13:52:10 * @Date: 2023-08-01 13:52:10
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-21 10:26:21 * @LastEditTime: 2024-08-07 15:53:15
* @Description: * @Description:
--> -->
<template> <template>
@ -20,7 +20,7 @@
<el-select <el-select
v-model="dataForm.warehouseId" v-model="dataForm.warehouseId"
filterable filterable
@change="getAreaList" clearable
:style="{ width: '100%' }" :style="{ width: '100%' }"
placeholder="请选择仓库名称"> placeholder="请选择仓库名称">
<el-option <el-option
@ -35,8 +35,8 @@
<el-form-item label="库区名称" prop="areaId"> <el-form-item label="库区名称" prop="areaId">
<el-select <el-select
v-model="dataForm.areaId" v-model="dataForm.areaId"
:disabled="!areaArr.length>0"
filterable filterable
clearable
:style="{ width: '100%' }" :style="{ width: '100%' }"
@change="setAreaType" @change="setAreaType"
placeholder="请选择库区名称"> placeholder="请选择库区名称">
@ -125,7 +125,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../../mixins/basic-add';
import { import {
createWarehouseLocation, createWarehouseLocation,
updateWarehouseLocation, updateWarehouseLocation,
@ -206,16 +206,11 @@ export default {
getWarehouseList().then((response) => { getWarehouseList().then((response) => {
this.warehouseArr = response.data; this.warehouseArr = response.data;
}); });
}, getWarehouseAreaList().then((response) => {
methods: {
getAreaList(){
getWarehouseAreaList(this.dataForm.warehouseId).then((response) => {
this.areaArr = response.data; this.areaArr = response.data;
if(this.areaArr.length===0){
this.$message('该仓库下暂无库区');
}
}); });
}, },
methods: {
setAreaType() { setAreaType() {
if (this.dataForm.areaId) { if (this.dataForm.areaId) {
this.dataForm.areaType = this.areaArr.find( this.dataForm.areaType = this.areaArr.find(

View File

@ -46,14 +46,14 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import codeFilter from '@/mixins/code-filter'; import codeFilter from '../../mixins/code-filter';
import { import {
deleteWarehouseLocation, deleteWarehouseLocation,
getWarehouseLocationPage, getWarehouseLocationPage,
} from "@/api/warehouse/warehouse-location-setup"; } from "@/api/warehouse/warehouse-location-setup";
import { import {
getWarehouseAreaListAll getWarehouseAreaList
} from "@/api/warehouse/warehouse-area-setup"; } from "@/api/warehouse/warehouse-area-setup";
import { import {
getWarehouseList getWarehouseList
@ -173,7 +173,7 @@ export default {
getWarehouseList().then((response) => { getWarehouseList().then((response) => {
this.formConfig[0].selectOptions = response.data; this.formConfig[0].selectOptions = response.data;
}); });
getWarehouseAreaListAll().then((response) => { getWarehouseAreaList().then((response) => {
this.formConfig[1].selectOptions = response.data; this.formConfig[1].selectOptions = response.data;
}); });
}, },

View File

@ -66,7 +66,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../../mixins/basic-add';
import { import {
createWarehouse, createWarehouse,
updateWarehouse, updateWarehouse,

View File

@ -46,9 +46,9 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import codeFilter from '@/mixins/code-filter'; import codeFilter from '../../mixins/code-filter';
import { import {
deleteWarehouse, deleteWarehouse,
getWarehousePage, getWarehousePage,

View File

@ -129,7 +129,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../../mixins/basic-add';
import { import {
createWarehouseRealtime, createWarehouseRealtime,
outWarehouseRealtime, outWarehouseRealtime,

View File

@ -78,7 +78,7 @@
<script> <script>
import product from './product-mini'; import product from './product-mini';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { getMaterialList } from '@/api/base/material'; import { getMaterialList } from '@/api/base/material';
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import { getWarehouseRealtimePage } from '@/api/warehouse/warehouseRealtime'; import { getWarehouseRealtimePage } from '@/api/warehouse/warehouseRealtime';

View File

@ -16,7 +16,7 @@
</template> </template>
<script> <script>
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { getWarehouseRealtimeDet } from '@/api/warehouse/warehouseRealtime'; import { getWarehouseRealtimeDet } from '@/api/warehouse/warehouseRealtime';
const tableProps = [ const tableProps = [

View File

@ -62,7 +62,7 @@
</template> </template>
<script> <script>
import basicAdd from '@/mixins/basic-add'; import basicAdd from '../../mixins/basic-add';
import { import {
outWarehouseRealtimeLocation, outWarehouseRealtimeLocation,
outWarehouseRealtimeLocationList, outWarehouseRealtimeLocationList,

View File

@ -81,7 +81,6 @@ export default {
this.$refs['dataForm'].validate((valid) => { this.$refs['dataForm'].validate((valid) => {
if (this.dataForm.productInfo) { if (this.dataForm.productInfo) {
this.dataForm.productInfo.goodsId = this.dataForm.productInfo.id this.dataForm.productInfo.goodsId = this.dataForm.productInfo.id
this.dataForm.productInfo.spec = this.dataForm.productInfo.specifications
this.dataForm.productInfo.remark = '' this.dataForm.productInfo.remark = ''
// //
if (this.dataForm.index >= 0) { if (this.dataForm.index >= 0) {

View File

@ -55,16 +55,13 @@
</el-button> </el-button>
</div> </div>
<base-table <base-table
v-if="
productAttributeList.length > 1 ||
(productAttributeList.length && !isDetail)
"
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
@emitFun="inputChange" @emitFun="inputChange"
:height="400" :height="400"
:table-data="productAttributeList"> :table-data="productAttributeList"
v-if="productAttributeList.length">
<method-btn <method-btn
slot="handleBtn" slot="handleBtn"
v-if="!isDetail" v-if="!isDetail"
@ -73,31 +70,6 @@
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
<!-- 一条数据 -->
<div v-else-if="productAttributeList.length === 1 && isDetail">
<el-descriptions title="" direction="vertical" :column="3" border>
<el-descriptions-item label="物品名称">
{{ productAttributeList[0].name }}
</el-descriptions-item>
<el-descriptions-item label="物品编码">
{{ productAttributeList[0].code }}
</el-descriptions-item>
<el-descriptions-item label="物品规格">
{{ productAttributeList[0].spec }}
</el-descriptions-item>
<el-descriptions-item label="物品批次">
{{ productAttributeList[0].goodsBatch }}
</el-descriptions-item>
<el-descriptions-item label="数量">
{{ productAttributeList[0].num }}
</el-descriptions-item>
<el-descriptions-item label="物品单位">
{{
getDictDataLabel('unit_dict', productAttributeList[0].unit)
}}
</el-descriptions-item>
</el-descriptions>
</div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div class="no-data-bg" v-else></div> <div class="no-data-bg" v-else></div>
</div> </div>
@ -146,7 +118,7 @@ const tableProps1 = [
showOverflowtooltip: true, showOverflowtooltip: true,
}, },
{ {
prop: 'spec', prop: 'specifications',
label: '物品规格', label: '物品规格',
}, },
{ {
@ -179,7 +151,7 @@ const tableProps2 = [
showOverflowtooltip: true, showOverflowtooltip: true,
}, },
{ {
prop: 'spec', prop: 'specifications',
label: '物品规格', label: '物品规格',
}, },
{ {
@ -238,9 +210,9 @@ export default {
init(val, nickname, isDetail) { init(val, nickname, isDetail) {
this.isDetail = isDetail || false; this.isDetail = isDetail || false;
if (isDetail) { if (isDetail) {
this.tableProps = tableProps2; this.tableProps= tableProps2;
} else { }else{
this.tableProps = tableProps1; this.tableProps= tableProps1;
} }
this.operator = nickname; this.operator = nickname;
this.dataForm.id = val.id; this.dataForm.id = val.id;

View File

@ -54,8 +54,8 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import Drawer from './drawer'; import Drawer from './drawer';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { getWarehouseRealtimeLocationPage } from '@/api/warehouse/warehouseRealtimeLocation'; import { getWarehouseRealtimeLocationPage } from '@/api/warehouse/warehouseRealtimeLocation';
import { listData } from '@/api/system/dict/data'; import { listData } from '@/api/system/dict/data';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';

View File

@ -1,10 +1,3 @@
<!--
* @Author: zwq
* @Date: 2024-08-09 14:48:46
* @LastEditors: zwq
* @LastEditTime: 2024-08-21 10:00:21
* @Description:
-->
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
@ -32,10 +25,10 @@
</template> </template>
<script> <script>
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { import {
inventoryPage, getWarehouseRealtimeHisPage,
} from '@/api/warehouse/warehouseRealtime'; } from '@/api/warehouse/warehouseRealtime';
import { getMaterialList } from '@/api/base/material'; import { getMaterialList } from '@/api/base/material';
import tableHeightMixin from '@/mixins/tableHeightMixin'; import tableHeightMixin from '@/mixins/tableHeightMixin';
@ -47,6 +40,10 @@ const tableProps = [
prop: 'warehouseName', prop: 'warehouseName',
label: '仓库名称', label: '仓库名称',
}, },
{
prop: 'warehouseAreaName',
label: '库区名称',
},
{ {
prop: 'name', prop: 'name',
label: '物品名称', label: '物品名称',
@ -54,37 +51,34 @@ const tableProps = [
{ {
prop: 'code', prop: 'code',
label: '物品编码', label: '物品编码',
width: 150,
}, },
{ {
prop: 'spec', prop: 'spec',
label: '物品规格', label: '物品规格',
}, },
{ {
prop: 'batch', prop: 'goodsBatch',
label: '物品批次', label: '物品批次',
}, },
{
prop: 'supplierName',
label: '供应商',
},
{ {
prop: 'num', prop: 'num',
label: '当前库存量', label: '出入库数量',
width: 95,
}, },
{ {
prop: 'unit', prop: 'operateStatus',
label: '单位', label: '操作状态',
filter: publicFormatter('unit_dict'), filter: publicFormatter('warehouse_operate_status'),
width: 60,
}, },
{ {
prop: 'latestInTime', prop: 'operateTime',
label: '入库时间', label: '操作时间',
filter: parseTime, filter: parseTime,
width: 150, width: 150,
}, },
{
prop: 'operator',
label: '操作人',
},
]; ];
export default { export default {
@ -92,7 +86,7 @@ export default {
data() { data() {
return { return {
urlOptions: { urlOptions: {
getDataListURL: inventoryPage, getDataListURL: getWarehouseRealtimeHisPage,
}, },
tableData: [], tableData: [],
tableProps, tableProps,
@ -102,11 +96,37 @@ export default {
type: 'select', type: 'select',
label: '物品名称', label: '物品名称',
selectOptions: [], selectOptions: [],
param: 'goodsName', param: 'goodsId',
defaultSelect: '', defaultSelect: '',
valueField: 'name',
filterable: true, filterable: true,
}, },
{
type: 'input',
label: '操作人',
placeholder: '操作人',
param: 'operator',
},
{
type: 'select',
label: '操作状态',
selectOptions: [],
param: 'status',
defaultSelect: '',
filterable: true,
labelField: 'label',
valueField: 'value',
},
{
type: 'datePicker',
label: '操作时间',
dateType: 'daterange',
format: 'yyyy-MM-dd',
valueFormat: "timestamp",
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
param: 'searchTime',
},
{ {
type: 'button', type: 'button',
btnName: '查询', btnName: '查询',
@ -119,6 +139,14 @@ export default {
components: { components: {
}, },
created() { created() {
const queryParams = {
pageNo: 1,
pageSize: 99,
dictType: 'warehouse_operate_status',
};
listData(queryParams).then((response) => {
this.formConfig[2].selectOptions = response.data.list;
});
getMaterialList().then((response) => { getMaterialList().then((response) => {
this.formConfig[0].selectOptions = response.data; this.formConfig[0].selectOptions = response.data;
}); });
@ -129,7 +157,10 @@ export default {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 10;
this.listQuery.goodsName = val.goodsName; this.listQuery.goodsId = val.goodsId;
this.listQuery.operator = val.operator;
this.listQuery.operateStatus = val.status;
this.listQuery.operateTime = val.searchTime?val.searchTime:null;
this.getDataList(); this.getDataList();
break; break;
default: default:

View File

@ -2,63 +2,24 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-21 11:14:16 * @LastEditTime: 2023-11-23 16:09:47
* @Description: * @Description:
--> -->
<template> <template>
<div v-if="tableData.length > 1">
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
<el-descriptions-item label="库位编码">
{{ fatherInfo.code }}
</el-descriptions-item>
<el-descriptions-item label="托盘编码">
{{ fatherInfo.palletCode }}
</el-descriptions-item>
</el-descriptions>
<base-table <base-table
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:height="300" :height="300"
:table-data="tableData" /> :table-data="tableData"
</div> v-if="tableData.length" />
<!-- 一条数据 -->
<div v-else-if="tableData.length === 1">
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
<el-descriptions-item label="库位编码" :span="2">
{{ fatherInfo.code }}
</el-descriptions-item>
<el-descriptions-item label="托盘编码">
{{ fatherInfo.palletCode }}
</el-descriptions-item>
<el-descriptions-item label="物品名称">
{{ tableData[0].name }}
</el-descriptions-item>
<el-descriptions-item label="物品编码">
{{ tableData[0].code }}
</el-descriptions-item>
<el-descriptions-item label="物品规格">
{{ tableData[0].spec }}
</el-descriptions-item>
<el-descriptions-item label="物品批次">
{{ tableData[0].goodsBatch }}
</el-descriptions-item>
<el-descriptions-item label="数量">
{{ tableData[0].num }}
</el-descriptions-item>
<el-descriptions-item label="物品单位">
{{ getDictDataLabel('unit_dict', tableData[0].unit) }}
</el-descriptions-item>
</el-descriptions>
</div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div class="no-data-bg" v-else></div> <div class="no-data-bg" v-else></div>
</template> </template>
<script> <script>
import { publicFormatter,getDictDataLabel } from '@/utils/dict'; import { parseTime } from '../../mixins/code-filter';
import { getStoreInfo import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
} from '@/api/warehouse/warehouse-location-setup';
const tableProps = [ const tableProps = [
{ {
@ -68,14 +29,13 @@ const tableProps = [
{ {
prop: 'code', prop: 'code',
label: '物品编码', label: '物品编码',
width: 160,
}, },
{ {
prop: 'spec', prop: 'spec',
label: '物品规格', label: '物品规格',
}, },
{ {
prop: 'goodsBatch', prop: 'batchCode',
label: '物品批次', label: '物品批次',
}, },
{ {
@ -83,10 +43,13 @@ const tableProps = [
label: '数量', label: '数量',
}, },
{ {
prop: 'unit', prop: 'allowTime',
label: '单位', label: '允许留存时长(天)',
filter: publicFormatter('unit_dict'), width: 150
width: 60, },
{
prop: 'remark',
label: '备注',
}, },
]; ];
export default { export default {
@ -94,7 +57,6 @@ export default {
return { return {
tableData: [], tableData: [],
tableProps, tableProps,
fatherInfo: {}, //
listQuery: { listQuery: {
pageSize: 100, pageSize: 100,
pageNo: 1, pageNo: 1,
@ -105,12 +67,10 @@ export default {
}, },
methods: { methods: {
// //
init(data) { init(id) {
this.fatherInfo = data;
console.log(data)
this.dataListLoading = true; this.dataListLoading = true;
getStoreInfo(data.id).then((response) => { getWarehouseLocationHisDet(id).then((response) => {
this.tableData = response.data || []; this.tableData = response.data;
this.dataListLoading = false; this.dataListLoading = false;
}); });
}, },

View File

@ -12,13 +12,12 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:max-height="tableH"
:table-data="tableData"> :table-data="tableData">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="80" :width="100"
label="操作" label="库位详情"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
@ -32,25 +31,32 @@
<base-dialog <base-dialog
:dialogTitle="addOrEditTitle" :dialogTitle="addOrEditTitle"
:dialogVisible="addOrUpdateVisible" :dialogVisible="addOrUpdateVisible"
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel" :before-close="handleCancel"
width="40%"> width="50%">
<add-or-update <add-or-update
ref="addOrUpdate" ref="addOrUpdate"
@refreshDataList="successSubmit"></add-or-update> @refreshDataList="successSubmit"></add-or-update>
<slot name="footer">
<el-row slot="footer" type="flex" justify="end">
<el-col :span="24">
<el-button size="small" class="btnTextStyle" @click="handleCancel">
取消
</el-button>
</el-col>
</el-row>
</slot>
</base-dialog> </base-dialog>
</div> </div>
</template> </template>
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import codeFilter from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { import {
getWarehouseLocationPage, getWarehouseLocationHisPage,
} from '@/api/warehouse/warehouse-location-setup'; } from '@/api/warehouse/warehouseRealtimeLocation';
import tableHeightMixin from '@/mixins/tableHeightMixin'; import { listData } from '@/api/system/dict/data';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
const tableProps = [ const tableProps = [
@ -58,17 +64,9 @@ const tableProps = [
prop: 'warehouseName', prop: 'warehouseName',
label: '仓库名称', label: '仓库名称',
}, },
{
prop: 'areaName',
label: '库区名称',
},
{
prop: 'areaType',
label: '库区类型',
},
{ {
prop: 'name', prop: 'name',
label: '库名称', label: '库区名称',
}, },
{ {
prop: 'code', prop: 'code',
@ -80,45 +78,84 @@ const tableProps = [
filter: publicFormatter('location_type'), filter: publicFormatter('location_type'),
}, },
{ {
prop: 'arrange', prop: 'palletCode',
label: '', label: '托盘编码',
}, },
{ {
prop: 'col', prop: 'palletCode',
label: '', label: '物品名称',
}, },
{ {
prop: 'layer', prop: 'operateStatus',
label: '层', label: '操作状态',
filter: publicFormatter('warehouse_operate_status'),
}, },
{ {
prop: 'enabled', prop: 'createTime',
label: '库位状态', label: '操作时间',
filter: codeFilter('deactivate'), filter: parseTime,
minWidth: 100,
},
{
prop: 'creator',
label: '操作人',
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
getDataListURL: getWarehouseLocationPage, getDataListURL: getWarehouseLocationHisPage,
}, },
listQuery: {
storageType: 1,
},
tableData: [],
tableProps, tableProps,
tableBtn: [ tableBtn: [
{ this.$auth.hasPermi(`raw-material:warehouse-location-his:query`)
? {
type: 'detail', type: 'detail',
btnName: '详情', btnName: '详情',
}, }
: undefined,
].filter((v) => v), ].filter((v) => v),
tableData: [], drawerVisible: false,
formConfig: [ formConfig: [
{ {
type: 'input', type: 'input',
label: '库位编码', label: '库位编码',
placeholder: '库位编码', placeholder: '库位编码',
param: 'code', param: 'kcode',
},
{
type: 'input',
label: '托盘编码',
placeholder: '托盘编码',
param: 'tcode',
},
{
type: 'select',
label: '操作状态',
selectOptions: [],
param: 'status',
defaultSelect: '',
filterable: true,
labelField: 'label',
valueField: 'value',
},
{
type: 'datePicker',
label: '操作时间',
dateType: 'daterange',
format: 'yyyy-MM-dd',
valueFormat: "timestamp",
rangeSeparator: '-',
startPlaceholder: '开始时间',
endPlaceholder: '结束时间',
param: 'searchTime',
}, },
{ {
type: 'button', type: 'button',
@ -133,14 +170,25 @@ export default {
AddOrUpdate, AddOrUpdate,
}, },
created() { created() {
const queryParams = {
pageNo: 1,
pageSize: 99,
dictType: 'warehouse_operate_status',
};
listData(queryParams).then((response) => {
this.formConfig[2].selectOptions = response.data.list;
});
}, },
methods: { methods: {
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 20; this.listQuery.pageSize = 10;
this.listQuery.code = val.code; this.listQuery.locationCode= val.kcode;
this.listQuery.palletCode = val.tcode;
this.listQuery.operateStatus = val.status;
this.listQuery.createTime = val.searchTime?val.searchTime:null;
this.getDataList(); this.getDataList();
break; break;
default: default:
@ -150,9 +198,9 @@ export default {
otherMethods(val) { otherMethods(val) {
if (val.type === 'detail') { if (val.type === 'detail') {
this.addOrUpdateVisible = true; this.addOrUpdateVisible = true;
this.addOrEditTitle = '详情'; this.addOrEditTitle = val.data.name + ' -产品信息';
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.addOrUpdate.init(val.data); this.$refs.addOrUpdate.init(val.data.id);
}); });
} }
}, },
@ -163,3 +211,9 @@ export default {
}, },
}; };
</script> </script>
<style>
.app-container .el-table .el-table__cell {
padding: 0;
height: 35px;
}
</style>

View File

@ -2,67 +2,64 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-21 09:30:48 * @LastEditTime: 2024-08-09 17:00:46
* @Description: * @Description:
--> -->
<template> <template>
<div v-if="tableData.length > 1">
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
<el-descriptions-item label="源库位编码">
{{ fatherInfo.oldCode }}
</el-descriptions-item>
<el-descriptions-item label="目标库位编码">
{{ fatherInfo.newCode }}
</el-descriptions-item>
<el-descriptions-item label="移动托盘编码">
{{ fatherInfo.palletCode }}
</el-descriptions-item>
</el-descriptions>
<base-table <base-table
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:height="300" :height="300"
:table-data="tableData" /> :table-data="tableData"
</div> v-if="tableData.length > 1" />
<!-- 一条数据 --> <!-- 一条数据 -->
<div v-else-if="tableData.length === 1"> <div v-else-if="tableData.length === 1">
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;"> <el-form
<el-descriptions-item label="源库位编码"> :model="tableData[0]"
{{ fatherInfo.oldCode }} ref="dataForm"
</el-descriptions-item> label-width="100px"
<el-descriptions-item label="目标库位编码"> label-position="top">
{{ fatherInfo.newCode }} <el-row :gutter="20">
</el-descriptions-item> <el-col :span="12">
<el-descriptions-item label="移动托盘编码"> <el-form-item label="物品名称" prop="name">
{{ fatherInfo.palletCode }} <el-input v-model="tableData[0].name" readonly />
</el-descriptions-item> </el-form-item>
<el-descriptions-item label="物品名称"> </el-col>
{{ tableData[0].name }} <el-col :span="12">
</el-descriptions-item> <el-form-item label="物品编码" prop="code">
<el-descriptions-item label="物品编码"> <el-input v-model="tableData[0].code" readonly />
{{ tableData[0].code }} </el-form-item>
</el-descriptions-item> </el-col>
<el-descriptions-item label="物品规格"> <el-col :span="12">
{{ tableData[0].specifications }} <el-form-item label="物品规格" prop="specifications">
</el-descriptions-item> <el-input v-model="tableData[0].specifications" readonly />
<el-descriptions-item label="物品批次"> </el-form-item>
{{ tableData[0].batchCode }} </el-col>
</el-descriptions-item> <el-col :span="12">
<el-descriptions-item label="数量"> <el-form-item label="物品批次" prop="batchCode">
{{ tableData[0].num }} <el-input v-model="tableData[0].batchCode" readonly />
</el-descriptions-item> </el-form-item>
<el-descriptions-item label="物品单位"> </el-col>
{{ getDictDataLabel('unit_dict', tableData[0].unit) }} <el-col :span="12">
</el-descriptions-item> <el-form-item label="数量" prop="num">
</el-descriptions> <el-input v-model="tableData[0].num" readonly />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="物品单位" prop="name">
<el-input v-model="tableData[0].name" readonly />
</el-form-item>
</el-col>
</el-row>
</el-form>
</div> </div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div class="no-data-bg" v-else></div> <div class="no-data-bg" v-else></div>
</template> </template>
<script> <script>
import { publicFormatter,getDictDataLabel } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation'; import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
const tableProps = [ const tableProps = [
@ -99,7 +96,6 @@ export default {
return { return {
tableData: [], tableData: [],
tableProps, tableProps,
fatherInfo: {}, //
listQuery: { listQuery: {
pageSize: 100, pageSize: 100,
pageNo: 1, pageNo: 1,
@ -110,10 +106,9 @@ export default {
}, },
methods: { methods: {
// //
init(data) { init(id) {
this.fatherInfo = data;
this.dataListLoading = true; this.dataListLoading = true;
getWarehouseLocationHisDet(data.id).then((response) => { getWarehouseLocationHisDet(id).then((response) => {
this.tableData = response.data; this.tableData = response.data;
this.dataListLoading = false; this.dataListLoading = false;
}); });

View File

@ -17,7 +17,7 @@
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="90" :width="100"
label="库位详情" label="库位详情"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
@ -52,9 +52,11 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { getMoveHisPage } from '@/api/warehouse/warehouseRealtimeLocation'; import {
getMoveHisPage,
} from '@/api/warehouse/warehouseRealtimeLocation';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import tableHeightMixin from '@/mixins/tableHeightMixin'; import tableHeightMixin from '@/mixins/tableHeightMixin';
@ -106,7 +108,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage,tableHeightMixin],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -115,11 +117,14 @@ export default {
tableData: [], tableData: [],
tableProps, tableProps,
tableBtn: [ tableBtn: [
{ this.$auth.hasPermi(`raw-material:warehouse-location-his:query`)
? {
type: 'detail', type: 'detail',
btnName: '详情', btnName: '详情',
}, }
: undefined,
].filter((v) => v), ].filter((v) => v),
drawerVisible: false,
formConfig: [ formConfig: [
{ {
type: 'input', type: 'input',
@ -138,7 +143,7 @@ export default {
label: '操作时间', label: '操作时间',
dateType: 'daterange', dateType: 'daterange',
format: 'yyyy-MM-dd', format: 'yyyy-MM-dd',
valueFormat: 'timestamp', valueFormat: "timestamp",
rangeSeparator: '-', rangeSeparator: '-',
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间', endPlaceholder: '结束时间',
@ -156,7 +161,8 @@ export default {
components: { components: {
AddOrUpdate, AddOrUpdate,
}, },
created() {}, created() {
},
methods: { methods: {
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
@ -166,7 +172,7 @@ export default {
this.listQuery.locationCode = val.kcode; this.listQuery.locationCode = val.kcode;
this.listQuery.palletCode = val.tcode; this.listQuery.palletCode = val.tcode;
this.listQuery.operateStatus = val.status; this.listQuery.operateStatus = val.status;
this.listQuery.createTime = val.searchTime ? val.searchTime : null; this.listQuery.createTime = val.searchTime?val.searchTime:null;
this.getDataList(); this.getDataList();
break; break;
default: default:
@ -178,7 +184,7 @@ export default {
this.addOrUpdateVisible = true; this.addOrUpdateVisible = true;
this.addOrEditTitle = '详情'; this.addOrEditTitle = '详情';
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.addOrUpdate.init(val.data); this.$refs.addOrUpdate.init(val.data.id);
}); });
} }
}, },

View File

@ -25,8 +25,8 @@
</template> </template>
<script> <script>
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { import {
getWarehouseRealtimeHisPage, getWarehouseRealtimeHisPage,
} from '@/api/warehouse/warehouseRealtime'; } from '@/api/warehouse/warehouseRealtime';
@ -51,7 +51,6 @@ const tableProps = [
{ {
prop: 'code', prop: 'code',
label: '物品编码', label: '物品编码',
width: 150,
}, },
{ {
prop: 'spec', prop: 'spec',
@ -64,7 +63,6 @@ const tableProps = [
{ {
prop: 'num', prop: 'num',
label: '出入库数量', label: '出入库数量',
width: 95,
}, },
{ {
prop: 'operateStatus', prop: 'operateStatus',

View File

@ -2,61 +2,75 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2024-08-21 09:36:31 * @LastEditTime: 2024-08-09 16:59:34
* @Description: * @Description:
--> -->
<template> <template>
<div v-if="tableData.length > 1">
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
<el-descriptions-item label="库位编码">
{{ fatherInfo.code }}
</el-descriptions-item>
<el-descriptions-item label="托盘编码">
{{ fatherInfo.palletCode }}
</el-descriptions-item>
</el-descriptions>
<base-table <base-table
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:height="300" :height="300"
:table-data="tableData" /> :table-data="tableData"
</div> v-if="tableData.length > 1" />
<!-- 一条数据 -->
<div v-else-if="tableData.length === 1"> <div v-else-if="tableData.length === 1">
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;"> <el-form
<el-descriptions-item label="库位编码" :span="2"> :model="tableData[0]"
{{ fatherInfo.code }} ref="dataForm"
</el-descriptions-item> label-width="100px"
<el-descriptions-item label="托盘编码"> label-position="top">
{{ fatherInfo.palletCode }} <el-row :gutter="20">
</el-descriptions-item> <el-col :span="12">
<el-descriptions-item label="物品名称"> <el-form-item label="物品名称" prop="name">
{{ tableData[0].name }} <el-input
</el-descriptions-item> v-model="tableData[0].name"
<el-descriptions-item label="物品编码"> readonly />
{{ tableData[0].code }} </el-form-item>
</el-descriptions-item> </el-col>
<el-descriptions-item label="物品规格"> <el-col :span="12">
{{ tableData[0].specifications }} <el-form-item label="物品编码" prop="code">
</el-descriptions-item> <el-input
<el-descriptions-item label="物品批次"> v-model="tableData[0].code"
{{ tableData[0].batchCode }} readonly />
</el-descriptions-item> </el-form-item>
<el-descriptions-item label="数量"> </el-col>
{{ tableData[0].num }} <el-col :span="12">
</el-descriptions-item> <el-form-item label="物品规格" prop="specifications">
<el-descriptions-item label="物品单位"> <el-input
{{ getDictDataLabel('unit_dict', tableData[0].unit) }} v-model="tableData[0].specifications"
</el-descriptions-item> readonly />
</el-descriptions> </el-form-item>
</div> </el-col>
<el-col :span="12">
<el-form-item label="物品批次" prop="batchCode">
<el-input
v-model="tableData[0].batchCode"
readonly />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="数量" prop="num">
<el-input
v-model="tableData[0].num"
readonly />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="物品单位" prop="name">
<el-input
v-model="tableData[0].name"
readonly />
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div class="no-data-bg" v-else></div> <div class="no-data-bg" v-else></div>
</template> </template>
<script> <script>
import { publicFormatter,getDictDataLabel } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation'; import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
const tableProps = [ const tableProps = [
@ -93,7 +107,6 @@ export default {
return { return {
tableData: [], tableData: [],
tableProps, tableProps,
fatherInfo: {}, //
listQuery: { listQuery: {
pageSize: 100, pageSize: 100,
pageNo: 1, pageNo: 1,
@ -104,10 +117,9 @@ export default {
}, },
methods: { methods: {
// //
init(data) { init(id) {
this.fatherInfo = data;
this.dataListLoading = true; this.dataListLoading = true;
getWarehouseLocationHisDet(data.id).then((response) => { getWarehouseLocationHisDet(id).then((response) => {
this.tableData = response.data; this.tableData = response.data;
this.dataListLoading = false; this.dataListLoading = false;
}); });

View File

@ -17,7 +17,7 @@
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="90" :width="100"
label="库位详情" label="库位详情"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
@ -52,9 +52,11 @@
<script> <script>
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '@/mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { parseTime } from '@/mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { getWarehouseLocationHisPage } from '@/api/warehouse/warehouseRealtimeLocation'; import {
getWarehouseLocationHisPage,
} from '@/api/warehouse/warehouseRealtimeLocation';
import { listData } from '@/api/system/dict/data'; import { listData } from '@/api/system/dict/data';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import tableHeightMixin from '@/mixins/tableHeightMixin'; import tableHeightMixin from '@/mixins/tableHeightMixin';
@ -104,7 +106,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage,tableHeightMixin],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -113,11 +115,14 @@ export default {
tableData: [], tableData: [],
tableProps, tableProps,
tableBtn: [ tableBtn: [
{ this.$auth.hasPermi(`raw-material:warehouse-location-his:query`)
? {
type: 'detail', type: 'detail',
btnName: '详情', btnName: '详情',
}, }
: undefined,
].filter((v) => v), ].filter((v) => v),
drawerVisible: false,
formConfig: [ formConfig: [
{ {
type: 'input', type: 'input',
@ -146,7 +151,7 @@ export default {
label: '操作时间', label: '操作时间',
dateType: 'daterange', dateType: 'daterange',
format: 'yyyy-MM-dd', format: 'yyyy-MM-dd',
valueFormat: 'timestamp', valueFormat: "timestamp",
rangeSeparator: '-', rangeSeparator: '-',
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间', endPlaceholder: '结束时间',
@ -180,10 +185,10 @@ export default {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 10;
this.listQuery.locationCode = val.kcode; this.listQuery.locationCode= val.kcode;
this.listQuery.palletCode = val.tcode; this.listQuery.palletCode = val.tcode;
this.listQuery.operateStatus = val.status; this.listQuery.operateStatus = val.status;
this.listQuery.createTime = val.searchTime ? val.searchTime : null; this.listQuery.createTime = val.searchTime?val.searchTime:null;
this.getDataList(); this.getDataList();
break; break;
default: default:
@ -195,7 +200,7 @@ export default {
this.addOrUpdateVisible = true; this.addOrUpdateVisible = true;
this.addOrEditTitle = '详情'; this.addOrEditTitle = '详情';
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.addOrUpdate.init(val.data); this.$refs.addOrUpdate.init(val.data.id);
}); });
} }
}, },