294 检查项目设置-》套餐设置:基本信息服务费字段的值系统没有自动合计套餐明细服务费字段所有行的值

295 检查项目设置-》套餐设置:套餐明细数量字段后面需要增加单位字段
This commit is contained in:
Ranyunqiao
2026-03-30 09:03:49 +08:00
parent 6d23d36a9c
commit b5527cc07f
4 changed files with 44 additions and 7 deletions

View File

@@ -49,6 +49,9 @@ public class CheckPackageDetailDto {
@NotNull(message = "数量不能为空")
private Integer quantity;
/** 单位 */
private String unit;
/** 单价 */
@NotNull(message = "单价不能为空")
private BigDecimal unitPrice;

View File

@@ -84,6 +84,7 @@
T1.id,
T1.bus_no,
T1.name,
T1.permitted_unit_code,
T2.price as retail_price
FROM wor_activity_definition T1
INNER JOIN adm_charge_item_definition T2