From 47a751cb301d05276ae5d75145d57b2d090fe4e1 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: 星期一, 01 七月 2024 10:58:35 +0800
Subject: [PATCH] change
---
src/main/webapp/warehouse_mng.xhtml | 42 +++++++++++++++++++++++++++++++++++++++++-
1 files changed, 41 insertions(+), 1 deletions(-)
diff --git a/src/main/webapp/warehouse_mng.xhtml b/src/main/webapp/warehouse_mng.xhtml
index 391df19..c8c96c7 100644
--- a/src/main/webapp/warehouse_mng.xhtml
+++ b/src/main/webapp/warehouse_mng.xhtml
@@ -68,6 +68,26 @@
value="#{'楼号:'.concat(row.location1).concat(' - 地址号:'.concat(row.location2))}"></h:outputText>
</p:column>
+ <p:column headerText="温度最大值" width="50">
+ <h:outputText
+ value="#{row.temperatureMax}"></h:outputText>
+ </p:column>
+
+ <p:column headerText="温度最小值" width="50">
+ <h:outputText
+ value="#{row.temperatureMin}"></h:outputText>
+ </p:column>
+
+ <p:column headerText="湿度最大值" width="50">
+ <h:outputText
+ value="#{row.humidityMax}"></h:outputText>
+ </p:column>
+
+ <p:column headerText="湿度最小值" width="50">
+ <h:outputText
+ value="#{row.humidityMin}"></h:outputText>
+ </p:column>
+
<p:column headerText="负责部门">
<h:outputText value="#{baseMetaService.getBaseMetaValue(row.department)}"/>
</p:column>
@@ -115,6 +135,26 @@
<f:selectItems value="#{baseMetaService.getBaseMetaList(constants.BASE_META_GROUP_USER_DEPARTMENT)}"
var="item" itemLabel="#{item.metaValue}" itemValue="#{item.id}"></f:selectItems>
</p:selectOneMenu>
+
+ <p:outputLabel value="温度最大值"></p:outputLabel>
+ <p:inputNumber value="#{warehouseMngController.sysWarehouse.temperatureMax}"
+ modifyValueOnWheel="false"
+ decimalPlaces="4"/>
+
+ <p:outputLabel value="温度最小值"></p:outputLabel>
+ <p:inputNumber value="#{warehouseMngController.sysWarehouse.temperatureMin}"
+ modifyValueOnWheel="false"
+ decimalPlaces="4"/>
+
+ <p:outputLabel value="湿度最大值"></p:outputLabel>
+ <p:inputNumber value="#{warehouseMngController.sysWarehouse.humidityMax}"
+ modifyValueOnWheel="false"
+ decimalPlaces="4"/>
+
+ <p:outputLabel value="湿度最大值"></p:outputLabel>
+ <p:inputNumber value="#{warehouseMngController.sysWarehouse.humidityMin}"
+ modifyValueOnWheel="false"
+ decimalPlaces="4"/>
</p:panelGrid>
<p:panel styleClass="btn">
<p:commandButton value="保存"
@@ -126,4 +166,4 @@
</h:form>
</p:dialog>
</ui:composition>
-</html>
\ No newline at end of file
+</html>
--
Gitblit v1.9.2