Fix Bug #503: fallback修复
This commit is contained in:
18
com/openhis/web/inpatient/service/DispensingService.java
Normal file
18
com/openhis/web/inpatient/service/DispensingService.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package com.openhis.web.inpatient.service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 住院发退药业务接口
|
||||
*/
|
||||
public interface DispensingService {
|
||||
|
||||
/**
|
||||
* 发药或退药核心业务,确保明细与汇总单同步。
|
||||
*
|
||||
* @param prescriptionId 处方ID
|
||||
* @param detailList 本次操作的明细列表
|
||||
*/
|
||||
void dispense(Long prescriptionId, List<Map<String, Object>> detailList);
|
||||
}
|
||||
Reference in New Issue
Block a user