Commit b99febba by s_guodong

快照

parent 973a9d15
......@@ -5,21 +5,31 @@ import com.brilliance.mda.runtime.request.BaseVO;
import com.brilliance.mda.runtime.response.ResponseSet;
import com.brilliance.mda.support.service.ICommonService;
import com.brilliance.mda.support.td.BDAuthInfo;
import com.ceb.gjjs.mda.bo.Usr;
import com.ceb.gjjs.mda.dao.UsrMapper;
import com.ceb.gjjs.mda.special.vo.RequestBaseVo;
import com.ceb.gjjs.mda.special.vo.RequestCommonVo;
import com.ceb.gjjs.mda.util.ReflectUtil;
import com.ceb.gjjs.mda.util.ValidatorUtil;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @author wangguangchao
* @create 2021-09-24 11:51
*/
public abstract class AbstractCommonResource<V extends BaseVO> {
@Autowired
private UsrMapper usrMapper;
protected abstract ICommonService getCommonService();
protected abstract V getVo();
......@@ -150,8 +160,9 @@ public abstract class AbstractCommonResource<V extends BaseVO> {
}
protected <T> ResponseSet<T> executeRule(RequestBaseVo requestBaseVo, Class<T> respondVoClass, String rule) {
protected <T> ResponseSet<T> executeRule(RequestCommonVo requestCommonVo, Class<T> respondVoClass, String rule) {
V baseVO = getVo();
RequestBaseVo requestBaseVo = requestCommonVo.getRoot();
T t = null;
try {
t = respondVoClass.newInstance();
......@@ -174,8 +185,9 @@ public abstract class AbstractCommonResource<V extends BaseVO> {
}
protected <T> ResponseSet<T> executeCheck(RequestBaseVo requestBaseVo, Class<T> respondVoClass, String rule) {
protected <T> ResponseSet<T> executeCheck(RequestCommonVo<RequestBaseVo> requestCommonVo, Class<T> respondVoClass, String rule) {
V baseVO = getVo();
RequestBaseVo requestBaseVo = requestCommonVo.getRoot();
T t = null;
try {
t = respondVoClass.newInstance();
......@@ -261,7 +273,17 @@ public abstract class AbstractCommonResource<V extends BaseVO> {
private void before(V baseVO) {
BDAuthInfo authInfo = (BDAuthInfo) MdaEnv.getAuthInfo();
authInfo.setCifno(baseVO.getCifno());
authInfo.setUsrInr(baseVO.getUserid());
authInfo.setUserid(baseVO.getUserid());
authInfo.setSrc(baseVO.getSrc());
Map<String, Object> argsMap = new HashMap<>();
argsMap.put("sql", "select * from usr where cid='" + baseVO.getCifno() + "'");
List<Usr> usrList = usrMapper.dyncRead(argsMap);
if (usrList.size() == 0) {
return;
}
String usrInr = usrList.get(0).getInr();
authInfo.setUsrInr(usrInr);
}
......
package com.ceb.gjjs.mda.special.vo;
import lombok.Data;
import java.io.Serializable;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/17
*/
@Data
public class RequestCommonVo<T extends RequestBaseVo> implements Serializable {
private T root;
}
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="800px" height="600px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/acbame/PD000001/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox id="A718" style="position:absolute;left:102px;top:130px;height:192px;width:480.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="acbgrp\acblst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(no)" width="80px">
<custom-attributes i18n="/acbame/TH000007/"/>
<custom-attributes columnName="no"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(inwardacct)" width="200px">
<custom-attributes i18n="/acbame/TH000006/"/>
<custom-attributes columnName="inwardacct"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(acbflg)" width="40px">
<custom-attributes i18n="/acbame/TH000032/"/>
<custom-attributes columnName="acbflg"/>
<custom-attributes columnControl="checkbox"/>
<custom-attributes columnStyle="width:35px;"/>
</listheader>
<listheader sort="auto(isuse)" width="150px">
<custom-attributes i18n="/acbame/TH000036/"/>
<custom-attributes columnName="isuse"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:107px;top:104px;height:16px;width:106.0px;">
<custom-attributes i18n="/acbame/LT000009/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:427px;top:104px;">
<custom-attributes fieldUrl="cslacb"/>
<custom-attributes i18n="/acbame/BT000010/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:260px;top:50px;height:16px;width:140.0px;">
<custom-attributes i18n="/acbame/LT000011/"/>
</label>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="600px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:100px;height:16px;">
<custom-attributes i18n="/acbame/LT000012/"/>
</label>
<textbox id="A714" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:200px;top:100px;height:16px;width:182.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\inwardacct"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:140px;height:16px;">
<custom-attributes i18n="/acbame/LT000013/"/>
</label>
<textbox id="A715" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="10" style="position:absolute;left:200px;top:140px;height:16px;width:182.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\pty\cid"/>
</textbox>
<textbox multiline="true" id="A716" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:200px;top:220px;height:64px;width:182.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="100" cols="100" rows="4">
<custom-attributes fieldUrl="acbgrp\pty\nam"/>
<custom-attributes textareaType="x"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:220px;height:16px;width:134.0px;">
<custom-attributes i18n="/acbame/LT000014/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:260px;top:20px;height:16px;width:141.0px;">
<custom-attributes i18n="/acbame/LT000015/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:440px;top:100px;" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="quepty"/>
<custom-attributes i18n="/acbame/BT000016/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:440px;top:140px;" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="nxt"/>
<custom-attributes i18n="/acbame/BT000017/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:180px;height:16px;">
<custom-attributes i18n="/acbame/LT000018/"/>
</label>
<textbox id="A717" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="18" style="position:absolute;left:200px;top:180px;height:16px;width:182.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\socialcrdtcd"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="600px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:200px;height:16px;">
<custom-attributes i18n="/acbp/LT000001/"/>
</label>
<textbox id="A722" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="18" style="position:absolute;left:211px;top:200px;height:16px;width:204.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\socialcrdtcd"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:160px;height:16px;">
<custom-attributes i18n="/acbp/LT000002/"/>
</label>
<textbox id="A723" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:546px;top:160px;height:16px;width:204.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\inwardacct"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:353px;height:16px;">
<custom-attributes i18n="/acbp/LT000004/"/>
</label>
<textbox id="A724" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="200" style="position:absolute;left:146px;top:352px;height:39px;width:599.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\remark"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:423px;height:16px;">
<custom-attributes i18n="/acbp/LT000005/"/>
</label>
<textbox id="A725" apply="org.sss.presentation.zk.ZkComposer" maxlength="200" style="position:absolute;left:146px;top:423px;height:39px;width:599.0px;">
<custom-attributes fieldUrl="acbgrp\rec\reason"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:40px;" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="save"/>
<custom-attributes i18n="/acbp/BT000009/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:425px;top:40px;" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="exit"/>
<custom-attributes i18n="/acbp/BT000010/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="font-weight:bold;;position:absolute;left:320px;top:80px;height:16px;width:161.0px;">
<custom-attributes i18n="/acbp/LT000011/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:160px;height:16px;">
<custom-attributes i18n="/acbp/LT000012/"/>
</label>
<textbox id="A726" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:211px;top:160px;height:16px;width:204.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\cusid"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:252px;top:40px;" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="tohistory"/>
<custom-attributes i18n="/acbp/BT000014/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:120px;height:16px;">
<custom-attributes i18n="/acbp/LT000017/"/>
</label>
<xcombobox id="A727" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:211px;top:120px;height:16px;width:204.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\bchcod"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:200px;height:16px;">
<custom-attributes i18n="/acbp/LT000019/"/>
</label>
<xcombobox id="A728" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:546px;top:200px;height:16px;width:204.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\opttype"/>
<custom-attributes codeTable="addre"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:120px;height:16px;">
<custom-attributes i18n="/acbp/LT000021/"/>
</label>
<xdatebox readonly="true" id="A729" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:546px;top:120px;height:16px;width:204.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="acbgrp\rec\credat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:244px;height:16px;">
<custom-attributes i18n="/acbp/LT000022/"/>
</label>
<textbox id="A730" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="16" style="position:absolute;left:211px;top:244px;height:16px;width:204.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acbgrp\rec\ownref"/>
</textbox>
<textbox multiline="true" id="A731" apply="org.sss.presentation.zk.ZkComposer" readonly="true" style="position:absolute;left:140px;top:291px;height:39px;width:599.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="100" cols="100" rows="4">
<custom-attributes fieldUrl="acbgrp\pty\nam"/>
<custom-attributes textareaType="x"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:297px;height:16px;width:75.0px;">
<custom-attributes i18n="/acbp/LT000023/"/>
</label>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="700px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:60px;height:16px;">
<custom-attributes i18n="/acbsel/LT000001/"/>
</label>
<xdatebox readonly="true" id="A732" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:60px;height:16px;width:141.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="stadat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:100px;height:16px;">
<custom-attributes i18n="/acbsel/LT000002/"/>
</label>
<xdatebox readonly="true" id="A733" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:100px;height:16px;width:142.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="stodat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:140px;height:16px;">
<custom-attributes i18n="/acbsel/LT000003/"/>
</label>
<xcombobox id="A734" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:140px;height:16px;width:241.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="ptynam"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:360px;top:20px;height:16px;width:245.0px;">
<custom-attributes i18n="/acbsel/LT000004/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:480px;top:140px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="serachs"/>
<custom-attributes i18n="/acbsel/BT000005/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:600px;top:140px;" sclass="inbtn icon-daochu">
<custom-attributes fieldUrl="download"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/acbsel/FD000006/"/>
</toolbarbutton>
<listbox mold="paging" pageSize="15" id="A735" style="position:absolute;left:35px;top:180px;height:376px;width:747.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="acblst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(nam)" width="160px">
<custom-attributes i18n="/acbsel/TH000008/"/>
<custom-attributes columnName="nam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(socialcrdtcd)" width="130px">
<custom-attributes i18n="/acbsel/TH000009/"/>
<custom-attributes columnName="socialcrdtcd"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(inwardacct)" width="130px">
<custom-attributes i18n="/acbsel/TH000010/"/>
<custom-attributes columnName="inwardacct"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(credat)" width="150px">
<custom-attributes i18n="/acbsel/TH000011/"/>
<custom-attributes columnName="credat"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes formatter="yyyy/MM/dd HH:mm:ss"/>
</listheader>
<listheader sort="auto(pnam)" width="200px">
<custom-attributes i18n="/acbsel/TH000018/"/>
<custom-attributes columnName="pnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="600px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:20px;height:16px;width:75.0px;">
<custom-attributes i18n="/acdp/LT000028/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:60px;height:16px;">
<custom-attributes i18n="/acdp/LT000029/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:60px;height:16px;">
<custom-attributes i18n="/acdp/LT000030/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:120px;height:16px;">
<custom-attributes i18n="/acdp/LT000031/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:120px;height:16px;">
<custom-attributes i18n="/acdp/LT000032/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:200px;height:16px;width:75.0px;">
<custom-attributes i18n="/acdp/LT000033/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:300px;height:16px;">
<custom-attributes i18n="/acdp/LT000034/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:340px;height:16px;">
<custom-attributes i18n="/acdp/LT000035/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:340px;height:16px;">
<custom-attributes i18n="/acdp/LT000036/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:200px;height:16px;">
<custom-attributes i18n="/acdp/LT000038/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:300px;height:16px;">
<custom-attributes i18n="/acdp/LT000039/"/>
</label>
<xcombobox id="A795" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:60px;height:16px;width:160.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acdgrp\rec\status"/>
<custom-attributes codeTable="status"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<xdatebox readonly="true" id="A796" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:300px;height:16px;width:159.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="acdgrp\rec\senddat"/>
</xdatebox>
<textbox id="A797" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="10" style="position:absolute;left:500px;top:60px;height:16px;width:160.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acdgrp\rec\industry"/>
</textbox>
<textbox id="A798" apply="org.sss.presentation.zk.ZkComposer" maxlength="200" style="position:absolute;left:500px;top:120px;height:16px;width:162.0px;">
<custom-attributes fieldUrl="acdgrp\rec\enttype"/>
</textbox>
<textbox multiline="true" id="A799" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:500px;top:200px;height:57px;width:160.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="500" cols="100" rows="5">
<custom-attributes fieldUrl="acdgrp\rec\regaddr"/>
</textbox>
<textbox id="A800" apply="org.sss.presentation.zk.ZkComposer" maxlength="4000" style="position:absolute;left:500px;top:300px;height:16px;width:159.0px;">
<custom-attributes fieldUrl="acdgrp\rec\busiscope"/>
</textbox>
<textbox id="A801" apply="org.sss.presentation.zk.ZkComposer" maxlength="50" style="position:absolute;left:500px;top:340px;height:16px;width:159.0px;">
<custom-attributes fieldUrl="acdgrp\rec\busistatus"/>
</textbox>
<textbox id="A802" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="10" style="position:absolute;left:120px;top:340px;height:16px;width:160.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acdgrp\rec\industrycode"/>
</textbox>
<textbox id="A803" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:120px;top:120px;height:16px;width:161.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acdgrp\rec\acdno"/>
</textbox>
<textbox id="A804" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:120px;top:200px;height:16px;width:161.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acdgrp\rec\account"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:20px;height:16px;">
<custom-attributes i18n="/acdp/LT000076/"/>
</label>
<textbox id="A805" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="50" style="position:absolute;left:500px;top:20px;height:16px;width:161.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acdgrp\rec\operateend"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="710px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:60px;height:16px;">
<custom-attributes i18n="/acdsel/LT000001/"/>
</label>
<xdatebox readonly="true" id="A806" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:180px;top:60px;height:16px;width:123.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="stadat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:100px;height:16px;">
<custom-attributes i18n="/acdsel/LT000002/"/>
</label>
<xdatebox readonly="true" id="A807" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:180px;top:100px;height:16px;width:123.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="stodat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:300px;top:20px;height:16px;width:167.0px;">
<custom-attributes i18n="/acdsel/LT000003/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:140px;height:16px;">
<custom-attributes i18n="/acdsel/LT000004/"/>
</label>
<xcombobox id="A808" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:180px;top:140px;height:16px;width:223.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="ptynam"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:60px;height:16px;">
<custom-attributes i18n="/acdsel/LT000005/"/>
</label>
<xcombobox id="A809" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:500px;top:60px;height:16px;width:143.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="stu"/>
<custom-attributes codeTable="status"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:100px;height:16px;">
<custom-attributes i18n="/acdsel/LT000006/"/>
</label>
<xcombobox id="A810" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:500px;top:100px;height:16px;width:143.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="accounttype"/>
<custom-attributes codeTable="accounttype"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<listbox mold="paging" pageSize="15" id="A811" style="position:absolute;left:20px;top:180px;height:405px;width:761.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="acdlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(ownref)" width="100px">
<custom-attributes i18n="/acdsel/TH000010/"/>
<custom-attributes columnName="ownref"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(entname)" width="160px">
<custom-attributes i18n="/acdsel/TH000011/"/>
<custom-attributes columnName="entname"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(enttel)" width="100px">
<custom-attributes i18n="/acdsel/TH000012/"/>
<custom-attributes columnName="enttel"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(socialcrdtcd)" width="130px">
<custom-attributes i18n="/acdsel/TH000013/"/>
<custom-attributes columnName="socialcrdtcd"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(status)" width="100px">
<custom-attributes i18n="/acdsel/TH000020/"/>
<custom-attributes columnName="status"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="status"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(accounttype)" width="100px">
<custom-attributes i18n="/acdsel/TH000018/"/>
<custom-attributes columnName="accounttype"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="accounttype"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(account)" width="110px">
<custom-attributes i18n="/acdsel/TH000048/"/>
<custom-attributes columnName="account"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(openfea)" width="80px">
<custom-attributes i18n="/acdsel/TH000019/"/>
<custom-attributes columnName="openfea"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="openfea"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(legalrepresentative)" width="100px">
<custom-attributes i18n="/acdsel/TH000023/"/>
<custom-attributes columnName="legalrepresentative"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(financialadmin)" width="100px">
<custom-attributes i18n="/acdsel/TH000014/"/>
<custom-attributes columnName="financialadmin"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(transactor)" width="100px">
<custom-attributes i18n="/acdsel/TH000015/"/>
<custom-attributes columnName="transactor"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(transverifier1)" width="100px">
<custom-attributes i18n="/acdsel/TH000016/"/>
<custom-attributes columnName="transverifier1"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(transverifier2)" width="100px">
<custom-attributes i18n="/acdsel/TH000017/"/>
<custom-attributes columnName="transverifier2"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(bchcod)" width="80px">
<custom-attributes i18n="/acdsel/TH000021/"/>
<custom-attributes columnName="bchcod"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(credat)" width="100px">
<custom-attributes i18n="/acdsel/TH000022/"/>
<custom-attributes columnName="credat"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes formatter="yyyy/MM/dd HH:mm:ss"/>
</listheader>
</listhead>
</listbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:140px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="serachs"/>
<custom-attributes i18n="/acdsel/BT000007/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:560px;top:140px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="resh"/>
<custom-attributes i18n="/acdsel/BT000008/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:660px;top:140px;" sclass="inbtn icon-daochu">
<custom-attributes fieldUrl="download"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/acdsel/FD000009/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="800px" height="500px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/actmod/PD000000/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:50px;height:16px;width:139.0px;">
<custom-attributes i18n="/actmod/LT000001/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:560px;top:430px;" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="actslt"/>
<custom-attributes i18n="/actmod/BT000002/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:430px;" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="actrtn"/>
<custom-attributes i18n="/actmod/BT000003/"/>
</toolbarbutton>
<listbox id="A1422" style="position:absolute;left:75px;top:70px;height:327px;width:610.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="actlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(cur)" width="100px">
<custom-attributes i18n="/actmod/TH000004/"/>
<custom-attributes columnName="cur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(act)" width="150px">
<custom-attributes i18n="/actmod/TH000005/"/>
<custom-attributes columnName="act"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(compaynam)">
<custom-attributes i18n="/actmod/TH000006/"/>
<custom-attributes columnName="compaynam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:560px;top:430px;" sclass="inbtn icon-tijiaoinbtn icon-tijiao">
<custom-attributes fieldUrl="yd"/>
<custom-attributes i18n="/actmod/BT000011/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:560px;top:430px;" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="rmb"/>
<custom-attributes i18n="/actmod/BT000012/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="600px" height="400px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/agrp/PD000001/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:240px;top:50px;height:16px;width:142.0px;">
<custom-attributes i18n="/agrp/LT000012/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:110px;height:16px;">
<custom-attributes i18n="/agrp/LT000013/"/>
</label>
<textbox id="A2906" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="10" style="position:absolute;left:180px;top:110px;height:16px;width:203.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="agrnum\cid"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:150px;height:16px;">
<custom-attributes i18n="/agrp/LT000015/"/>
</label>
<textbox id="A2907" apply="org.sss.presentation.zk.ZkComposer" maxlength="100" style="position:absolute;left:180px;top:150px;height:16px;width:202.0px;">
<custom-attributes fieldUrl="agrnum\ptynam"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:190px;height:16px;">
<custom-attributes i18n="/agrp/LT000020/"/>
</label>
<textbox id="A2908" apply="org.sss.presentation.zk.ZkComposer" maxlength="30" style="position:absolute;left:240px;top:190px;height:16px;width:240.0px;">
<custom-attributes fieldUrl="tfnnum\agrnum"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:230px;height:16px;">
<custom-attributes i18n="/agrp/LT000022/"/>
</label>
<textbox id="A2909" apply="org.sss.presentation.zk.ZkComposer" maxlength="30" style="position:absolute;left:240px;top:230px;height:16px;width:240.0px;">
<custom-attributes fieldUrl="nmanum\agrnum"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:270px;height:16px;">
<custom-attributes i18n="/agrp/LT000024/"/>
</label>
<textbox id="A2910" apply="org.sss.presentation.zk.ZkComposer" maxlength="30" style="position:absolute;left:240px;top:270px;height:16px;width:239.0px;">
<custom-attributes fieldUrl="cclnum\agrnum"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:369px;" sclass="inbtn icon-quxiao">
<custom-attributes fieldUrl="cancel"/>
<custom-attributes i18n="/agrp/BT000026/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:260px;top:369px;" sclass="inbtn icon-zancun">
<custom-attributes fieldUrl="submit"/>
<custom-attributes i18n="/agrp/BT000027/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="600px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:20px;height:16px;width:143.0px;">
<custom-attributes i18n="/agrp/LT000002/"/>
</label>
<listbox id="A2905" style="position:absolute;left:18px;top:100px;height:304px;width:762.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="agrlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(cid)" width="100px">
<custom-attributes i18n="/agrp/TH000004/"/>
<custom-attributes columnName="cid"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(ptynam)" width="180px">
<custom-attributes i18n="/agrp/TH000008/"/>
<custom-attributes columnName="ptynam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(tfn)" width="160px">
<custom-attributes i18n="/agrp/TH000005/"/>
<custom-attributes columnName="tfn"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(nma)" width="160px">
<custom-attributes i18n="/agrp/TH000006/"/>
<custom-attributes columnName="nma"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(ccl)" width="160px">
<custom-attributes i18n="/agrp/TH000007/"/>
<custom-attributes columnName="ccl"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:80px;height:16px;width:144.0px;">
<custom-attributes i18n="/agrp/LT000003/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:420px;top:520px;" sclass="inbtn icon-add">
<custom-attributes fieldUrl="add"/>
<custom-attributes i18n="/agrp/BT000009/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:540px;top:520px;" sclass="inbtn icon-xiugai">
<custom-attributes fieldUrl="modify"/>
<custom-attributes i18n="/agrp/BT000010/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:660px;top:520px;" sclass="inbtn icon-remove">
<custom-attributes fieldUrl="delete"/>
<custom-attributes i18n="/agrp/BT000011/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:w="http://www.zkoss.org/2005/zk/client" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" height="100%" width="100%" xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd">
<style src="/public/template.css"/>
<script src="/public/template.js" type="text/javascript"/>
<borderlayout>
<center autoscroll="true" border="none" zclass="z-center">
<div style="width:800px;height:1860px;">
<label multiline="true" style="position:absolute;left:20px;top:100px;height:16px;width:40.0px;" value="致" zclass="z-label"/>
<label multiline="true" style="position:absolute;left:20px;top:140px;height:16px;width:92.0px;" value="到单号:" zclass="z-label"/>
<textbox readonly="true" rows="1" style="position:absolute;left:110px;top:140px;height:16px;width:180.0px;ime-mode:disabled;" text="IC3500230163BR" zclass="z-textbox"/>
<textbox readonly="true" rows="1" style="position:absolute;left:511px;top:140px;height:16px;width:50.0px;ime-mode:disabled;" text="CNY" zclass="z-textbox"/>
<decimalbox format="#,##0.00" readonly="true" style="position:absolute;left:564px;top:140px;height:16px;width:120.0px;text-align:right;ime-mode:disabled;" text="55,555.00" zclass="z-decimalbox"/>
<label multiline="true" style="position:absolute;left:20px;top:179px;height:16px;width:92.0px;" value="合同号:" zclass="z-label"/>
<textbox readonly="true" rows="1" style="position:absolute;left:110px;top:179px;height:16px;width:180.0px;ime-mode:disabled;" text="135" zclass="z-textbox"/>
<textbox readonly="true" rows="1" style="position:absolute;left:420px;top:377px;height:24px;width:180.0px;ime-mode:disabled;" text="" zclass="z-textbox"/>
<textbox cols="35" multiline="true" readonly="true" rows="4" style="position:absolute;left:420px;top:407px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" text="${aa}" zclass="z-textbox"/>
<label multiline="true" style="position:absolute;left:420px;top:357px;height:16px;width:100.0px;" value="付款人:" zclass="z-label"/>
<textbox readonly="true" rows="1" style="position:absolute;left:420px;top:237px;height:24px;width:180.0px;ime-mode:disabled;" text="" zclass="z-textbox"/>
<textbox cols="35" multiline="true" readonly="true" rows="4" style="position:absolute;left:420px;top:267px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" text="1" zclass="z-textbox"/>
<label multiline="true" style="position:absolute;left:420px;top:217px;height:16px;width:100.0px;" value="收款人:" zclass="z-label"/>
<label multiline="true" style="position:absolute;left:20px;top:460px;height:16px;width:100.0px;" value="申请事项:" zclass="z-label"/>
<combobox disabled="true" style="position:absolute;left:120px;top:460px;height:16px;width:90.0px;background:#FFFFA0;ime-mode:disabled;border-bottom:solid red;" text="承兑" zclass="z-combobox"/>
<combobox disabled="true" style="position:absolute;left:60px;top:100px;height:16px;width:240.0px;background:#FFFFA0;ime-mode:disabled;" text="中国光大银行股份有限公司天津分行南开支行" zclass="z-combobox"/>
<label multiline="true" style="font-size:13px;font-weight:bold;;position:absolute;left:259px;top:60px;height:16px;width:205.0px;" value="进口代收承兑/付款/拒付申请" zclass="z-label"/>
<label multiline="true" style="position:absolute;left:420px;top:140px;height:16px;" value="合同金额:" zclass="z-label"/>
<label multiline="true" style="position:absolute;left:20px;top:260px;height:16px;" value="交单方式" zclass="z-label"/>
<combobox disabled="true" style="position:absolute;left:110px;top:260px;height:16px;width:180.0px;ime-mode:disabled;" text="D/A Documents against Acceptance" zclass="z-combobox"/>
<label multiline="true" style="position:absolute;left:20px;top:220px;height:16px;" value="到期日" zclass="z-label"/>
<datebox disabled="true" format="yyyy/MM/dd" style="position:absolute;left:110px;top:220px;height:16px;width:75.0px;ime-mode:disabled;" zclass="z-datebox"/>
<textbox readonly="true" rows="1" style="position:absolute;left:20px;top:340px;height:24px;width:180.0px;ime-mode:disabled;" text="" zclass="z-textbox"/>
<textbox cols="35" multiline="true" readonly="true" rows="4" style="position:absolute;left:20px;top:370px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" text="" zclass="z-textbox"/>
<label multiline="true" style="position:absolute;left:20px;top:320px;height:16px;width:100.0px;" value="代收行:" zclass="z-label"/>
<label multiline="true" style="position:absolute;left:420px;top:100px;height:16px;width:60.0px;" value="申请日期:" zclass="z-label"/>
<datebox disabled="true" format="yyyy/MM/dd" style="position:absolute;left:511px;top:100px;height:16px;width:99.0px;background:#FFFFA0;ime-mode:disabled;" text="2023/07/26" zclass="z-datebox"/>
<window style="position:absolute;left:0px;top:500px;height:1086px;width:860.0px;">
<label multiline="true" style="position:absolute;left:20px;top:160px;height:16px;width:57.0px;" value="备注:" zclass="z-label"/>
<textbox cols="65" multiline="true" readonly="true" rows="10" style="position:absolute;left:100px;top:160px;height:72px;width:592.0px;resize:none;" text="" zclass="z-textbox"/>
<label multiline="true" style="position:absolute;left:5px;top:280px;height:16px;width:107.0px;" value="历史备注:" zclass="z-label"/>
<textbox cols="200" multiline="true" readonly="true" rows="10" style="position:absolute;left:5px;top:300px;height:76px;width:700.0px;resize:none;" text="" zclass="z-textbox"/>
<label multiline="true" style="position:absolute;left:5px;top:400px;height:16px;width:281.0px;" value="给下步操作人员的提示(不超过200字):" zclass="z-label"/>
<textbox cols="200" multiline="true" readonly="true" rows="10" style="position:absolute;left:5px;top:420px;height:84px;width:700.0px;resize:none;" text="" zclass="z-textbox"/>
</window>
<label multiline="true" style="position:absolute;left:420px;top:180px;height:16px;" value="索偿金额:" zclass="z-label"/>
<decimalbox format="#,##0.00" readonly="true" style="position:absolute;left:564px;top:180px;height:16px;width:120.0px;text-align:right;ime-mode:disabled;" text="0.00" zclass="z-decimalbox"/>
<combobox disabled="true" style="position:absolute;left:511px;top:180px;height:16px;width:50.0px;ime-mode:disabled;" text="人民币元" zclass="z-combobox"/>
</div>
</center>
</borderlayout>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="480px" height="320px" border="normal" contentStyle="Background:#FFFFFF">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<caption height="10px"/>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:60px;height:16px;width:100px;">
<custom-attributes i18n="/bprp/LT000082/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:60px;height:16px;width:180px;">
<custom-attributes fieldUrl="bprgrp\usr\lgnnam"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:100px;height:16px;width:100px;">
<custom-attributes i18n="/bprp/LT000083/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:100px;height:16px;width:180px;">
<custom-attributes fieldUrl="bprgrp\usr\oprnam"/>
</label>
<textbox type="password" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:140px;height:16px;width:180px;background:#FFFFA0;" constraint="/\w{8,20}/:${c:l('err.invalid.password')}">
<custom-attributes fieldUrl="bprgrp\psw"/>
<custom-attributes description="/bprp/FD000087/"/>
</textbox>
<textbox type="password" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:180px;height:16px;width:180px;background:#FFFFA0;" constraint="/\w{8,20}/:${c:l('err.invalid.password')}">
<custom-attributes fieldUrl="bprgrp\pswagain"/>
<custom-attributes description="/bprp/FD000088/"/>
</textbox>
<sssbutton action="onmouseover:this.focus();" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:260px;top:230px;height:20px;width:63px;border:none;background:white;" image="/locale/images/bc.gif">
<custom-attributes fieldUrl="bprgrp\savpsw"/>
</sssbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:140px;height:16px;width:100px;">
<custom-attributes i18n="/bprp/LT000085/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:180px;height:16px;width:100px;">
<custom-attributes i18n="/bprp/LT000086/"/>
</label>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="62px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:20px;" sclass="inbtn icon-daochu">
<custom-attributes fieldUrl="download"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/btnmod/FD000253/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="120px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:10px;border:none;background:white;" image="/locale/images/ckbw.gif">
<custom-attributes fieldUrl="sw0"/>
<custom-attributes operateType="download"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:10px;border:none;background:white;" image="/locale/images/ckbw.gif">
<custom-attributes fieldUrl="sw1"/>
<custom-attributes operateType="download"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:220px;top:10px;border:none;background:white;" image="/locale/images/ckbw.gif">
<custom-attributes fieldUrl="sw2"/>
<custom-attributes operateType="download"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:320px;top:10px;border:none;background:white;" image="/locale/images/ckbw.gif">
<custom-attributes fieldUrl="sw3"/>
<custom-attributes operateType="download"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:420px;top:10px;border:none;background:white;" image="/locale/images/ckbw.gif">
<custom-attributes fieldUrl="sw4"/>
<custom-attributes operateType="download"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:50px;">
<custom-attributes fieldUrl="notice0"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/btnmod/GT000089/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:85px;">
<custom-attributes fieldUrl="notice1"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/btnmod/GT000090/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:50px;">
<custom-attributes fieldUrl="notice2"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/btnmod/GT000091/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:85px;">
<custom-attributes fieldUrl="notice3"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/btnmod/GT000092/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="800px" height="400px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/btnmod/PD000271/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:290px;" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="dyckth"/>
<custom-attributes i18n="/btnmod/BT000272/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:70px;height:16px;width:146.0px;">
<custom-attributes i18n="/btnmod/LT000273/"/>
</label>
<textbox multiline="true" id="A720" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:110px;height:111px;width:671.0px;background:#FFFFA0;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="200" cols="200" rows="4">
<custom-attributes fieldUrl="thly"/>
<custom-attributes description="/btnmod/FD000275/"/>
<custom-attributes required="true"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:520px;top:290px;" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="quxiao"/>
<custom-attributes i18n="/btnmod/BT000274/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="520px" height="420px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/bummod/PD000016/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:50px;height:21px;width:100.0px;">
<custom-attributes i18n="/bummod/LT000017/"/>
</label>
<textbox multiline="true" id="A2901" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:50px;height:21px;width:210.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="200" cols="200" rows="4">
<custom-attributes fieldUrl="wrkmdl\mdldcb"/>
<custom-attributes textareaType="x"/>
</textbox>
<listbox mold="paging" pageSize="50" id="A2902" style="position:absolute;left:20px;top:90px;height:192px;width:480.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="mdllst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(mdldcb)" width="150px">
<custom-attributes i18n="/bummod/TH000019/"/>
<custom-attributes columnName="mdldcb"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(busdcb)">
<custom-attributes i18n="/bummod/TH000020/"/>
<custom-attributes columnName="busdcb"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:350px;" sclass="inbtn">
<custom-attributes fieldUrl="query"/>
<custom-attributes i18n="/bummod/BT000021/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:232px;top:350px;" sclass="inbtn ">
<custom-attributes fieldUrl="select"/>
<custom-attributes i18n="/bummod/BT000022/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:419px;top:350px;" sclass="inbtn">
<custom-attributes fieldUrl="delete"/>
<custom-attributes i18n="/bummod/BT000023/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:359px;top:50px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="search"/>
<custom-attributes i18n="/bummod/BT000024/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="640px" height="420px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/bummod/PD000030/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:50px;height:16px;width:120.0px;">
<custom-attributes i18n="/bummod/LT000031/"/>
</label>
<textbox id="A2903" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="8" style="position:absolute;left:200px;top:50px;height:16px;width:163.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="hisref"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:50px;">
<custom-attributes fieldUrl="searchhis"/>
<custom-attributes i18n="/bummod/BT000033/"/>
</toolbarbutton>
<listbox id="A2904" style="position:absolute;left:40px;top:70px;height:240px;width:560.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="modlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(inidattim)" width="100px">
<custom-attributes i18n="/bummod/TH000035/"/>
<custom-attributes columnName="inidattim"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes formatter="yyyy/MM/dd"/>
</listheader>
<listheader sort="auto(ownref)" width="100px">
<custom-attributes i18n="/bummod/TH000034/"/>
<custom-attributes columnName="ownref"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(objnam)" width="260px">
<custom-attributes i18n="/bummod/TH000036/"/>
<custom-attributes columnName="objnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:390px;">
<custom-attributes fieldUrl="sure"/>
<custom-attributes i18n="/bummod/BT000044/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="640px" height="420px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/busmod/PD000053/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox id="A1510" style="position:absolute;left:40px;top:70px;height:240px;width:560.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="modlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(inidattim)" width="60px">
<custom-attributes i18n="/busmod/TH000054/"/>
<custom-attributes columnName="inidattim"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes formatter="yyMMdd"/>
</listheader>
<listheader sort="auto(ownref)" width="130px">
<custom-attributes i18n="/busmod/TH000055/"/>
<custom-attributes columnName="ownref"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(objnam)" width="320px">
<custom-attributes i18n="/busmod/TH000057/"/>
<custom-attributes columnName="objnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:50px;height:16px;width:100.0px;">
<custom-attributes i18n="/busmod/LT000056/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:480px;top:390px;border:none;background:white;" image="/locale/images/qd.gif">
<custom-attributes fieldUrl="sure"/>
</toolbarbutton>
<textbox id="A1511" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="8" style="position:absolute;left:195px;top:49px;height:16px;width:120.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="hisref"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:355px;top:47px;border:none;background:white;" image="/locale/images/ss.gif">
<custom-attributes fieldUrl="searchhis"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="560px" height="380px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/busmod/PD000007/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox mold="paging" pageSize="50" id="A1508" style="position:absolute;left:40px;top:70px;height:208px;width:500.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="mdllst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(mdldcb)" width="100px">
<custom-attributes i18n="/busmod/TH000026/"/>
<custom-attributes columnName="mdldcb"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(busdcb)" width="150px">
<custom-attributes i18n="/busmod/TH000027/"/>
<custom-attributes columnName="busdcb"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(islr)" width="100px">
<custom-attributes i18n="/busmod/TH000077/"/>
<custom-attributes columnName="islr"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="islr"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(issend)" width="150px">
<custom-attributes i18n="/busmod/TH000075/"/>
<custom-attributes columnName="issend"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="issend"/>
<custom-attributes formatter="{0}"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:50px;height:16px;width:80.0px;">
<custom-attributes i18n="/busmod/LT000008/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:300px;top:329px;" sclass="inbtn icon-select">
<custom-attributes fieldUrl="select"/>
<custom-attributes i18n="/busmod/BT000009/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:425px;top:329px;" sclass="inbtn icon-quxiao">
<custom-attributes fieldUrl="delete"/>
<custom-attributes i18n="/busmod/BT000010/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:329px;" sclass="inbtn icon-baocunmoban">
<custom-attributes fieldUrl="query"/>
<custom-attributes i18n="/busmod/BT000052/"/>
</toolbarbutton>
<textbox multiline="true" id="A1509" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:135px;top:46px;height:16px;width:120.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="200" cols="200" rows="4">
<custom-attributes fieldUrl="wrkmdl\mdldcb"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:360px;top:32px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="search"/>
<custom-attributes i18n="/busmod/BT000069/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="520px" height="320px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/busmod/PD000000/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:90px;height:16px;width:80.0px;">
<custom-attributes i18n="/busmod/LT000001/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:120px;height:16px;width:80.0px;">
<custom-attributes i18n="/busmod/LT000002/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:50px;height:16px;width:100.0px;">
<custom-attributes i18n="/busmod/LT000003/"/>
</label>
<textbox multiline="true" id="A1506" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:90px;height:16px;width:320.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="100" cols="100" rows="4">
<custom-attributes fieldUrl="wrkmdl\busdcb"/>
</textbox>
<textbox multiline="true" id="A1507" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:120px;height:104px;width:320.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="200" cols="200" rows="4">
<custom-attributes fieldUrl="wrkmdl\mdldcb"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:360px;top:270px;" sclass="inbtn icon-zancun">
<custom-attributes fieldUrl="save"/>
<custom-attributes i18n="/busmod/BT000074/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="660px" height="400px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/climod/PD000007/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox id="A1517" style="position:absolute;left:40px;top:70px;height:224px;width:580.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="clilst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(engnam)" width="130px">
<custom-attributes i18n="/climod/TH000021/"/>
<custom-attributes columnName="engnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(nam)" width="130px">
<custom-attributes i18n="/climod/TH000023/"/>
<custom-attributes columnName="nam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(adr)" width="230px">
<custom-attributes i18n="/climod/TH000055/"/>
<custom-attributes columnName="adr"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:500px;top:370px;border:none;background:white;" image="/locale/images/xz.gif">
<custom-attributes fieldUrl="sure"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:50px;height:16px;width:80.0px;">
<custom-attributes i18n="/climod/LT000020/"/>
</label>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="480px" height="380px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/climod/PD000000/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:380px;top:110px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="sel"/>
</toolbarbutton>
<checkbox id="A1512" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:70px;height:16px;width:200.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="logo"/>
<custom-attributes i18n="/climod/GT000033/"/>
</checkbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:110px;height:16px;width:120.0px;">
<custom-attributes i18n="/climod/LT000034/"/>
</label>
<textbox multiline="true" id="A1513" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:110px;height:16px;width:200.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="60" cols="60" rows="4">
<custom-attributes fieldUrl="nam"/>
<custom-attributes textareaType="x"/>
</textbox>
<textbox multiline="true" id="A1514" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:140px;height:64px;width:260.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="160" cols="160" rows="4">
<custom-attributes fieldUrl="adr"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:230px;height:16px;width:120.0px;">
<custom-attributes i18n="/climod/LT000036/"/>
</label>
<textbox id="A1515" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="30" style="position:absolute;left:160px;top:230px;height:16px;width:200.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="tel"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:290px;height:16px;width:120.0px;">
<custom-attributes i18n="/climod/LT000037/"/>
</label>
<textbox id="A1516" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="30" style="position:absolute;left:160px;top:290px;height:16px;width:200.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="fax"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:350px;border:none;background:white;" image="/locale/images/wc.gif">
<custom-attributes fieldUrl="ok"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="560px" height="360px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/climod/PD000038/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<checkbox id="A1518" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:50px;height:16px;width:240.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="logo"/>
<custom-attributes i18n="/climod/GT000039/"/>
</checkbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:90px;height:16px;width:120.0px;">
<custom-attributes i18n="/climod/LT000040/"/>
</label>
<textbox multiline="true" id="A1519" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:90px;height:16px;width:180.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="60" cols="60" rows="4">
<custom-attributes fieldUrl="nam"/>
<custom-attributes textareaType="x"/>
</textbox>
<textbox multiline="true" id="A1520" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:120px;height:72px;width:230.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="160" cols="160" rows="4">
<custom-attributes fieldUrl="adr"/>
<custom-attributes textareaType="x"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:360px;top:90px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="sel"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:230px;height:16px;width:80.0px;">
<custom-attributes i18n="/climod/LT000042/"/>
</label>
<textbox id="A1521" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="30" style="position:absolute;left:160px;top:230px;height:16px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="tel"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:270px;height:16px;width:80.0px;">
<custom-attributes i18n="/climod/LT000043/"/>
</label>
<textbox id="A1522" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="30" style="position:absolute;left:160px;top:270px;height:16px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="fax"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:300px;top:320px;border:none;background:white;" image="/locale/images/bc.gif">
<custom-attributes fieldUrl="ok1"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:365px;top:320px;border:none;background:white;" image="/locale/images/ck.gif">
<custom-attributes fieldUrl="newnt1"/>
<custom-attributes operateType="download"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="600px" height="500px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/cptp/PD000258/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox id="A960" style="position:absolute;left:30px;top:60px;height:312px;width:550.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="actlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(cur)" width="100px">
<custom-attributes i18n="/cptp/TH000265/"/>
<custom-attributes columnName="cur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{1}"/>
</listheader>
<listheader sort="auto(act)" width="180px">
<custom-attributes i18n="/cptp/TH000260/"/>
<custom-attributes columnName="act"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(compaynam)">
<custom-attributes i18n="/cptp/TH000357/"/>
<custom-attributes columnName="compaynam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:41px;top:38px;height:16px;width:75.0px;">
<custom-attributes i18n="/cptp/LT000259/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:403px;top:440px;border:none;background:white;" image="/locale/images/qd.gif">
<custom-attributes fieldUrl="actsurel"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:334px;top:440px;border:none;background:white;" image="/locale/images/qx.gif">
<custom-attributes fieldUrl="actcancel"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="800px" height="600px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/cptp/PD000463/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:90px;height:16px;width:100.0px;">
<custom-attributes i18n="/cptp/LT000464/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:480px;top:370px;">
<custom-attributes fieldUrl="cancel"/>
<custom-attributes i18n="/cptp/BT000467/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:580px;top:370px;">
<custom-attributes fieldUrl="sure"/>
<custom-attributes i18n="/cptp/BT000468/"/>
</toolbarbutton>
<listbox id="A1042" style="position:absolute;left:140px;top:110px;height:203px;width:542.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="actlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(cur)" width="150px">
<custom-attributes i18n="/cptp/TH000471/"/>
<custom-attributes columnName="cur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(act)">
<custom-attributes i18n="/cptp/TH000472/"/>
<custom-attributes columnName="act"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="107px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<textbox id="A1162" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:0px;top:0px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="aplp\ptspta\pts\extkey"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:190px;top:1px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="aplp\sel"/>
</toolbarbutton>
<textbox multiline="true" id="A1163" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:40px;height:45px;width:270.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="aplp\ptspta\pts\adrblk"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="107px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<textbox id="A1160" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:0px;top:0px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="aplp\ptspta\pts\extkey"/>
</textbox>
<textbox multiline="true" id="A1161" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:30px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="aplp\ptspta\pts\adrblk"/>
<custom-attributes description="/ptsp/FD000292/"/>
<custom-attributes textareaType="x"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:190px;top:1px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="aplp\sel"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="450px" height="410px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/cptp/PD000249/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox id="A959" style="position:absolute;left:14px;top:78px;height:227px;width:400.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="cpdgrp\epslst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(nam)" width="200px">
<custom-attributes i18n="/cptp/TH000250/"/>
<custom-attributes columnName="nam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(engnam)">
<custom-attributes i18n="/cptp/TH000251/"/>
<custom-attributes columnName="engnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:8px;top:49px;height:20px;width:153.0px;">
<custom-attributes i18n="/cptp/LT000252/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:241px;top:370px;border:none;background:white;" image="/locale/images/qd.gif">
<custom-attributes fieldUrl="sure1"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:166px;top:370px;border:none;background:white;" image="/locale/images/qx.gif">
<custom-attributes fieldUrl="cancel"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="107px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<textbox id="A1044" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:0px;top:0px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="benp\ptspta\pts\extkey"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:190px;top:1px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="benp\sel"/>
</toolbarbutton>
<textbox multiline="true" id="A1045" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:40px;height:45px;width:270.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="benp\ptspta\pts\adrblk"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="700px" height="550px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/cptp/PD000115/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox mold="paging" pageSize="200" id="A910" style="position:absolute;left:30px;top:65px;height:384px;width:658.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="cpdgrp\ctylst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(alpcod)" width="100px">
<custom-attributes i18n="/cptp/TH000116/"/>
<custom-attributes columnName="alpcod"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(numcod)" width="100px">
<custom-attributes i18n="/cptp/TH000117/"/>
<custom-attributes columnName="numcod"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(chnnam)" width="250px">
<custom-attributes i18n="/cptp/TH000118/"/>
<custom-attributes columnName="chnnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(engnam)">
<custom-attributes i18n="/cptp/TH000119/"/>
<custom-attributes columnName="engnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:32px;top:44px;height:16px;width:131.0px;" sclass="font-size:13px;font-weight:bold;">
<custom-attributes i18n="/cptp/LT000120/"/>
</label>
<textbox multiline="true" id="A911" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:180px;top:38px;height:22px;width:153.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="40" cols="40" rows="4">
<custom-attributes fieldUrl="cpdgrp\cty\engnam"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:342px;top:37px;border:none;background:white;" image="/locale/images/ss.gif">
<custom-attributes fieldUrl="search"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:437px;top:37px;border:none;background:white;" image="/locale/images/qd.gif">
<custom-attributes fieldUrl="sure"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="125px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<tree vflex="1" hflex="1" style="position:absolute;left:0px;top:65px;height:32px;width:100%;" sclass="steps" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="stpmod\steps"/>
<treecols />
<treechildren />
</tree>
<hbox pack="left" style="width:100%;height:26px;" sclass="bth-hbox">
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="\mtabut\sav"/>
<custom-attributes i18n="/mtabut/BT000102/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-zancun">
<custom-attributes fieldUrl="\mtabut\ped"/>
<custom-attributes i18n="/mtabut/BT000074/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\pdapldocs"/>
<custom-attributes i18n="/mtabut/BT000402/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\tdapldocs"/>
<custom-attributes i18n="/mtabut/BT000403/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\bots"/>
<custom-attributes i18n="/mtabut/BT000404/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\images"/>
<custom-attributes i18n="/mtabut/BT000283/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-chaxunmoban">
<custom-attributes fieldUrl="\mtabut\busmod\seltemplate"/>
<custom-attributes i18n="/busmod/BT000025/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-baocunmoban">
<custom-attributes fieldUrl="\mtabut\busmod\savetemplate"/>
<custom-attributes i18n="/busmod/BT000024/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\returnd"/>
<custom-attributes i18n="/mtabut/BT000464/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\return"/>
<custom-attributes i18n="/mtabut/BT000465/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgviw"/>
<custom-attributes i18n="/mtabut/BT000484/"/>
</toolbarbutton>
</hbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="100%">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<borderlayout>
<north size="125px">
<div style="width:850px;height:125px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="cpt00"/>
<tree vflex="1" hflex="1" style="position:absolute;left:0px;top:65px;height:32px;width:100%;" sclass="steps" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="stpmod\steps"/>
<treecols />
<treechildren />
</tree>
<hbox pack="left" style="width:100%;height:26px;" sclass="bth-hbox">
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="\mtabut\sav"/>
<custom-attributes i18n="/mtabut/BT000102/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-zancun">
<custom-attributes fieldUrl="\mtabut\ped"/>
<custom-attributes i18n="/mtabut/BT000074/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\pdapldocs"/>
<custom-attributes i18n="/mtabut/BT000402/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\tdapldocs"/>
<custom-attributes i18n="/mtabut/BT000403/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\bots"/>
<custom-attributes i18n="/mtabut/BT000404/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\images"/>
<custom-attributes i18n="/mtabut/BT000283/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-chaxunmoban">
<custom-attributes fieldUrl="\mtabut\busmod\seltemplate"/>
<custom-attributes i18n="/busmod/BT000025/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-baocunmoban">
<custom-attributes fieldUrl="\mtabut\busmod\savetemplate"/>
<custom-attributes i18n="/busmod/BT000024/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\returnd"/>
<custom-attributes i18n="/mtabut/BT000464/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\return"/>
<custom-attributes i18n="/mtabut/BT000465/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgviw"/>
<custom-attributes i18n="/mtabut/BT000484/"/>
</toolbarbutton>
</hbox>
</div>
</north>
<center>
<div style="width:850px;height:700px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="cpt05"/>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:20px;height:16px;width:166.0px;">
<custom-attributes i18n="/cptp/LT000897/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:100px;height:16px;">
<custom-attributes i18n="/cptp/LT000898/"/>
</label>
<xcombobox id="A1366" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:100px;height:16px;width:183.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\tradetype"/>
<custom-attributes description="/cptp/FD000900/"/>
<custom-attributes codeTable="tradetype"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:420px;top:60px;height:16px;">
<custom-attributes i18n="/cptp/LT000899/"/>
</label>
<xcombobox id="A1367" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:520px;top:60px;height:16px;width:184.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\trafmode"/>
<custom-attributes description="/cptp/FD000901/"/>
<custom-attributes codeTable="trafmode"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:60px;height:16px;">
<custom-attributes i18n="/cptp/LT000902/"/>
</label>
<xcombobox id="A1368" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:60px;height:16px;width:183.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\transmode"/>
<custom-attributes description="/cptp/FD000903/"/>
<custom-attributes codeTable="transmode"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
</div>
</center>
</borderlayout>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="700px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:20px;height:16px;width:166.0px;">
<custom-attributes i18n="/cptp/LT000897/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:100px;height:16px;">
<custom-attributes i18n="/cptp/LT000898/"/>
</label>
<xcombobox id="A1369" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:100px;height:16px;width:183.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\tradetype"/>
<custom-attributes description="/cptp/FD000900/"/>
<custom-attributes codeTable="tradetype"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:420px;top:60px;height:16px;">
<custom-attributes i18n="/cptp/LT000899/"/>
</label>
<xcombobox id="A1370" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:520px;top:60px;height:16px;width:184.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\trafmode"/>
<custom-attributes description="/cptp/FD000901/"/>
<custom-attributes codeTable="trafmode"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:60px;height:16px;">
<custom-attributes i18n="/cptp/LT000902/"/>
</label>
<xcombobox id="A1371" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:60px;height:16px;width:183.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\transmode"/>
<custom-attributes description="/cptp/FD000903/"/>
<custom-attributes codeTable="transmode"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="100%">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<borderlayout>
<north size="120px">
<div style="width:800px;height:120px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="cptapitop"/>
<hbox pack="left" style="width:100%;height:26px;" sclass="gbth-hbox">
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="\mtabut\sav"/>
<custom-attributes i18n="/mtabut/BT000486/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\images"/>
<custom-attributes i18n="/imgtp/BT000001/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\return"/>
<custom-attributes i18n="/mtabut/BT000304/"/>
</toolbarbutton>
</hbox>
<tree vflex="1" hflex="1" style="position:absolute;left:0px;top:60px;height:32px;width:100%;" sclass="steps" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="stpmod\steps"/>
<treecols />
<treechildren />
</tree>
</div>
</north>
<center>
<div style="width:800px;height:600px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="cptapipdf"/>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:20px;height:16px;width:110.0px;" sclass="stepTitle">
<custom-attributes i18n="/cptp/LT000689/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:160px;top:80px;height:16px;width:75.0px;" sclass="subStepTitle">
<custom-attributes i18n="/cptp/LT000690/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:520px;top:80px;height:16px;width:75.0px;" sclass="subStepTitle">
<custom-attributes i18n="/cptp/LT000691/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:100px;top:120px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="pdspdpdf"/>
<custom-attributes i18n="/cptp/BT000692/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:120px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="tdspdpdf"/>
<custom-attributes i18n="/cptp/BT000693/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:100px;top:160px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="pddecinpdf"/>
<custom-attributes i18n="/cptp/BT000694/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:160px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="tddecinpdf"/>
<custom-attributes i18n="/cptp/BT000695/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:100px;top:200px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="pddecoutpdf"/>
<custom-attributes i18n="/cptp/BT000696/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:200px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="tddecoutpdf"/>
<custom-attributes i18n="/cptp/BT000697/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:100px;top:240px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="fksmsqs"/>
<custom-attributes i18n="/cptp/BT000869/"/>
</toolbarbutton>
</div>
</center>
</borderlayout>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="100%">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<borderlayout>
</borderlayout>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="250px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:0px;height:16px;">
<custom-attributes i18n="/cptp/LT000454/"/>
</label>
<xdecimalbox id="A1037" apply="org.sss.presentation.zk.ZkComposer" w:onKeyUp="eibs.onchange_amount(this.getInputNode(),event,15,2)" format="#,##0.00" maxlength="24" style="position:absolute;left:160px;top:0px;height:16px;width:121.0px;text-align:right;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\jaccamt"/>
<custom-attributes description="/cptp/FD000483/"/>
</xdecimalbox>
<textbox id="A1038" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="35" style="position:absolute;left:540px;top:0px;height:16px;width:155.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\rmbact"/>
<custom-attributes description="/cptp/FD000481/"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:40px;height:16px;">
<custom-attributes i18n="/cptp/LT000456/"/>
</label>
<textbox id="A1039" apply="org.sss.presentation.zk.ZkComposer" maxlength="50" style="position:absolute;left:0px;top:60px;height:116px;width:325.0px;">
<custom-attributes fieldUrl="cpdgrp\rec\doclst"/>
</textbox>
<textbox id="A1040" apply="org.sss.presentation.zk.ZkComposer" maxlength="50" style="position:absolute;left:397px;top:60px;height:113px;width:343.0px;">
<custom-attributes fieldUrl="cpdgrp\rec\doctxt"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:700px;top:0px;border:none;background:white;" disabled="true" image="images/look.gif">
<custom-attributes fieldUrl="rmbbut"/>
</toolbarbutton>
<xcombobox id="A1041" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:100px;top:0px;height:16px;width:75.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\jacccur"/>
<custom-attributes description="/cptp/FD000482/"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:0px;height:16px;width:121.0px;">
<custom-attributes i18n="/cptp/LT000485/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:40px;height:16px;width:120.0px;">
<custom-attributes i18n="/cptp/LT000486/"/>
</label>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="520px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:0px;height:16px;width:296.0px;">
<custom-attributes i18n="/cptp/LT000325/"/>
</label>
<textbox multiline="true" id="A961" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:20px;height:160px;width:700.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="650" cols="65" rows="10">
<custom-attributes fieldUrl="inftxt"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:250px;height:16px;width:107.0px;">
<custom-attributes i18n="/rmkmod/LT000001/"/>
</label>
<textbox multiline="true" id="A962" apply="org.sss.presentation.zk.ZkComposer" readonly="true" style="position:absolute;left:20px;top:270px;height:76px;width:700.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="2000" cols="200" rows="10">
<custom-attributes fieldUrl="\rmkmod\otext"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:370px;height:16px;width:281.0px;">
<custom-attributes i18n="/rmkmod/LT000002/"/>
</label>
<textbox multiline="true" id="A963" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:390px;height:84px;width:700.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="2000" cols="200" rows="10">
<custom-attributes fieldUrl="\rmkmod\ntext"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="400px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<checkbox id="A964" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:20px;height:16px;width:434.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="retflg"/>
<custom-attributes i18n="/cptp/FD000327/"/>
</checkbox>
<checkbox id="A965" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:60px;height:16px;width:578.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="retflg2"/>
<custom-attributes i18n="/cptp/FD000328/"/>
</checkbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:110px;height:16px;width:107.0px;">
<custom-attributes i18n="/rmkmod/LT000001/"/>
</label>
<textbox multiline="true" id="A966" apply="org.sss.presentation.zk.ZkComposer" readonly="true" style="position:absolute;left:20px;top:130px;height:76px;width:700.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="2000" cols="200" rows="10">
<custom-attributes fieldUrl="\rmkmod\otext"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:230px;height:16px;width:281.0px;">
<custom-attributes i18n="/rmkmod/LT000002/"/>
</label>
<textbox multiline="true" id="A967" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:250px;height:84px;width:700.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="2000" cols="200" rows="10">
<custom-attributes fieldUrl="\rmkmod\ntext"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="820px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:20px;height:16px;width:340.0px;">
<custom-attributes i18n="/cptp/LT000313/"/>
</label>
<textbox multiline="true" id="A988" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:40px;height:60px;width:310.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="168" cols="42" rows="4">
<custom-attributes fieldUrl="intbic"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:21px;top:120px;height:16px;width:339.0px;">
<custom-attributes i18n="/cptp/LT000314/"/>
</label>
<textbox multiline="true" id="A989" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:140px;height:60px;width:310.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="168" cols="42" rows="4">
<custom-attributes fieldUrl="benbic"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:220px;height:16px;width:339.0px;">
<custom-attributes i18n="/cptp/LT000315/"/>
</label>
<textbox multiline="true" id="A990" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:240px;height:60px;width:310.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="188" cols="47" rows="4">
<custom-attributes fieldUrl="benacc"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:320px;height:16px;width:95.0px;">
<custom-attributes i18n="/cptp/LT000316/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:440px;height:16px;width:429.0px;">
<custom-attributes i18n="/cptp/LT000318/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:474px;height:16px;width:425.0px;">
<custom-attributes i18n="/cptp/LT000319/"/>
</label>
<checkbox id="A991" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:534px;height:16px;width:196.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="retflg2"/>
<custom-attributes i18n="/cptp/FD000340/"/>
</checkbox>
<textbox id="A992" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="18" style="position:absolute;left:404px;top:508px;height:16px;width:206.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="acc"/>
</textbox>
<textbox multiline="true" id="A993" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:340px;height:65px;width:343.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="210" cols="42" rows="5">
<custom-attributes fieldUrl="message"/>
</textbox>
<textbox multiline="true" id="A994" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:340px;height:65px;width:340.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="210" cols="42" rows="5">
<custom-attributes fieldUrl="others"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:21px;top:570px;height:16px;width:107.0px;">
<custom-attributes i18n="/rmkmod/LT000001/"/>
</label>
<textbox multiline="true" id="A995" apply="org.sss.presentation.zk.ZkComposer" readonly="true" style="position:absolute;left:21px;top:590px;height:76px;width:700.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="2000" cols="200" rows="10">
<custom-attributes fieldUrl="\rmkmod\otext"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:21px;top:690px;height:16px;width:281.0px;">
<custom-attributes i18n="/rmkmod/LT000002/"/>
</label>
<textbox multiline="true" id="A996" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:21px;top:710px;height:84px;width:700.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="2000" cols="200" rows="10">
<custom-attributes fieldUrl="\rmkmod\ntext"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:400px;top:320px;height:16px;width:89.0px;">
<custom-attributes i18n="/cptp/LT000341/"/>
</label>
<checkbox id="A997" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:508px;height:16px;width:407.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="retflg"/>
<custom-attributes i18n="/cptp/FD000363/"/>
</checkbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="100%">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<borderlayout>
<center>
<div style="width:7600px;height:1200px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="cptp08"/>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="font-weight:bold;;position:absolute;left:280px;top:60px;height:16px;width:202.0px;">
<custom-attributes i18n="/cptp/LT000290/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:140px;height:16px;">
<custom-attributes i18n="/cptp/LT000291/"/>
</label>
<textbox id="A968" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="16" style="position:absolute;left:75px;top:140px;height:16px;width:164.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\stlref"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:561px;top:100px;height:16px;">
<custom-attributes i18n="/cptp/LT000292/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:401px;top:140px;height:16px;">
<custom-attributes i18n="/cptp/LT000293/"/>
</label>
<xdecimalbox id="A969" apply="org.sss.presentation.zk.ZkComposer" format="#,##0.00" maxlength="24" style="position:absolute;left:551px;top:140px;height:16px;width:121.0px;text-align:right;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\remamt"/>
</xdecimalbox>
<xcombobox id="A970" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:478px;top:139px;height:16px;width:75.0px;ime-mode:disabled;" disabled="true">
<custom-attributes fieldUrl="cpdgrp\rec\remcur"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<textbox id="A971" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:20px;top:200px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="aplp\ptspta\pts\extkey"/>
</textbox>
<textbox multiline="true" id="A972" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:230px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="aplp\ptspta\pts\adrblk"/>
<custom-attributes description="/ptsp/FD000292/"/>
<custom-attributes textareaType="x"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:210px;top:201px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="aplp\sel"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:401px;top:180px;height:16px;width:219.0px;">
<custom-attributes i18n="/cptp/LT000295/"/>
</label>
<textbox id="A973" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:402px;top:200px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="benp\ptspta\pts\extkey"/>
</textbox>
<textbox multiline="true" id="A974" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:402px;top:230px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="benp\ptspta\pts\adrblk"/>
<custom-attributes description="/ptsp/FD000292/"/>
<custom-attributes textareaType="x"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:592px;top:201px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="benp\sel"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:323px;height:16px;">
<custom-attributes i18n="/cptp/LT000296/"/>
</label>
<xdatebox readonly="true" id="A975" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:636px;top:100px;height:16px;width:99.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="afdgrp\rec\credat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:100px;height:16px;">
<custom-attributes i18n="/cptp/LT000301/"/>
</label>
<xcombobox id="A976" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:75px;top:100px;height:16px;width:163.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="afdgrp\rec\bchcod"/>
<custom-attributes description="/cptp/FD000302/"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
<xcombobox id="A977" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:146px;top:320px;height:16px;width:161.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="afdgrp\rec\oprtyp"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:180px;height:16px;width:75.0px;">
<custom-attributes i18n="/cptp/LT000364/"/>
</label>
<hbox pack="left" style="width:100%;height:20px;" sclass="bth-hbox">
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="\mtabut\sav"/>
<custom-attributes i18n="/mtabut/BT000411/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-zancun">
<custom-attributes fieldUrl="\mtabut\ped"/>
<custom-attributes i18n="/mtabut/BT000412/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\apldocs"/>
<custom-attributes i18n="/mtabut/BT000413/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\images"/>
<custom-attributes i18n="/imgtp/BT000001/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\return"/>
<custom-attributes i18n="/mtabut/BT000304/"/>
</toolbarbutton>
</hbox>
<include style="position:absolute;left:1px;top:359px;height:100%;width:100%;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="fresubtp"/>
</include>
</div>
</center>
</borderlayout>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="1500px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="font-weight:bold;;position:absolute;left:280px;top:60px;height:16px;width:202.0px;">
<custom-attributes i18n="/cptp/LT000290/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:140px;height:16px;">
<custom-attributes i18n="/cptp/LT000291/"/>
</label>
<textbox id="A978" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="16" style="position:absolute;left:75px;top:140px;height:16px;width:164.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\stlref"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:561px;top:100px;height:16px;">
<custom-attributes i18n="/cptp/LT000292/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:401px;top:140px;height:16px;">
<custom-attributes i18n="/cptp/LT000293/"/>
</label>
<xdecimalbox id="A979" apply="org.sss.presentation.zk.ZkComposer" format="#,##0.00" maxlength="24" style="position:absolute;left:551px;top:140px;height:16px;width:121.0px;text-align:right;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\remamt"/>
</xdecimalbox>
<xcombobox id="A980" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:478px;top:139px;height:16px;width:75.0px;ime-mode:disabled;" disabled="true">
<custom-attributes fieldUrl="cpdgrp\rec\remcur"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<textbox id="A981" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:20px;top:200px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="aplp\ptspta\pts\extkey"/>
</textbox>
<textbox multiline="true" id="A982" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:230px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="aplp\ptspta\pts\adrblk"/>
<custom-attributes description="/ptsp/FD000292/"/>
<custom-attributes textareaType="x"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:210px;top:201px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="aplp\sel"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:401px;top:180px;height:16px;width:219.0px;">
<custom-attributes i18n="/cptp/LT000295/"/>
</label>
<textbox id="A983" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:402px;top:200px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="benp\ptspta\pts\extkey"/>
</textbox>
<textbox multiline="true" id="A984" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:402px;top:230px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="benp\ptspta\pts\adrblk"/>
<custom-attributes description="/ptsp/FD000292/"/>
<custom-attributes textareaType="x"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:592px;top:201px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="benp\sel"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:323px;height:16px;">
<custom-attributes i18n="/cptp/LT000296/"/>
</label>
<xdatebox readonly="true" id="A985" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:636px;top:100px;height:16px;width:99.0px;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="afdgrp\rec\credat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:100px;height:16px;">
<custom-attributes i18n="/cptp/LT000301/"/>
</label>
<xcombobox id="A986" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:75px;top:100px;height:16px;width:163.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="afdgrp\rec\bchcod"/>
<custom-attributes description="/cptp/FD000302/"/>
<custom-attributes formatter="{0}"/>
<custom-attributes required="true"/>
</xcombobox>
<xcombobox id="A987" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:146px;top:320px;height:16px;width:161.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="afdgrp\rec\oprtyp"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:20px;top:180px;height:16px;width:75.0px;">
<custom-attributes i18n="/cptp/LT000364/"/>
</label>
<hbox pack="left" style="width:100%;height:20px;" sclass="bth-hbox">
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="\mtabut\sav"/>
<custom-attributes i18n="/mtabut/BT000411/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-zancun">
<custom-attributes fieldUrl="\mtabut\ped"/>
<custom-attributes i18n="/mtabut/BT000412/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\mtabut\apldocs"/>
<custom-attributes i18n="/mtabut/BT000413/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\images"/>
<custom-attributes i18n="/imgtp/BT000001/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\return"/>
<custom-attributes i18n="/mtabut/BT000304/"/>
</toolbarbutton>
</hbox>
<include style="position:absolute;left:1px;top:359px;height:100%;width:100%;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="fresubtp"/>
</include>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="600px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<hbox pack="left" style="width:100%;height:26px;" sclass="bth-hbox">
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="border:none;background:white;" image="/locale/images/xzkh.gif">
<custom-attributes fieldUrl="\mtabut\edit"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="border:none;background:white;" image="/locale/images/bztz.gif">
<custom-attributes fieldUrl="\mtabut\quit"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="border:none;background:white;" image="/locale/images/zbztz.gif">
<custom-attributes fieldUrl="\mtabut\delay"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="border:none;background:white;" image="/locale/images/tzkh.gif">
<custom-attributes fieldUrl="\mtabut\advise"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\dztimgviw"/>
<custom-attributes i18n="/imgtp/BT000040/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\stlimgviw"/>
<custom-attributes i18n="/imgtp/BT000041/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\return"/>
<custom-attributes i18n="/mtabut/BT000304/"/>
</toolbarbutton>
</hbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:289px;height:16px;width:60.0px;">
<custom-attributes i18n="/mtabut/LT000131/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:60px;top:260px;height:16px;">
<custom-attributes i18n="/mtabut/LT000293/"/>
</label>
<textbox id="A1151" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:200px;top:260px;height:16px;width:195.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="\mtabut\imgtp\dztimgref"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:440px;top:260px;height:16px;">
<custom-attributes i18n="/mtabut/LT000294/"/>
</label>
<textbox id="A1152" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="16" style="position:absolute;left:540px;top:260px;height:16px;width:195.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="\mtabut\imgtp\stlimgref"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:320px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\trnmod\btnmod\docbtn0"/>
<custom-attributes i18n="/btnmod/BT000255/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:399px;top:320px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\trnmod\btnmod\docbtn1"/>
<custom-attributes i18n="/btnmod/BT000256/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:360px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\trnmod\btnmod\docbtn2"/>
<custom-attributes i18n="/btnmod/BT000257/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:399px;top:360px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\trnmod\btnmod\docbtn3"/>
<custom-attributes i18n="/btnmod/BT000258/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:400px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\trnmod\btnmod\docbtn4"/>
<custom-attributes i18n="/btnmod/BT000259/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:399px;top:400px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\trnmod\btnmod\docbtn5"/>
<custom-attributes i18n="/btnmod/BT000260/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:80px;top:437px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="\trnmod\btnmod\docbtn6"/>
<custom-attributes i18n="/btnmod/BT000261/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:60px;height:16px;width:172.0px;">
<custom-attributes i18n="/cptp/LT000595/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:140px;height:16px;">
<custom-attributes i18n="/cptp/LT000609/"/>
</label>
<textbox id="A1153" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:160px;top:140px;height:16px;width:201.0px;ime-mode:disabled;" readonly="true">
<custom-attributes fieldUrl="cpdgrp\rec\dstlref"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:480px;top:100px;height:16px;">
<custom-attributes i18n="/cptp/LT000610/"/>
</label>
<xdatebox readonly="true" id="A1154" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:560px;top:100px;height:16px;width:165.0px;ime-mode:disabled;" format="yyyy/MM/dd" disabled="true">
<custom-attributes fieldUrl="cpdgrp\rec\advdat"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:180px;height:16px;">
<custom-attributes i18n="/cptp/LT000611/"/>
</label>
<xcombobox id="A1155" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:120px;top:180px;height:16px;width:74.0px;ime-mode:disabled;" disabled="true">
<custom-attributes fieldUrl="cpdgrp\rec\remcur"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<xdecimalbox id="A1156" apply="org.sss.presentation.zk.ZkComposer" format="#,##0.00" maxlength="24" style="position:absolute;left:200px;top:180px;height:16px;width:161.0px;text-align:right;ime-mode:disabled;" readonly="true">
<custom-attributes fieldUrl="cpdgrp\rec\remamt"/>
</xdecimalbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:220px;height:16px;">
<custom-attributes i18n="/cptp/LT000613/"/>
</label>
<xcombobox id="A1157" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:240px;top:220px;height:16px;width:122.0px;ime-mode:disabled;" disabled="true">
<custom-attributes fieldUrl="cpdgrp\rec\isexist"/>
<custom-attributes codeTable="isexist"/>
<custom-attributes formatter="{0}"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:440px;top:180px;height:16px;">
<custom-attributes i18n="/cptp/LT000614/"/>
</label>
<textbox id="A1158" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="35" style="position:absolute;left:540px;top:180px;height:16px;width:201.0px;ime-mode:disabled;" readonly="true">
<custom-attributes fieldUrl="cpdgrp\rec\pyeact"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:440px;top:140px;height:16px;">
<custom-attributes i18n="/cptp/LT000615/"/>
</label>
<textbox id="A1159" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:540px;top:140px;height:16px;width:201.0px;ime-mode:disabled;" readonly="true">
<custom-attributes fieldUrl="cpdgrp\rec\payeeentmarkno"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="760px" height="620px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/cptp/PD000201/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<iframe style="position:absolute;left:20px;top:70px;height:448px;width:720.0px;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="display"/>
</iframe>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:654px;top:40px;">
<custom-attributes fieldUrl="apldoc"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/cptp/GT000201/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="107px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<textbox id="A1046" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="24" style="position:absolute;left:0px;top:0px;height:24px;width:180.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="benp\ptspta\pts\extkey"/>
</textbox>
<textbox multiline="true" id="A1047" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:30px;height:60px;width:310.0px;resize:none;ime-mode:disabled;" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="140" cols="35" rows="4">
<custom-attributes fieldUrl="benp\ptspta\pts\adrblk"/>
<custom-attributes description="/ptsp/FD000292/"/>
<custom-attributes textareaType="x"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:190px;top:1px;border:none;background:white;" image="images/look.gif">
<custom-attributes fieldUrl="benp\sel"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="700px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:420px;top:80px;height:16px;width:152.0px;">
<custom-attributes i18n="/cptp/LT000747/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:220px;top:140px;height:16px;">
<custom-attributes i18n="/cptp/LT000748/"/>
</label>
<textbox id="A1320" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="8" style="position:absolute;left:340px;top:180px;height:16px;width:143.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="hyno"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:220px;top:180px;height:16px;">
<custom-attributes i18n="/cptp/LT000749/"/>
</label>
<textbox id="A1321" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="128" style="position:absolute;left:340px;top:140px;height:16px;width:143.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="hyimpno"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:580px;top:140px;" sclass="width:120px,
inbtn icon-chaxun">
<custom-attributes fieldUrl="hycsel"/>
<custom-attributes i18n="/cptp/BT000750/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:580px;top:180px;" sclass="width:120px,
inbtn icon-tijiao">
<custom-attributes fieldUrl="hyccom"/>
<custom-attributes i18n="/cptp/BT000751/"/>
</toolbarbutton>
<listbox mold="paging" pageSize="20" id="A1322" style="position:absolute;left:100px;top:240px;height:319px;width:746.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="hyimp"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(hyimpno)" width="130px">
<custom-attributes i18n="/cptp/TH000753/"/>
<custom-attributes columnName="hyimpno"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(hyno)" width="100px">
<custom-attributes i18n="/cptp/TH000754/"/>
<custom-attributes columnName="hyno"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(remcur)" width="100px">
<custom-attributes i18n="/cptp/TH000755/"/>
<custom-attributes columnName="remcur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(remamt)" width="100px">
<custom-attributes i18n="/cptp/TH000756/"/>
<custom-attributes columnName="remamt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(fxamt)" width="100px">
<custom-attributes i18n="/cptp/TH000757/"/>
<custom-attributes columnName="fxamt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(fxact)" width="100px">
<custom-attributes i18n="/cptp/TH000758/"/>
<custom-attributes columnName="fxact"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(paynam)" width="100px">
<custom-attributes i18n="/cptp/TH000761/"/>
<custom-attributes columnName="paynam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(payadd)" width="100px">
<custom-attributes i18n="/cptp/TH000762/"/>
<custom-attributes columnName="payadd"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(opnkey)" width="100px">
<custom-attributes i18n="/cptp/TH000765/"/>
<custom-attributes columnName="opnkey"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(opnnam)" width="100px">
<custom-attributes i18n="/cptp/TH000766/"/>
<custom-attributes columnName="opnnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(opnadd)" width="100px">
<custom-attributes i18n="/cptp/TH000767/"/>
<custom-attributes columnName="opnadd"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(payeenameapp)" width="100px">
<custom-attributes i18n="/cptp/TH000768/"/>
<custom-attributes columnName="payeenameapp"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(pyeact)" width="100px">
<custom-attributes i18n="/cptp/TH000769/"/>
<custom-attributes columnName="pyeact"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(payeeadd)" width="100px">
<custom-attributes i18n="/cptp/TH000770/"/>
<custom-attributes columnName="payeeadd"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(detchgcod)" width="100px">
<custom-attributes i18n="/cptp/TH000771/"/>
<custom-attributes columnName="detchgcod"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(pyecry)" width="100px">
<custom-attributes i18n="/cptp/TH000772/"/>
<custom-attributes columnName="pyecry"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(paytyp)" width="100px">
<custom-attributes i18n="/cptp/TH000773/"/>
<custom-attributes columnName="paytyp"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(paytyptxt)" width="100px">
<custom-attributes i18n="/cptp/TH000774/"/>
<custom-attributes columnName="paytyptxt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(bopcod1)" width="100px">
<custom-attributes i18n="/cptp/TH000775/"/>
<custom-attributes columnName="bopcod1"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(bopamt1)" width="100px">
<custom-attributes i18n="/cptp/TH000776/"/>
<custom-attributes columnName="bopamt1"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(bopinf1)" width="100px">
<custom-attributes i18n="/cptp/TH000777/"/>
<custom-attributes columnName="bopinf1"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(conno)" width="100px">
<custom-attributes i18n="/cptp/TH000778/"/>
<custom-attributes columnName="conno"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:100px;top:220px;height:16px;width:132.0px;">
<custom-attributes i18n="/cptp/LT000752/"/>
</label>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="200px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:0px;height:16px;">
<custom-attributes i18n="/cptp/LT000474/"/>
</label>
<textbox id="A1043" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="35" style="position:absolute;left:0px;top:20px;height:80px;width:700.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="cpdgrp\rec\cptinf"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="160px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:2px;top:1px;height:20px;width:70.0px;">
<custom-attributes i18n="/cusp/LT000001/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:368px;top:125px;border:none;background:white;" image="/locale/images/xze.gif">
<custom-attributes fieldUrl="add"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:496px;top:125px;border:none;background:white;" image="/locale/images/sc.gif">
<custom-attributes fieldUrl="del"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:432px;top:125px;border:none;background:white;" image="/locale/images/xg.gif">
<custom-attributes fieldUrl="modify"/>
</toolbarbutton>
<listbox mold="paging" pageSize="15" id="A1403" style="position:absolute;left:0px;top:25px;height:80px;width:564.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="apyctm"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(atcnum)" width="100px">
<custom-attributes i18n="/cusp/TH000005/"/>
<custom-attributes columnName="atcnum"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(atccur)" width="100px">
<custom-attributes i18n="/cusp/TH000006/"/>
<custom-attributes columnName="atccur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(atcamt)" width="100px">
<custom-attributes i18n="/cusp/TH000007/"/>
<custom-attributes columnName="atcamt"/>
<custom-attributes columnControl="decimalbox"/>
<custom-attributes columnStyle="text-align:right;padding-right:5pxwidth:95px;"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(chkcur)" width="100px">
<custom-attributes i18n="/cusp/TH000008/"/>
<custom-attributes columnName="chkcur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(chkamt)" width="100px">
<custom-attributes i18n="/cusp/TH000009/"/>
<custom-attributes columnName="chkamt"/>
<custom-attributes columnControl="decimalbox"/>
<custom-attributes columnStyle="text-align:right;padding-right:5pxwidth:95px;"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
</listhead>
</listbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="200px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox id="A1485" style="position:absolute;left:0px;top:0px;height:175px;width:405.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="boplst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(cod)" width="100px">
<custom-attributes i18n="/decgrp/TH000043/"/>
<custom-attributes columnName="cod"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(txt)" width="300px">
<custom-attributes i18n="/decgrp/TH000044/"/>
<custom-attributes columnName="txt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
</window>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" height="100%" width="100%" xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd">
<style src="/public/template.css"/>
<script src="/public/template.js" type="text/javascript"/>
<label multiline="true" style="position:absolute;left:140px;top:80px;height:16px;" value="姓名" zclass="z-label"/>
<textbox readonly="true" rows="1" style="position:absolute;left:240px;top:80px;height:16px;width:201.0px;ime-mode:disabled;border-bottom:solid red;" text="${nan}" zclass="z-textbox"/>
<label multiline="true" style="position:absolute;left:140px;top:120px;height:16px;" value="电话" zclass="z-label"/>
<textbox readonly="true" rows="1" style="position:absolute;left:240px;top:120px;height:16px;width:201.0px;ime-mode:disabled;border-bottom:solid red;" text="${tel}" zclass="z-textbox"/>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="26px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:0px;" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="dztimgviw"/>
<custom-attributes i18n="/imgtp/BT000070/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="700px" height="470px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/invl/PD000013/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:50px;height:20px;">
<custom-attributes i18n="/invl/LT000015/"/>
</label>
<textbox id="A1487" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="30" style="position:absolute;left:140px;top:50px;height:20px;width:181.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="invdet\invoicecode"/>
<custom-attributes description="/invl/FD000040/"/>
<custom-attributes required="true"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:380px;top:50px;height:16px;">
<custom-attributes i18n="/invl/LT000016/"/>
</label>
<textbox id="A1488" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="21" style="position:absolute;left:480px;top:50px;height:20px;width:180.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="invdet\invoicenumber"/>
<custom-attributes description="/invl/FD000041/"/>
<custom-attributes required="true"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:90px;height:20px;">
<custom-attributes i18n="/invl/LT000017/"/>
</label>
<xdatebox readonly="true" id="A1489" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:90px;height:20px;width:180.0px;background:#FFFFA0;ime-mode:disabled;" format="yyyy/MM/dd">
<custom-attributes fieldUrl="invdet\billingdate"/>
<custom-attributes description="/invl/FD000042/"/>
<custom-attributes required="true"/>
</xdatebox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:380px;top:170px;height:20px;">
<custom-attributes i18n="/invl/LT000022/"/>
</label>
<textbox id="A1490" apply="org.sss.presentation.zk.ZkComposer" maxlength="60" style="position:absolute;left:480px;top:170px;height:20px;width:182.0px;background:#FFFFA0;">
<custom-attributes fieldUrl="invdet\salesname"/>
<custom-attributes description="/invl/FD000047/"/>
<custom-attributes required="true"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:380px;top:210px;height:20px;">
<custom-attributes i18n="/invl/LT000023/"/>
</label>
<xdecimalbox id="A1491" apply="org.sss.presentation.zk.ZkComposer" w:onKeyUp="eibs.onchange_amount(this.getInputNode(),event,15,2)" format="#,##0.00" maxlength="24" style="position:absolute;left:480px;top:210px;height:20px;width:183.0px;background:#FFFFA0;text-align:right;ime-mode:disabled;">
<custom-attributes fieldUrl="invdet\gframt"/>
<custom-attributes description="/invl/FD000049/"/>
<custom-attributes required="true"/>
</xdecimalbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:380px;top:90px;height:20px;">
<custom-attributes i18n="/invl/LT000025/"/>
</label>
<textbox id="A1492" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="10" style="position:absolute;left:480px;top:90px;height:20px;width:181.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="invdet\checkcode"/>
<custom-attributes description="/invl/FD000043/"/>
<custom-attributes required="true"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:170px;height:20px;">
<custom-attributes i18n="/invl/LT000026/"/>
</label>
<textbox id="A1493" apply="org.sss.presentation.zk.ZkComposer" maxlength="60" style="position:absolute;left:140px;top:170px;height:20px;width:182.0px;background:#FFFFA0;">
<custom-attributes fieldUrl="invdet\purchasername"/>
<custom-attributes description="/invl/FD000046/"/>
<custom-attributes required="true"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:210px;height:20px;">
<custom-attributes i18n="/invl/LT000028/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:250px;height:16px;">
<custom-attributes i18n="/invl/LT000029/"/>
</label>
<textbox id="A1494" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="2" style="position:absolute;left:140px;top:250px;height:20px;width:181.0px;ime-mode:disabled;" readonly="true">
<custom-attributes fieldUrl="invdet\state"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:290px;height:16px;">
<custom-attributes i18n="/invl/LT000030/"/>
</label>
<textbox id="A1495" apply="org.sss.presentation.zk.ZkComposer" maxlength="35" style="position:absolute;left:140px;top:290px;height:110px;width:519.0px;background:#FFFFA0;">
<custom-attributes fieldUrl="invdet\remarks"/>
<custom-attributes description="/invl/FD000050/"/>
<custom-attributes required="true"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:130px;height:16px;">
<custom-attributes i18n="/invl/LT000044/"/>
</label>
<xdecimalbox id="A1496" apply="org.sss.presentation.zk.ZkComposer" w:onKeyUp="eibs.onchange_amount(this.getInputNode(),event,15,2)" format="#,##0.00" maxlength="24" style="position:absolute;left:140px;top:130px;height:16px;width:181.0px;background:#FFFFA0;text-align:right;ime-mode:disabled;">
<custom-attributes fieldUrl="invdet\invamt"/>
<custom-attributes description="/invl/FD000045/"/>
<custom-attributes required="true"/>
</xdecimalbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:580px;top:420px;" sclass="inbtn icon-baocunmoban">
<custom-attributes fieldUrl="invsav"/>
<custom-attributes i18n="/invl/BT000051/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:460px;top:420px;" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="invcancel"/>
<custom-attributes i18n="/invl/BT000052/"/>
</toolbarbutton>
<xcombobox id="A1497" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:210px;height:16px;width:180.0px;background:#FFFFA0;">
<custom-attributes fieldUrl="invdet\gfrcur"/>
<custom-attributes description="/invl/FD000054/"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{1}"/>
<custom-attributes required="true"/>
</xcombobox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:380px;top:130px;height:16px;">
<custom-attributes i18n="/invl/LT000055/"/>
</label>
<textbox id="A1498" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:480px;top:130px;height:16px;width:179.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="invdet\purchasertaxno"/>
<custom-attributes description="/invl/FD000056/"/>
<custom-attributes required="true"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:380px;top:250px;height:16px;">
<custom-attributes i18n="/invl/LT000064/"/>
</label>
<textbox id="A1499" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="20" style="position:absolute;left:480px;top:250px;height:16px;width:182.0px;background:#FFFFA0;ime-mode:disabled;">
<custom-attributes fieldUrl="invdet\salestaxno"/>
<custom-attributes description="/invl/FD000065/"/>
<custom-attributes required="true"/>
</textbox>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="400px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox mold="paging" pageSize="15" id="A1486" style="position:absolute;left:0px;top:27px;height:320px;width:800.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="invlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(selflg)" width="40px">
<custom-attributes i18n="/invl/TH000066/"/>
<custom-attributes columnName="selflg"/>
<custom-attributes columnControl="checkbox"/>
<custom-attributes columnStyle="width:35px;"/>
</listheader>
<listheader sort="auto(alsnam)" width="100px">
<custom-attributes i18n="/invl/TH000031/"/>
<custom-attributes columnName="alsnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(invoicecode)" width="110px">
<custom-attributes i18n="/invl/TH000002/"/>
<custom-attributes columnName="invoicecode"/>
<custom-attributes columnControl="hyperlink"/>
<custom-attributes columnStyle="width:105px;"/>
</listheader>
<listheader sort="auto(invoicenumber)" width="80px">
<custom-attributes i18n="/invl/TH000003/"/>
<custom-attributes columnName="invoicenumber"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(billingdate)" width="85px">
<custom-attributes i18n="/invl/TH000004/"/>
<custom-attributes columnName="billingdate"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes formatter="yyyy/MM/dd"/>
</listheader>
<listheader sort="auto(checkcode)" width="80px">
<custom-attributes i18n="/invl/TH000034/"/>
<custom-attributes columnName="checkcode"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(gfrcur)" width="60px">
<custom-attributes i18n="/invl/TH000062/"/>
<custom-attributes columnName="gfrcur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{1}"/>
</listheader>
<listheader sort="auto(gframt)" width="100px">
<custom-attributes i18n="/invl/TH000057/"/>
<custom-attributes columnName="gframt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(invamt)" width="100px">
<custom-attributes i18n="/invl/TH000005/"/>
<custom-attributes columnName="invamt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(checkresult)" width="300px" style="color: red;">
<custom-attributes i18n="/invl/TH000006/"/>
<custom-attributes columnName="checkresult"/>
<custom-attributes columnStyle="color: red;"/>
</listheader>
<listheader sort="auto(inr)" width="0px">
<custom-attributes i18n="/invl/TH000033/"/>
<custom-attributes columnName="inr"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(ownref)" width="0px">
<custom-attributes i18n="/invl/TH000035/"/>
<custom-attributes columnName="ownref"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(ocrres)" width="0px">
<custom-attributes i18n="/invl/TH000036/"/>
<custom-attributes columnName="ocrres"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="payeetrantype"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(tblbilinr)" width="0px">
<custom-attributes i18n="/invl/TH000037/"/>
<custom-attributes columnName="tblbilinr"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0"/>
</listheader>
</listhead>
</listbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:0px;height:20px;width:86.0px;">
<custom-attributes i18n="/invl/LT000007/"/>
</label>
<toolbarbutton upload="true,maxsize=-1" w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:205px;top:0px;" sclass="inbtn icon-daoru">
<custom-attributes fieldUrl="upinv"/>
<custom-attributes operateType="upload"/>
<custom-attributes i18n="/invl/FD000008/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:334px;top:0px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="invref"/>
<custom-attributes i18n="/invl/BT000009/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:607px;top:0px;" sclass="inbtn icon-remove">
<custom-attributes fieldUrl="invdel"/>
<custom-attributes i18n="/invl/BT000011/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:695px;top:0px;" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="detailview"/>
<custom-attributes i18n="/invl/BT000012/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="color: red;;position:absolute;left:0px;top:359px;height:16px;width:800.0px;">
<custom-attributes i18n="/invl/LT000038/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="color: red;;position:absolute;left:0px;top:379px;height:16px;width:746.0px;">
<custom-attributes i18n="/invl/LT000039/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:455px;top:0px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="refdisplay"/>
<custom-attributes i18n="/invl/BT000061/"/>
</toolbarbutton>
<timer delay="5000" repeats="true" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="timer"/>
<custom-attributes times="-1"/>
</timer>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:114px;top:0px;" sclass="inbtn icon-piliang">
<custom-attributes fieldUrl="selall"/>
<custom-attributes i18n="/invl/BT000067/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
closable="true" apply="org.sss.presentation.zk.ZkComposer" width="800px" height="600px" border="normal" contentStyle="Background:#FFFFFF">
<caption height="10px"/>
<custom-attributes i18n="/invl/PD000059/"/>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<listbox mold="paging" pageSize="15" id="A1500" style="position:absolute;left:25px;top:57px;height:455px;width:750.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="invlst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(alsnam)" width="100px">
<custom-attributes i18n="/invl/TH000031/"/>
<custom-attributes columnName="alsnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(invoicecode)" width="110px">
<custom-attributes i18n="/invl/TH000002/"/>
<custom-attributes columnName="invoicecode"/>
<custom-attributes columnControl="hyperlink"/>
<custom-attributes columnStyle="width:105px;"/>
</listheader>
<listheader sort="auto(invoicenumber)" width="80px">
<custom-attributes i18n="/invl/TH000003/"/>
<custom-attributes columnName="invoicenumber"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(billingdate)" width="100px">
<custom-attributes i18n="/invl/TH000004/"/>
<custom-attributes columnName="billingdate"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes formatter="yyyy/MM/dd"/>
</listheader>
<listheader sort="auto(checkcode)" width="80px">
<custom-attributes i18n="/invl/TH000034/"/>
<custom-attributes columnName="checkcode"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(gfrcur)" width="60px">
<custom-attributes i18n="/invl/TH000063/"/>
<custom-attributes columnName="gfrcur"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="cur"/>
<custom-attributes formatter="{1}"/>
</listheader>
<listheader sort="auto(gframt)" width="100px">
<custom-attributes i18n="/invl/TH000057/"/>
<custom-attributes columnName="gframt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(invamt)" width="100px">
<custom-attributes i18n="/invl/TH000005/"/>
<custom-attributes columnName="invamt"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0.00"/>
</listheader>
<listheader sort="auto(checkresult)" width="300px" style="color: red;">
<custom-attributes i18n="/invl/TH000006/"/>
<custom-attributes columnName="checkresult"/>
<custom-attributes columnStyle="color: red;"/>
</listheader>
<listheader sort="auto(inr)" width="0px">
<custom-attributes i18n="/invl/TH000033/"/>
<custom-attributes columnName="inr"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(ownref)" width="0px">
<custom-attributes i18n="/invl/TH000035/"/>
<custom-attributes columnName="ownref"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(ocrres)" width="0px">
<custom-attributes i18n="/invl/TH000036/"/>
<custom-attributes columnName="ocrres"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
<custom-attributes codeTable="payeetrantype"/>
<custom-attributes formatter="{0}"/>
</listheader>
<listheader sort="auto(tblbilinr)" width="0px">
<custom-attributes i18n="/invl/TH000037/"/>
<custom-attributes columnName="tblbilinr"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;text-align:right;padding-right:5px"/>
<custom-attributes formatter="#,##0"/>
</listheader>
</listhead>
</listbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:700px;top:550px;" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="invlcancel"/>
<custom-attributes i18n="/invl/BT000060/"/>
</toolbarbutton>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="100%">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<borderlayout>
<north size="90px">
<div style="width:1000px;height:90px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="litstpbtn"/>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:920px;top:0px;" sclass="inbtn icon-fanhui">
<custom-attributes fieldUrl="\mtabut\return"/>
<custom-attributes i18n="/mtabut/BT000304/"/>
</toolbarbutton>
<tree vflex="1" hflex="1" style="position:absolute;left:0px;top:50px;height:32px;width:100%;" sclass="steps" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="stpmod\steps"/>
<treecols />
<treechildren />
</tree>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:652px;top:0px;" sclass="inbtn icon-chaxunmoban">
<custom-attributes fieldUrl="\mtabut\busmod\seltemplate"/>
<custom-attributes i18n="/busmod/BT000025/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:766px;top:0px;" sclass="inbtn icon-baocunmoban">
<custom-attributes fieldUrl="\mtabut\busmod\savetemplate"/>
<custom-attributes i18n="/busmod/BT000024/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:0px;top:0px;" sclass="inbtn icon-tijiao">
<custom-attributes fieldUrl="\mtabut\sav"/>
<custom-attributes i18n="/mtabut/BT000380/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:126px;top:0px;" sclass="inbtn icon-zancun">
<custom-attributes fieldUrl="\mtabut\ped"/>
<custom-attributes i18n="/mtabut/BT000381/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:264px;top:0px;" sclass="inbtn icon-caogao">
<custom-attributes fieldUrl="\mtabut\sftdra"/>
<custom-attributes operateType="download"/>
<custom-attributes i18n="/mtabut/FD000383/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:402px;top:0px;" sclass="inbtn icon-youjian">
<custom-attributes fieldUrl="\mtabut\mail"/>
<custom-attributes i18n="/mtabut/BT000382/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:540px;top:0px;" sclass="inbtn icon-yingxiang">
<custom-attributes fieldUrl="\mtabut\imgtp\images"/>
<custom-attributes i18n="/imgtp/BT000001/"/>
</toolbarbutton>
</div>
</north>
<center>
<div style="width:800px;height:600px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="litapn00"/>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:240px;top:400px;" sclass="inbtn icon-shangyibu">
<custom-attributes fieldUrl="stpmod\last"/>
<custom-attributes i18n="/stpmod/BT000003/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:480px;top:400px;" sclass="inbtn icon-xiayibu">
<custom-attributes fieldUrl="stpmod\next"/>
<custom-attributes i18n="/stpmod/BT000001/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:200px;top:140px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="pdflid"/>
<custom-attributes i18n="/litp/BT000977/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:440px;top:140px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="pdflxd"/>
<custom-attributes i18n="/litp/BT000978/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:200px;top:200px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="pdfbxd"/>
<custom-attributes i18n="/litp/BT000979/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:440px;top:200px;" sclass="inbtn icon-pdf">
<custom-attributes fieldUrl="pdfmar"/>
<custom-attributes i18n="/litp/BT000980/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:340px;top:40px;height:16px;width:153.0px;" sclass="stepTitle">
<custom-attributes i18n="/litp/LT000981/"/>
</label>
</div>
</center>
</borderlayout>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="600px">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="100%">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<borderlayout>
<center>
<div style="width:800px;height:620px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="litmdl03"/>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:560px;top:680px;">
<custom-attributes fieldUrl="select"/>
<custom-attributes i18n="/litp/BT000961/"/>
</toolbarbutton>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:40px;top:120px;height:16px;width:120.0px;">
<custom-attributes i18n="/cidmod/LT000001/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:200px;top:120px;height:16px;">
<custom-attributes i18n="/cidmod/LT000002/"/>
</label>
<textbox id="A2225" apply="org.sss.presentation.zk.ZkComposer" w:onKeyPress="swift.onkeypress(event)" w:onKeyUp="swift.onchange(this.getInputNode(),event)" w:onBeforePaste="swift.clipboard()" maxlength="10" style="position:absolute;left:300px;top:120px;height:16px;width:199.0px;ime-mode:disabled;">
<custom-attributes fieldUrl="cidmod\cid"/>
</textbox>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:560px;top:120px;" sclass="inbtn icon-chaxun">
<custom-attributes fieldUrl="cidmod\search"/>
<custom-attributes i18n="/cidmod/BT000003/"/>
</toolbarbutton>
<listbox id="A2226" style="position:absolute;left:40px;top:160px;height:480px;width:600.0px;ime-mode:disabled;" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="cidmod\clilst"/>
<custom-attributes rowHeight="20px"/>
<listhead sizable="true">
<listheader sort="auto(cid)" width="100px">
<custom-attributes i18n="/cidmod/TH000004/"/>
<custom-attributes columnName="cid"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(nam)" width="250px">
<custom-attributes i18n="/cidmod/TH000005/"/>
<custom-attributes columnName="nam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
<listheader sort="auto(engnam)" width="250px">
<custom-attributes i18n="/cidmod/TH000006/"/>
<custom-attributes columnName="engnam"/>
<custom-attributes columnStyle="word-break:keep-all;white-space:nowrap;"/>
</listheader>
</listhead>
</listbox>
</div>
</center>
</borderlayout>
</window>
<?xml version="1.0" encoding="UTF-8" ?>
<window xmlns="http://www.zkoss.org/2005/zul" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:h="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.zkoss.org/2005/zul http://www.zkoss.org/2005/zul/zul.xsd" xmlns:w="http://www.zkoss.org/2005/zk/client"
apply="org.sss.presentation.zk.ZkComposer" width="100%" height="100%">
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<borderlayout>
<center>
<div style="width:800px;height:700px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="litmdl13"/>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="font-weight:bold;;position:absolute;left:360px;top:20px;height:16px;width:120.0px;">
<custom-attributes i18n="/bummod/LT000001/"/>
</label>
<textbox multiline="true" id="A2536" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:220px;top:120px;height:16px;width:400.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="100" cols="100" rows="4">
<custom-attributes fieldUrl="bummod\wrkmdl\busdcb"/>
</textbox>
<textbox multiline="true" id="A2537" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:220px;top:160px;height:124px;width:400.0px;resize:none;" w:onKeyUp="eibs.onchange(this.getInputNode(),event)" maxlength="200" cols="200" rows="4">
<custom-attributes fieldUrl="bummod\wrkmdl\mdldcb"/>
</textbox>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:120px;height:16px;width:74.0px;">
<custom-attributes i18n="/bummod/LT000002/"/>
</label>
<label multiline="true" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:140px;top:160px;height:16px;width:71.0px;">
<custom-attributes i18n="/bummod/LT000003/"/>
</label>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:545px;top:340px;" sclass="inbtn icon-baocunmoban">
<custom-attributes fieldUrl="bummod\save"/>
<custom-attributes i18n="/bummod/BT000015/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:240px;top:620px;" sclass="inbtn icon-shangyibu">
<custom-attributes fieldUrl="stpmod\last"/>
<custom-attributes i18n="/stpmod/BT000003/"/>
</toolbarbutton>
<toolbarbutton w:onMouseOver="this.focus()" apply="org.sss.presentation.zk.ZkComposer" style="position:absolute;left:480px;top:620px;" sclass="inbtn icon-xiayibu">
<custom-attributes fieldUrl="stpmod\next"/>
<custom-attributes i18n="/stpmod/BT000001/"/>
</toolbarbutton>
</div>
</center>
<north size="90px">
<div style="width:800px;height:90px;" apply="org.sss.presentation.zk.common.spi.SSSComposer">
<custom-attributes fieldUrl="litmdltop"/>
<tree vflex="1" hflex="1" style="position:absolute;left:0px;top:50px;height:32px;width:100%;" sclass="steps" apply="org.sss.presentation.zk.ZkComposer">
<custom-attributes fieldUrl="stpmod\steps"/>
<treecols />
<treechildren />
</tree>
</div>
</north>
</borderlayout>
</window>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment