Merge remote-tracking branch 'origin/0.8.X' into 0.8.X

This commit is contained in:
2026-05-13 13:56:24 +08:00
8 changed files with 207 additions and 48 deletions

View File

@@ -8,6 +8,11 @@
<el-input v-model="queryParams.templateName" placeholder="请输入方案名称" clearable <el-input v-model="queryParams.templateName" placeholder="请输入方案名称" clearable
@keyup.enter.native="handleQuery" /> @keyup.enter.native="handleQuery" />
</el-form-item> </el-form-item>
<el-form-item label="方案单位" prop="templateUnit">
<el-select v-model="queryParams.templateUnit" placeholder="请选择方案单位" clearable filterable allow-create @keyup.enter.native="handleQuery">
<el-option v-for="unit in templateUnitOptions" :key="unit" :label="unit" :value="unit" />
</el-select>
</el-form-item>
</el-form> </el-form>
<el-row :gutter="10" class="mb8"> <el-row :gutter="10" class="mb8">
@@ -17,19 +22,28 @@
</el-col> </el-col>
</el-row> </el-row>
<el-table highlight-current-row border @row-click="handleRowClick" v-loading="loading" <div class="template-list" v-loading="loading">
:data="inspectionItemTemplateList" @selection-change="handleSelectionChange"> <div
<el-table-column label="方案名称" align="center" prop="templateName" /> v-for="item in inspectionItemTemplateList"
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> :key="item.templateId"
<template slot-scope="scope"> class="template-item"
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)">修改</el-button> :class="{ 'active': currentTemplate && currentTemplate.templateId === item.templateId }"
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button> @click="handleRowClick(item)"
</template> >
</el-table-column> <div class="template-item-header">
</el-table> <span class="template-item-title">{{ item.templateName }}</span>
<div class="template-item-actions">
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" <el-button size="mini" type="text" icon="el-icon-edit" @click.stop="handleUpdate(item)">修改</el-button>
:limit.sync="queryParams.pageSize" @pagination="getList" /> <el-button size="mini" type="text" icon="el-icon-delete" @click.stop="handleDelete(item)">删除</el-button>
</div>
</div>
<div class="template-item-meta">
<span class="template-unit">所属单位{{ item.templateUnit || '-' }}</span>
</div>
<div v-if="item.templateDesc" class="template-item-desc">{{ item.templateDesc }}</div>
</div>
<el-empty v-if="inspectionItemTemplateList.length === 0" description="暂无数据" :image-size="100" />
</div>
<!-- 添加或修改待检项方案对话框 --> <!-- 添加或修改待检项方案对话框 -->
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body> <el-dialog :title="title" :visible.sync="open" width="700px" append-to-body>
@@ -37,6 +51,11 @@
<el-form-item label="方案名称" prop="templateName"> <el-form-item label="方案名称" prop="templateName">
<el-input v-model="form.templateName" placeholder="请输入方案名称" /> <el-input v-model="form.templateName" placeholder="请输入方案名称" />
</el-form-item> </el-form-item>
<el-form-item label="方案单位" prop="templateUnit">
<el-select v-model="form.templateUnit" placeholder="请选择方案单位" filterable allow-create>
<el-option v-for="unit in templateUnitOptions" :key="unit" :label="unit" :value="unit" />
</el-select>
</el-form-item>
<el-form-item label="方案描述" prop="templateDesc"> <el-form-item label="方案描述" prop="templateDesc">
<el-input v-model="form.templateDesc" type="textarea" placeholder="请输入内容" /> <el-input v-model="form.templateDesc" type="textarea" placeholder="请输入内容" />
</el-form-item> </el-form-item>
@@ -154,35 +173,34 @@ export default {
CheckItemTransfer, CheckItemTransfer,
}, },
data() { data() {
return { return {
// 按钮loading // 按钮loading
buttonLoading: false, buttonLoading: false,
// 遮罩层 // 遮罩层
loading: true, loading: true,
// 选中数组 // 选中数组
ids: [], ids: [],
// 非单个禁用 // 非单个禁用
single: true, single: true,
// 非多个禁用 // 非多个禁用
multiple: true, multiple: true,
// 显示搜索条件 // 显示搜索条件
showSearch: true, showSearch: true,
// 总条数 // 待检项方案表格数据
total: 0, inspectionItemTemplateList: [],
// 待检项方案表格数据 // 方案单位选项
inspectionItemTemplateList: [], templateUnitOptions: [],
// 弹出层标题 // 弹出层标题
title: "", title: "",
// 是否显示弹出层 // 是否显示弹出层
open: false, open: false,
// 查询参数 // 查询参数
queryParams: { queryParams: {
pageNum: 1, templateName: undefined,
pageSize: 10, templateUnit: undefined,
templateName: undefined, templateDesc: undefined,
templateDesc: undefined, inspectionItem: undefined,
inspectionItem: undefined, },
},
// 表单参数 // 表单参数
form: {}, form: {},
// 表单校验 // 表单校验
@@ -190,6 +208,7 @@ export default {
}, },
checkItemList: [], checkItemList: [],
rightLoading: false, rightLoading: false,
isRowClicking: false,
currentTemplate: null, currentTemplate: null,
addItemOpen: false, addItemOpen: false,
addItemForm: { addItemForm: {
@@ -214,17 +233,27 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
listInspectionItemTemplate(this.queryParams).then(response => { listInspectionItemTemplate(this.queryParams).then(response => {
this.inspectionItemTemplateList = response.rows; this.inspectionItemTemplateList = response.rows || response.data || response;
this.total = response.total; const units = [...new Set(this.inspectionItemTemplateList.map(item => item.templateUnit).filter(Boolean))];
this.templateUnitOptions = units.sort();
this.loading = false; this.loading = false;
}); });
}, },
handleRowClick(row) { handleRowClick(row) {
if (this.isRowClicking) {
this.$message.info('正在查看数据,请稍后');
return;
}
this.isRowClicking = true;
this.currentTemplate = row; this.currentTemplate = row;
this.rightLoading = true; this.rightLoading = true;
getInfoByInspectionItem(row.inspectionItem).then(response => { getInfoByInspectionItem(row.inspectionItem).then(response => {
this.checkItemList = response.data || []; this.checkItemList = response.data || [];
this.rightLoading = false; this.rightLoading = false;
this.isRowClicking = false;
}).catch(() => {
this.rightLoading = false;
this.isRowClicking = false;
}); });
}, },
loadAvailableCheckItems() { loadAvailableCheckItems() {
@@ -339,7 +368,6 @@ export default {
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
this.queryParams.pageNum = 1;
this.getList(); this.getList();
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
@@ -425,3 +453,113 @@ export default {
} }
}; };
</script> </script>
<style scoped>
.template-list {
height: calc(100vh - 200px);
overflow-y: auto;
padding: 10px;
background: #f5f7fa;
border-radius: 4px;
}
.template-item {
background: #fff;
border: 1px solid #e4e7ed;
border-radius: 8px;
padding: 16px;
margin-bottom: 12px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.template-item:hover {
border-color: #409eff;
box-shadow: 0 4px 16px rgba(64, 158, 255, 0.15);
transform: translateY(-2px);
}
.template-item.active {
border-color: #409eff;
background: linear-gradient(135deg, #ecf5ff 0%, #f0f7ff 100%);
box-shadow: 0 4px 20px rgba(64, 158, 255, 0.25);
}
.template-item-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.template-item-title {
font-size: 16px;
font-weight: 600;
color: #303133;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.template-item-actions {
display: flex;
gap: 8px;
opacity: 0;
transition: opacity 0.3s;
}
.template-item:hover .template-item-actions {
opacity: 1;
}
.template-item.active .template-item-actions {
opacity: 1;
}
.template-item-meta {
font-size: 13px;
color: #67c23a;
margin-top: 8px;
}
.template-unit {
padding: 2px 8px;
background: #f0f9eb;
border-radius: 4px;
}
.template-item-desc {
font-size: 13px;
color: #909399;
line-height: 1.5;
padding-top: 10px;
margin-top: 10px;
border-top: 1px solid #f0f0f0;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
/* 滚动条样式 */
.template-list::-webkit-scrollbar {
width: 6px;
}
.template-list::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.template-list::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 3px;
}
.template-list::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}
</style>

View File

@@ -426,7 +426,7 @@ export default {
<style scoped> <style scoped>
.grind-page { background: #f4f5f7; height: 100%; } .grind-page { background: #f4f5f7; height: 100%; }
.grind-layout { display: flex; gap: 12px; height: 100%; align-items: flex-start; } .grind-layout { display: flex; gap: 12px; height: 100%; }
/* 左侧 */ /* 左侧 */
.grind-left { width: 240px; flex-shrink: 0; } .grind-left { width: 240px; flex-shrink: 0; }
@@ -440,7 +440,11 @@ export default {
/* 辊列表 */ /* 辊列表 */
.roll-filter { padding: 0 0 4px; } .roll-filter { padding: 0 0 4px; }
.roll-list { overflow-y: auto; flex: 1; margin: 0 -12px; } ::v-deep .el-card .el-card__body {
overflow-y: scroll;
overflow-x: hidden;
}
.roll-list { overflow-y: auto; flex: 1; min-height: 0; padding: 0; }
.roll-item { padding: 8px 12px; cursor: pointer; border-bottom: 1px solid #f0f2f5; } .roll-item { padding: 8px 12px; cursor: pointer; border-bottom: 1px solid #f0f2f5; }
.roll-item:hover { background: #f5f7fa; } .roll-item:hover { background: #f5f7fa; }
.roll-item--active { background: #e8f4ff !important; border-left: 3px solid #409eff; } .roll-item--active { background: #e8f4ff !important; border-left: 3px solid #409eff; }

View File

@@ -94,7 +94,7 @@ public class WmsMaterialCoilController extends BaseController {
* 独立的统计接口,使用与分页列表相同的查询条件 * 独立的统计接口,使用与分页列表相同的查询条件
*/ */
@PostMapping("/statisticsList") @PostMapping("/statisticsList")
public R<Map<String, BigDecimal>> getStatistics(WmsMaterialCoilBo bo) { public R<Map<String, BigDecimal>> getStatistics(@RequestBody WmsMaterialCoilBo bo) {
return R.ok(iWmsMaterialCoilService.getStatistics(bo)); return R.ok(iWmsMaterialCoilService.getStatistics(bo));
} }

View File

@@ -27,6 +27,10 @@ public class WmsBonusPool extends BaseEntity {
*/ */
@TableId(value = "pool_id") @TableId(value = "pool_id")
private Long poolId; private Long poolId;
/**
* 奖金池名称
*/
private String poolName;
/** /**
* 产线 * 产线
*/ */

View File

@@ -26,6 +26,11 @@ public class WmsBonusPoolBo extends BaseEntity {
*/ */
private Long poolId; private Long poolId;
/**
* 奖金池名称
*/
private String poolName;
/** /**
* 产线 * 产线
*/ */

View File

@@ -29,6 +29,12 @@ public class WmsBonusPoolVo extends BaseEntity {
@ExcelProperty(value = "主键ID") @ExcelProperty(value = "主键ID")
private Long poolId; private Long poolId;
/**
* 奖金池名称
*/
@ExcelProperty(value = "奖金池名称")
private String poolName;
/** /**
* 产线 * 产线
*/ */

View File

@@ -61,6 +61,7 @@ public class WmsBonusPoolServiceImpl implements IWmsBonusPoolService {
private LambdaQueryWrapper<WmsBonusPool> buildQueryWrapper(WmsBonusPoolBo bo) { private LambdaQueryWrapper<WmsBonusPool> buildQueryWrapper(WmsBonusPoolBo bo) {
Map<String, Object> params = bo.getParams(); Map<String, Object> params = bo.getParams();
LambdaQueryWrapper<WmsBonusPool> lqw = Wrappers.lambdaQuery(); LambdaQueryWrapper<WmsBonusPool> lqw = Wrappers.lambdaQuery();
lqw.like(StringUtils.isNotBlank(bo.getPoolName()), WmsBonusPool::getPoolName, bo.getPoolName());
lqw.eq(StringUtils.isNotBlank(bo.getProductionLine()), WmsBonusPool::getProductionLine, bo.getProductionLine()); lqw.eq(StringUtils.isNotBlank(bo.getProductionLine()), WmsBonusPool::getProductionLine, bo.getProductionLine());
lqw.eq(bo.getBonusTime() != null, WmsBonusPool::getBonusTime, bo.getBonusTime()); lqw.eq(bo.getBonusTime() != null, WmsBonusPool::getBonusTime, bo.getBonusTime());
lqw.eq(bo.getBonusStartTime() != null, WmsBonusPool::getBonusStartTime, bo.getBonusStartTime()); lqw.eq(bo.getBonusStartTime() != null, WmsBonusPool::getBonusStartTime, bo.getBonusStartTime());

View File

@@ -6,6 +6,7 @@
<resultMap type="com.klp.domain.WmsBonusPool" id="WmsBonusPoolResult"> <resultMap type="com.klp.domain.WmsBonusPool" id="WmsBonusPoolResult">
<result property="poolId" column="pool_id"/> <result property="poolId" column="pool_id"/>
<result property="poolName" column="pool_name"/>
<result property="productionLine" column="production_line"/> <result property="productionLine" column="production_line"/>
<result property="bonusTime" column="bonus_time"/> <result property="bonusTime" column="bonus_time"/>
<result property="bonusStartTime" column="bonus_start_time"/> <result property="bonusStartTime" column="bonus_start_time"/>