• - Swapped the API base URL in the development environment to use localhost for local testing.
    - Enhanced the member portrait dialog with improved layout and additional member attributes, including age and birthday type.
    - Added birthday type filtering options in the birthday view, allowing users to display members with solar and lunar birthdays.
    - Updated the backend to support querying members based on specified date ranges and birthday types.
    - Introduced new performance metrics in the personal performance statistics view, categorizing performance by various service types.
    “wangming” authored
     
    Browse File »

  • - Updated the SaaS documentation to clarify the separation of core business modules.
    - Enhanced the ImageModerationService for better error handling and configuration management.
    - Improved code readability by removing unnecessary whitespace and optimizing LINQ queries in various services.
    - Adjusted performance metrics calculations in the LqStoreDashboardService for accuracy in reporting.
    - Updated DTOs to reflect changes in performance metrics definitions.
    “wangming” authored
     
    Browse File »




  • 1. 线索池客户统计接口:新增归属门店、电话、拓客人员字段
    2. 会员信息接口:确保列表和单个查询返回所有字段(包括isEffective)
    3. 修改开单信息接口:重命名为UpdateBillingInfo,支持修改备注和简介
    4. 金三角开卡业绩统计:改为实时统计,优化查询性能
    5. 科技部开单业绩统计:改为实时统计,优化查询性能
    6. 门店耗卡业绩统计:改为实时统计,优化查询性能
    7. 部门消耗业绩统计:改为实时统计,优化查询性能,支持健康师和科技部老师两种类型
    8. 女神卡会员列表接口:新增门店筛选功能
    “wangming” authored
     
    Browse File »



  • - 创建健康师工资额外计算表(lq_salary_extra_calculation),包含基础奖励业绩、合作奖励业绩、新客业绩、新客成交率、升单业绩、升单成交率、升单人头数、其他业绩加、其他业绩减等字段
    - 在健康师工资表中添加:基础奖励业绩、合作奖励业绩、升单人头数、新客业绩提成金额、升单业绩提成金额、其他业绩加、其他业绩减、实际基础业绩、实际合作业绩
    - 创建健康师工资额外计算服务,包含列表查询和Excel导入功能
    - 添加为新店健康师生成模拟数据的方法
    - 添加相关SQL脚本用于创建表和添加字段
    “wangming” authored
     
    Browse File »



  • - 删除业绩表的部门字段(F_DepartmentId)
    - 为6个业绩表添加门店ID字段(F_StoreId)
    - 为6个业绩表添加品项名称字段(F_ItemName)
    - 创建SQL脚本同步门店ID和品项名称数据
    - 更新6个业绩表的Entity类,添加StoreId和ItemName属性
    - 优化同步SQL性能,添加索引提升查询效率
    “wangming” authored
     
    Browse File »



  • - 修复GetItemRemainingCount方法中SumAsync返回null的问题
    - 修复billing-item-detail-list接口日期参数解析问题,支持startTime/endTime参数
    - 新增清洗管理功能:门店消耗品库存、清洗商、清洗流水管理
    - 新增只买了女神卡的会员统计功能
    - 优化统计接口,使用SqlSugar ORM替代原始SQL
    “wangming” authored
     
    Browse File »







  • - 新增门店剩余权益统计接口(GetStoreRemainingRights)
    - 新增客户到店次数统计接口(GetCustomerVisitFrequency)
    - 新增健康师排行榜接口(GetHealthCoachBillingRanking等)
    - 新增门店项目指标统计接口(GetStoreItemStatistics)
    - 优化GetStoreRemainingRights查询性能(分批查询、并行执行)
    - 修复GetItemStatistics门店筛选问题
    - 修复GetTechTeacherDailyStatistics教师姓名查询
    - 修改DeleteJsjUserRelation支持按ID删除并更新状态
    - 新增拓客统计接口(GetTkStatistics)
    - 新增开单项目数、消耗项目数统计
    - 新增数据库索引优化SQL和视图创建SQL
    “wangming” authored
     
    Browse File »

  • - GetBillingProjectCount改为统计开单项目次数总和
    - GetConsumeProjectCount改为统计消耗项目次数总和
    - 使用F_ProjectNumber字段求和而非项目编号去重
    - 更新注释说明项目数为项目次数总和
    “wangming” authored
     
    Browse File »
  • - 新增BillingProjectCount和ConsumeProjectCount字段到EmployeePerformanceStatisticsOutput
    - 新增GetBillingProjectCount方法统计开单项目数
    - 新增GetConsumeProjectCount方法统计消耗项目数
    - 通过项目编号(px)去重统计项目数
    - 更新API注释,添加新字段说明
    “wangming” authored
     
    Browse File »
  • 主要变更:
    1. 修复人次统计逻辑,改为使用客户ID和日期的组合去重(COUNT(DISTINCT CONCAT(hy, '-', DATE(hksj))))
    2. 新增员工业绩统计接口GetEmployeePerformanceStatistics,支持查询员工在指定月份的完整业绩数据
    3. 修复品项统计的门店过滤问题,使用SqlFunc.Subqueryable避免别名冲突
    4. 修复门店顾客详情SQL字段错误(F_Status改为yysj,F_CreateTime改为kdrq/hksj)
    5. 新增员工业绩统计输入输出DTO类
    
    功能特性:
    - 支持查询员工的拓客、邀约、预约、开单、消耗、退卡、人头、人次等完整统计
    - 所有SQL改为字符串拼接方式,确保参数正确传递
    - 分步统计设计,便于维护和优化
    “wangming” authored
     
    Browse File »

  • - Added refund performance and count fields to personal and store total performance statistics.
    - Introduced actual performance calculations that account for refunds.
    - Updated relevant DTOs and entity classes to include new fields.
    - Improved front-end tables to display refund-related data in performance statistics views.
    “wangming” authored
     
    Browse File »


  • - 新增 BillingRecordSummaryQueryInput 查询参数类
    - 新增 LqKdKdjlbUpdateAmountInput 修改金额输入类
    - 完善 GetBillingRecordSummaryByStoreId 方法,支持按来源类型分类品项明细
    - 优化 LqXmzlService 字段去重查询功能
    - 完善 LqPackageInfoService 营销活动品项详情查询
    - 更新相关实体和DTO字段映射
    “wangming” authored
     
    Browse File »


  • - 修复LqZjlMdsmxszService.GetPageList接口的排序规则冲突
    - 修复LqStatisticsService中工资统计相关的排序规则冲突
    - 在涉及lq_kd_kdjlb表的JOIN操作中添加COLLATE子句
    - 更新UpdateSalaryStatisticsFromOtherTables方法中的COLLATE子句
    - 创建修复排序规则冲突的精简版SQL脚本
    “wangming” authored
     
    Browse File »