hrbwms/src/webapp/WEB-INF/classes/config/origen/receiving/editVehicleOutputPage.xml

34 lines
1.9 KiB
XML
Raw Normal View History

2024-08-03 17:28:33 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<pages>
<editPage id="editVehicleOutputPage" title="editVehicleOutputPage" entityClass="com.dev.swms.server.model.receiving.ASN" width="300" height="180">
<inputUIs>
<hidden id="asn.id" reserve="false"/>
<date id="asn.outputDate" title="editVehicleOutputPage.asn.outputDate" row="1" span="1" readOnly="true" required="false" reserve="false" forceOverride="true" inVisible="false" showTime="true" manualEditable="true" defaultCurrentDate="true"/>
<remote id="workerId" title="editVehicleOutputPage.worker.id" row="2" span="1" readOnly="false" required="false" reserve="false" forceOverride="true" inVisible="false" manualEditable="true" displayColumn="3" percentSignPosition="both" displayedTableHead="序号,编码,名称">
<hql><![CDATA[select w.id, w.code, w.name from Worker w
where w.code like :param and w.disabled=false
and w.warehouse.id = #{SESSION_WAREHOUSE_ID}
]]></hql>
</remote>
</inputUIs>
<buttons>
<commit id="output" title="editVehicleOutputPage.output" enableType="none" invisible="false">
<mappings>
<mapping id="asn.id" className="long"/>
<mapping id="asn.outputDate" className="date"/>
<mapping id="workerId" className="long"/>
</mappings>
<actions>
<action managerName="asnManager" methodName="output" parameter="asn.id,asn.outputDate,workerId"/>
</actions>
<forwards>
<forward name="closeWindow" newEnabled="true" editEnabled="true"/>
<forward name="refreshWindow" newEnabled="true" editEnabled="true"/>
<forward name="refreshParent" newEnabled="true" editEnabled="true"/>
</forwards>
</commit>
</buttons>
</editPage>
</pages>