From 89e4e43782d84b55ed3a4ab5d096b00d88f8f155 Mon Sep 17 00:00:00 2001 From: gdg <764716047@qq.com> Date: 星期五, 06 十一月 2020 14:53:13 +0800 Subject: [PATCH] bug:从历史的申购再次申购 出现申购价格为空的情况 已修复 --- src/main/webapp/apply_mng_new.xhtml | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/apply_mng_new.xhtml b/src/main/webapp/apply_mng_new.xhtml index 77f1661..bdad796 100644 --- a/src/main/webapp/apply_mng_new.xhtml +++ b/src/main/webapp/apply_mng_new.xhtml @@ -68,7 +68,7 @@ </p:column> <p:column headerText="含税售价"> - <h:outputText value="#{row.reagent!=null?row.reagent.price:''}"></h:outputText> + <h:outputText value="#{row.reagent.price}"></h:outputText> </p:column> <p:column headerText="CAS号"> @@ -438,7 +438,7 @@ </h:form> </p:dialog> </p:tab> - <p:tab title="申请履历"> + <p:tab title="申请履历">` <h:form id="applyMngNewHistoryForm"> <p:panelGrid styleClass="apply-mng-new-reagent-filter" columns="5" style="margin-left: -18px"> @@ -491,10 +491,14 @@ <h:outputText value="#{row.reagent!=null?(''.concat(row.reagent.mainMetering).concat(baseMetaService.getBaseMetaValue(row.reagent.reagentUnit))):''}"></h:outputText> </p:column> - <p:column headerText="含税售价"> + <p:column headerText="试剂单价"> <h:outputText value="#{row.reagent!=null?row.reagent.price:''}"></h:outputText> </p:column> + <p:column headerText="含税售价"> + <h:outputText value="#{row.applyPrice}"></h:outputText> + </p:column> + <p:column headerText="每箱数量"> <h:outputText value="#{row.reagent!=null?row.reagent.perBox:''}"></h:outputText> </p:column> -- Gitblit v1.9.2