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

This commit is contained in:
2025-08-12 10:12:29 +08:00
11 changed files with 9 additions and 16 deletions

View File

@@ -104,7 +104,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="经办人" align="center" prop="reporter" /> <el-table-column label="经办人" align="center" prop="reporter" />
<el-table-column label="涉及项目" align="center" prop="projectName" /> <!-- <el-table-column label="涉及项目" align="center" prop="projectName" />-->
<el-table-column label="备注" align="center" prop="remark" /> <el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope"> <template slot-scope="scope">

View File

@@ -132,10 +132,6 @@ export default {
const interval = Math.ceil(maxValue / 5); // 将刻度分为5份 const interval = Math.ceil(maxValue / 5); // 将刻度分为5份
const option = { const option = {
title: {
text: this.selectedWarehouseId ? '当前仓库及子仓库物料TOP10' : '全部仓库物料TOP10',
left: 'center'
},
tooltip: { tooltip: {
trigger: 'axis', trigger: 'axis',
axisPointer: { axisPointer: {

View File

@@ -33,7 +33,7 @@ import java.util.List;
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor
@RestController @RestController
@RequestMapping("/oa/express") @RequestMapping("/wms/express")
public class WmsExpressController extends BaseController { public class WmsExpressController extends BaseController {
private final IWmsExpressService iWmsExpressService; private final IWmsExpressService iWmsExpressService;

View File

@@ -32,7 +32,7 @@ import java.util.List;
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor
@RestController @RestController
@RequestMapping("/oa/expressQuestion") @RequestMapping("/wms/expressQuestion")
public class WmsExpressQuestionController extends BaseController { public class WmsExpressQuestionController extends BaseController {
private final IWmsExpressQuestionService IWmsExpressQuestionService; private final IWmsExpressQuestionService IWmsExpressQuestionService;

View File

@@ -32,7 +32,7 @@ import java.util.List;
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor
@RestController @RestController
@RequestMapping("/system/reportDetail") @RequestMapping("/wms/reportDetail")
public class WmsReportDetailController extends BaseController { public class WmsReportDetailController extends BaseController {
private final IWmsReportDetailService IWmsReportDetailService; private final IWmsReportDetailService IWmsReportDetailService;

View File

@@ -32,7 +32,7 @@ import java.util.List;
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor
@RestController @RestController
@RequestMapping("/system/reportSummary") @RequestMapping("/wms/reportSummary")
public class WmsReportSummaryController extends BaseController { public class WmsReportSummaryController extends BaseController {
private final IWmsReportSummaryService IWmsReportSummaryService; private final IWmsReportSummaryService IWmsReportSummaryService;

View File

@@ -17,7 +17,7 @@ import java.util.Date;
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@TableName("oa_express") @TableName("wms_express")
public class WmsExpress extends BaseEntity { public class WmsExpress extends BaseEntity {
private static final long serialVersionUID=1L; private static final long serialVersionUID=1L;

View File

@@ -17,7 +17,7 @@ import java.util.Date;
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@TableName("oa_express_question") @TableName("wms_express_question")
public class WmsExpressQuestion extends BaseEntity { public class WmsExpressQuestion extends BaseEntity {
private static final long serialVersionUID=1L; private static final long serialVersionUID=1L;

View File

@@ -15,7 +15,7 @@ import lombok.EqualsAndHashCode;
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@TableName("oa_report_detail") @TableName("wms_report_detail")
public class WmsReportDetail extends BaseEntity { public class WmsReportDetail extends BaseEntity {
private static final long serialVersionUID=1L; private static final long serialVersionUID=1L;

View File

@@ -17,7 +17,7 @@ import java.util.Date;
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@TableName("oa_report_summary") @TableName("wms_report_summary")
public class WmsReportSummary extends BaseEntity { public class WmsReportSummary extends BaseEntity {
private static final long serialVersionUID=1L; private static final long serialVersionUID=1L;

View File

@@ -45,9 +45,6 @@
<if test="bo.reporter != null and bo.reporter != ''"> <if test="bo.reporter != null and bo.reporter != ''">
AND s.reporter LIKE CONCAT('%', #{bo.reporter}, '%') AND s.reporter LIKE CONCAT('%', #{bo.reporter}, '%')
</if> </if>
<if test="bo.projectId != null">
AND s.project_id = #{bo.projectId}
</if>
<if test="bo.type != null"> <if test="bo.type != null">
AND s.type = #{bo.type} AND s.type = #{bo.type}
</if> </if>