-
- Refactored multiple worker scripts (css.worker.js, editor.worker.js, html.worker.js, json.worker.js, ts.worker.js) for improved performance and maintainability. - Removed the unused CSS file (app.26c706cb.css) to streamline the project structure and reduce unnecessary file bloat.
-
- 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.
-
- 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.
-
- Updated file upload methods to first save files locally before uploading to OSS. - Added new methods for handling Base64 image uploads with local storage and OSS integration. - Improved error handling and logging for file upload processes. - Updated appsettings.json to include LocalFileBaseUrl for local file access.
-
1. 工资查询接口优化: - 修改所有9个薪酬服务的员工工资查询接口 - 只能查询已锁定且未确认的工资(IsLocked=1 && EmployeeConfirmStatus!=1) - 员工确认工资后无法再次查看 - 更新接口注释说明新的查询逻辑 2. 用户列表接口增强: - 添加门店ID(mdid)搜索功能 - 添加岗位(gw)搜索功能 - 添加启用状态(enabledMark)筛选功能 - 支持组合搜索(门店ID+岗位+状态) 3. 文档和测试: - 新增员工工资查询接口逻辑梳理文档 - 新增用户列表搜索功能测试脚本
-
- 修复科技部总经理Cell金额计算问题 - 更新主任工资相关服务和前端页面 - 优化科技部老师工资计算逻辑 - 更新客户信息服务和报销申请服务 - 修复系统映射器和权限模型 - 完善工资管理前端页面显示
-
- 创建 scripts/test/ 目录,移动测试脚本和日志文件 - 创建 docs/test-reports/ 目录,移动测试报告和说明文档 - 将测试相关文件从根目录整理到对应文件夹 - 保持根目录整洁,只保留必要的项目配置文件
-
- 在多个薪酬统计实体中新增员工确认状态、确认时间和确认备注字段 - 这些字段用于记录员工对薪酬数据的确认情况,提升数据管理的准确性和可追溯性 - 涉及的实体包括:LqAssistantSalaryStatisticsEntity, LqBusinessUnitManagerSalaryStatisticsEntity, LqDirectorSalaryStatisticsEntity, LqMajorProjectDirectorSalaryStatisticsEntity, LqMajorProjectTeacherSalaryStatisticsEntity, LqSalaryStatisticsEntity, LqStoreManagerSalaryStatisticsEntity, LqTechGeneralManagerSalaryStatisticsEntity, LqTechTeacherSalaryStatisticsEntity
-
- 创建docs文件夹,移动39个需求相关的md文档 - 创建scripts/sh文件夹,移动18个shell测试脚本 - 创建scripts/py文件夹,移动4个Python脚本 - 将3个SQL文件移动到sql文件夹 - 保留README.md和PROJECT_RULES.md在根目录