Merge branch 'zhaoyun' of http://192.168.110.253:3000/wangyizhe/his into zhaoyun
# Conflicts: # openhis-server-new/openhis-domain/src/main/java/com/openhis/surgicalschedule/domain/OpSchedule.java
This commit is contained in:
@@ -25,3 +25,11 @@
|
|||||||
1. `initData()`: Add `formData.executeTime = formatDateTime(new Date())` after line 899
|
1. `initData()`: Add `formData.executeTime = formatDateTime(new Date())` after line 899
|
||||||
2. `resetForm()`: Change `executeTime: null` to `executeTime: formatDateTime(new Date())` at line 1550
|
2. `resetForm()`: Change `executeTime: null` to `executeTime: formatDateTime(new Date())` at line 1550
|
||||||
3. `loadApplicationToForm()`: Fix `isPackage` logic at line 2000
|
3. `loadApplicationToForm()`: Fix `isPackage` logic at line 2000
|
||||||
|
|
||||||
|
修复结果:✅ 成功,5行改动
|
||||||
|
|
||||||
|
### 修改内容
|
||||||
|
1. `initData()` (line ~898): 新增 `formData.executeTime = formatDateTime(new Date())` — 新增检验申请单时执行时间自动填充当前时间
|
||||||
|
2. `resetForm()` (line ~1552): `executeTime: null` → `executeTime: formatDateTime(new Date())` — 重置表单/新增时执行时间默认当前时间
|
||||||
|
3. `loadApplicationToForm()` (line ~2002): `isPackage` 判定从 `item.feePackageId != null || item.itemName?.includes('套餐')` 改为 `item.feePackageId != null && item.feePackageId !== '' && item.feePackageId !== 'null' && item.packageName` — 与 `loadCategoryItems()` 保持一致,只有真正的套餐项目才显示"套餐"标签
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user