• feat(.cursor): 更新数据库连接配置并添加业务操作日志规范
    
    更新 MCP 数据库连接字符串,将生产环境连接改为开发环境连接;
    在项目规则中添加业务操作日志要求,规定删除、修改、作废、导出
    等写操作必须记录业务日志到 lq_business_operation_log 表;
    同时在 AGENTS 和 CLAUDE 配置中添加业务操作日志相关的技能引用。
    ```
    “wangming” authored
     
    Browse Dir »

  • chore(config): 切换数据库连接配置从开发环境到生产环境
    
    切换MCP配置中的数据库连接字符串,将默认连接从lqerp_dev开发库更改为lqerp生产库,
    同时注释掉原来的开发环境配置以备后续使用
    ```
    “wangming” authored
     
    Browse Dir »







  • - Added a new endpoint to fix duplicate inventory usage records by merging entries based on UsageBatchId, ProductId, and StoreId.
    - Implemented logic to retain the earliest record while summing quantities and amounts, marking others as invalid.
    - Enhanced the service to log the repair process and provide feedback on the number of processed and invalidated records.
    “wangming” authored
     
    Browse Dir »

  • - Redesigned the welcome page layout with a new hero section and action cards for quick access to features.
    - Added a feature list in the welcome component to dynamically render action cards.
    - Updated the tech department dashboard to improve table display by reducing max height and ensuring proper pagination.
    - Enhanced inventory service documentation for clarity on stock update processes.
    - Introduced teacher performance metrics in the billing service for better reporting accuracy.
    “wangming” authored
     
    Browse Dir »





  • 1. 工资查询接口优化:
       - 修改所有9个薪酬服务的员工工资查询接口
       - 只能查询已锁定且未确认的工资(IsLocked=1 && EmployeeConfirmStatus!=1)
       - 员工确认工资后无法再次查看
       - 更新接口注释说明新的查询逻辑
    
    2. 用户列表接口增强:
       - 添加门店ID(mdid)搜索功能
       - 添加岗位(gw)搜索功能
       - 添加启用状态(enabledMark)筛选功能
       - 支持组合搜索(门店ID+岗位+状态)
    
    3. 文档和测试:
       - 新增员工工资查询接口逻辑梳理文档
       - 新增用户列表搜索功能测试脚本
    “wangming” authored
     
    Browse Dir »



  • - 在多个薪酬统计实体中新增员工确认状态、确认时间和确认备注字段
    - 这些字段用于记录员工对薪酬数据的确认情况,提升数据管理的准确性和可追溯性
    - 涉及的实体包括:LqAssistantSalaryStatisticsEntity, LqBusinessUnitManagerSalaryStatisticsEntity, LqDirectorSalaryStatisticsEntity, LqMajorProjectDirectorSalaryStatisticsEntity, LqMajorProjectTeacherSalaryStatisticsEntity, LqSalaryStatisticsEntity, LqStoreManagerSalaryStatisticsEntity, LqTechGeneralManagerSalaryStatisticsEntity, LqTechTeacherSalaryStatisticsEntity
    “wangming” authored
     
    Browse Dir »