diff --git a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/basedatamanage/dto/OrgLocQueryParam.java b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/basedatamanage/dto/OrgLocQueryParam.java index 54012639..0d8da67a 100755 --- a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/basedatamanage/dto/OrgLocQueryParam.java +++ b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/basedatamanage/dto/OrgLocQueryParam.java @@ -31,4 +31,9 @@ public class OrgLocQueryParam implements Serializable { /** 发放类别 */ private String distributionCategoryCode; + /** + * 项目编码 | 药品:1 耗材:2 + */ + private String itemCode; + } diff --git a/openhis-server-new/openhis-application/src/main/resources/mapper/doctorstation/DoctorStationAdviceAppMapper.xml b/openhis-server-new/openhis-application/src/main/resources/mapper/doctorstation/DoctorStationAdviceAppMapper.xml index bb6c9b67..7bd25d0f 100755 --- a/openhis-server-new/openhis-application/src/main/resources/mapper/doctorstation/DoctorStationAdviceAppMapper.xml +++ b/openhis-server-new/openhis-application/src/main/resources/mapper/doctorstation/DoctorStationAdviceAppMapper.xml @@ -894,7 +894,6 @@ AND (t1.name ILIKE '%' || #{searchKey} || '%' OR t1.py_str ILIKE '%' || #{searchKey} || '%') ORDER BY t1.ID, t1.name ASC, t2.ID ASC - LIMIT #{limit} OFFSET #{offset} diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/adviceBaseList.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/adviceBaseList.vue index 0b45d830..a3fe5c71 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/adviceBaseList.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/adviceBaseList.vue @@ -23,7 +23,7 @@ diff --git a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/api.js b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/api.js index bcfde13e..69eb11e7 100755 --- a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/api.js +++ b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/api.js @@ -111,6 +111,16 @@ export function getDiseaseTreatmentInitLoc(id) { method: 'get', }); } +/** + * 查询科室取药配置(耗材默认库房) + */ +export function getOrgLocConfig(params) { + return request({ + url: '/base-data-manage/org-loc/org-loc', + method: 'get', + params: params, + }); +} // 住院护士站费用明细 export function getCostDetail(queryParams) { return request({