投保单信息页面字段调整

master
le 1 week ago
parent 104dedafd4
commit 1ac21d1e66
  1. 109
      lis-model-policy-schema/src/main/java/com/sinosoft/lis/schema/LCGrpContSchema.java
  2. 14
      lis-model-policy-schema/src/main/java/com/sinosoft/lis/schema/LCGrpInvoiceDetailSchema.java
  3. 25
      lis-module-grp-nb-service/src/main/java/com/sinosoft/lis/controller/g_app/LCGrpContPolController.java
  4. 6
      lis-module-grp-nb-web/src/main/webapp/g_app/LCGrpCompContPolInput.js
  5. 8
      lis-module-grp-nb-web/src/main/webapp/g_app/LCGrpCompNewContPolInput.js
  6. 102
      lis-module-grp-nb-web/src/main/webapp/g_app/LCGrpContPolInput.js
  7. 85
      lis-module-grp-nb-web/src/main/webapp/g_app/LCGrpContPolInput.jsp

@ -794,8 +794,48 @@ public class LCGrpContSchema extends Entity implements Schema<LCGrpContSchema>,
@Column(index = 169, name = "ModifyOperator", desc = "最后一次修改操作员", type = Schema.TYPE_STRING)
private String modifyOperator;
@Getter
@Setter
@Column(index = 170, name = "grpType", desc = "组织类型", type = Schema.TYPE_STRING)
private String grpType;
@Getter
@Setter
@Column(index = 171, name = "cDate", desc = "成立日期", type = Schema.TYPE_DATE)
private Date cDate;
@Getter
@Setter
@Column(index = 172, name = "bussarea", desc = "经营区域", type = Schema.TYPE_STRING)
private String bussarea;
@Getter
@Setter
@Column(index = 173, name = "Corporation1", desc = "法人姓名", type = Schema.TYPE_STRING)
private String Corporation1;
@Getter
@Setter
@Column(index = 174, name = "CorIDType1", desc = "法人证件类型", type = Schema.TYPE_STRING)
private String CorIDType1;
@Getter
@Setter
@Column(index = 175, name = "CorID1", desc = "法人证件号码", type = Schema.TYPE_STRING)
private String CorID1;
@Getter
@Setter
@Column(index = 176, name = "CorIDStartDate1", desc = "法人证件有效期起", type = Schema.TYPE_DATE)
private Date CorIDStartDate1;
@Getter
@Setter
@Column(index = 177, name = "CorIDExpiryDate1", desc = "法人证件有效期止", type = Schema.TYPE_DATE)
private Date CorIDExpiryDate1;
public static final int FIELDNUM = 170; // 数据库表的字段个数
public static final int FIELDNUM = 178; // 数据库表的字段个数
private transient FDate fDate = new FDate(); // 处理日期
@ -1806,6 +1846,73 @@ public class LCGrpContSchema extends Entity implements Schema<LCGrpContSchema>,
return this;
}
public String getCorIDStartDate1() {
if (CorIDStartDate1 != null)
return fDate.getString(CorIDStartDate1);
else
return null;
}
public LCGrpContSchema setCorIDStartDate1(Date acDate) {
CorIDStartDate1 = acDate;
return this;
}
public LCGrpContSchema setCorIDStartDate1(String acDate) {
if (acDate != null && !acDate.equals("") && !acDate.equals("null")) {
CorIDStartDate1 = fDate.getDate(acDate);
} else {
CorIDStartDate1 = null;
}
return this;
}
public String getCDate() {
if (cDate != null)
return fDate.getString(cDate);
else
return null;
}
public LCGrpContSchema setCDate(Date acDate) {
cDate = acDate;
return this;
}
public LCGrpContSchema setCDate(String acDate) {
if (acDate != null && !acDate.equals("") && !acDate.equals("null")) {
cDate = fDate.getDate(acDate);
} else {
cDate = null;
}
return this;
}
public String getCorIDExpiryDate1() {
if (CorIDExpiryDate1 != null)
return fDate.getString(CorIDExpiryDate1);
else
return null;
}
public LCGrpContSchema setCorIDExpiryDate1(Date acDate) {
CorIDExpiryDate1 = acDate;
return this;
}
public LCGrpContSchema setCorIDExpiryDate1(String acDate) {
if (acDate != null && !acDate.equals("") && !acDate.equals("null")) {
CorIDExpiryDate1 = fDate.getDate(acDate);
} else {
CorIDExpiryDate1 = null;
}
return this;
}
public LCGrpContSchema setAmntShareRate(double aAmntShareRate) {
amntShareRate = aAmntShareRate;
return this;

@ -212,8 +212,20 @@ public class LCGrpInvoiceDetailSchema extends Entity implements Schema<LCGrpInvo
@Column(index = 22, name = "ElectInvoiceEmail", desc = "电子发票接收邮箱", type = Schema.TYPE_STRING)
private String electInvoiceEmail;
@Getter
@Setter
@Column(index = 23, name = "fuli", desc = "是否开通福利平台", type = Schema.TYPE_STRING)
private String fuli;
@Getter
@Setter
@Column(index = 24, name = "Taxpayer", desc = "纳税人类型", type = Schema.TYPE_STRING)
private String Taxpayer;
@Getter
@Setter
@Column(index = 25, name = "Invoice", desc = "发票样式", type = Schema.TYPE_STRING)
private String Invoice;
public static final int FIELDNUM = 23; // 数据库表的字段个数
public static final int FIELDNUM = 26; // 数据库表的字段个数
private transient FDate fDate = new FDate(); // 处理日期

@ -411,6 +411,24 @@ public class LCGrpContPolController {
String mOnJobNumber =request.getParameter("AllOnWorkPeoples");
String mRetireNumber = request.getParameter("AllOffWorkPeoples");
//法人信息
String mCorporation1 = request.getParameter("Corporation1");
String mCorIDType1 = request.getParameter("CorIDType1");
String mCorID1 = request.getParameter("CorID1");
String mCorIDStartDate1 = request.getParameter("CorIDStartDate1");
String mCorIDExpiryDate1 = request.getParameter("CorIDExpiryDate1");
String mGrpType = request.getParameter("grpType");
String mcDate = request.getParameter("cDate");
String mBussarea = request.getParameter("bussarea");
mLCGrpContSchema.setCorporation1(mCorporation1);
mLCGrpContSchema.setCorIDType1(mCorIDType1);
mLCGrpContSchema.setCorID1(mCorID1);
mLCGrpContSchema.setCorIDStartDate1(mCorIDStartDate1);
mLCGrpContSchema.setCorIDExpiryDate1(mCorIDExpiryDate1);
mLCGrpContSchema.setGrpType(mGrpType);
mLCGrpContSchema.setCDate(mcDate);
mLCGrpContSchema.setBussarea(mBussarea);
String mMainBusiness = request.getParameter("MainBusiness");
String mGrpNature = request.getParameter("GrpNature");
String mBusiCategory =request.getParameter("BusiCategory");
@ -670,6 +688,13 @@ public class LCGrpContPolController {
String mTaxBankAccNo = request.getParameter("TaxBankAccNo");
String mTaxPhone = request.getParameter("TaxPhone");
String mTaxAddress = request.getParameter("TaxAddress");
//
String fuli = request.getParameter("fuli");
String taxpayer = request.getParameter("Taxpayer");
String invoice = request.getParameter("Invoice");
mLCGrpInvoiceDetailSchema.setFuli(fuli);
mLCGrpInvoiceDetailSchema.setTaxpayer(taxpayer);
mLCGrpInvoiceDetailSchema.setInvoice(invoice);
mLCGrpInvoiceDetailSchema.setGrpContNo(mGrpPropNo);

@ -1312,10 +1312,10 @@ function saveClick(){
// tBFFlag = "0";
// }
/*if(relationbtn == 0) {
if(relationbtn == 0) {
alert("请进行关联方模糊认定查询后,再进行下一步");
return false;
}*/
}
if(!checkPeriod()){
return false;
}
@ -4141,7 +4141,7 @@ function InsureListProtect(){
/**
* 关联方模糊认定结果
*/
var relationbtn=1;
var relationbtn=0;
function relationresult() {
relationbtn+=1;
var numFlag = 0;

@ -1383,10 +1383,10 @@ function saveClick(){
// tBFFlag = "0";
// }
// if(relationbtn == 0) {
// alert("请进行关联方模糊认定查询后,再进行下一步");
// return false;
// }
if(relationbtn == 0) {
alert("请进行关联方模糊认定查询后,再进行下一步");
return false;
}
if(!checkPeriod()){
return false;
}

@ -334,6 +334,19 @@ function clearCounty(){
document.all("CountyName").value = "";
document.all("CountyCode").value = "";
}
function clearCityAndCounty2(){
document.getElementById("LinkCity2").value = "";
document.getElementById("LinkCityCode2").value = "";
document.getElementById("LinkCounty2").value = "";
document.getElementById("LinkCountyCode2").value = "";
}
function clearCounty2(){
document.getElementById("LinkCounty2").value = "";
document.getElementById("LinkCountyCode2").value = "";
}
/**
* 清空关联查询的项目
*/
@ -1403,10 +1416,10 @@ function saveClick(){
// tBFFlag = "0";
// }
// if(relationbtn == 0) {
// alert("请进行关联方模糊认定查询后,再进行下一步");
// return false;
// }
if(relationbtn == 0) {
alert("请进行关联方模糊认定查询后,再进行下一步");
return false;
}
if(!checkPeriod()){
return false;
}
@ -2925,6 +2938,32 @@ function checkCoridtype(){
}
function checkCoridtype2(){
if(document.all("CorID1").value.length>0 && document.all("CorIDType1").value=="") {
i18nAlert("请先选择证件类型!", "LIS-00574");
return false;
}
if(document.all("CorIDType1").value=="0"&&document.all("CorID1").value.length>0) {
if((document.all("CorID1").value.length!=15) &&(document.all("CorID1").value.length!=18)){
i18nAlert("输入的身份证号位数错误", "LIS-00575");
document.all('CorID1').value="";
return false;
}
if(!checkIdCard(document.all("CorID1").value)) {
i18nAlert("身份证号码不合法", "LIS-01833") ;
document.all('CorID1').value="";
document.all('CorID1').className = "warn";
return false;
}
}
}
function checkCity(){
var ManageCom =document.all('ManageCom').value;
var ProvinceCode =document.all('ProvinceCode').value;
@ -3403,7 +3442,11 @@ function afterCodeSelect(o, p){
if(p.name=="BankProvince"){
document.all("BankCity").value="";
document.all("BankCityName").value="";
} else if(p.name=="LinkProvince2"){
document.getElementById("LinkCityCode2").value="";
document.getElementById("LinkCity2").value="";
document.getElementById("LinkCounty2").value="";
document.getElementById("LinkCountyCode2").value="";
} else {
document.all("CityCode").value="";
document.all("CityName").value="";
@ -3411,7 +3454,10 @@ function afterCodeSelect(o, p){
document.all("CountyCode").value="";
}
} else if(o=="city"){
if(p.name=="CityName"){
if(p.name=="LinkCity2"){
document.getElementById("LinkCounty2").value="";
document.getElementById("LinkCountyCode2").value="";
} else if(p.name=="CityName"){
document.all("CountyName").value="";
document.all("CountyCode").value="";
}
@ -3684,6 +3730,48 @@ function calEndDate(code, type) {
}
}
function calEndDate2(code, type) {
if (fm.IDType.value == '0' && type == "IDType1") {
var tapage = getAgeFromIdCard(fm.IDNo.value,fm.IDStartDate.value);
if (tapage < 16) {
var tyear = caldateYear(fm.IDStartDate.value, 5);
fm.IDEndDate.value = tyear;
}
if (16 <= tapage && tapage <= 25) {
var tyear = caldateYear(fm.IDStartDate.value, 10);
fm.IDEndDate.value = tyear;
}
if (26 <= tapage && tapage <= 45) {
var tyear = caldateYear(fm.IDStartDate.value, 20);
fm.IDEndDate.value = tyear;
}
if (tapage >= 46) {
fm.IDExpDate.value = '9999-01-01';
}
}
if (fm.CorIDType.value == '0' && type == "CorIDType") {
var tapage = getAgeFromIdCard(fm.CorID.value,fm.CorIDStartDate.value);
if (tapage < 16) {
var tyear = caldateYear(fm.CorIDStartDate.value, 5);
fm.CorIDExpiryDate.value = tyear;
}
if (16 <= tapage && tapage <= 25) {
var tyear = caldateYear(fm.CorIDStartDate.value, 10);
fm.CorIDExpiryDate.value = tyear;
}
if (26 <= tapage && tapage <= 45) {
var tyear = caldateYear(fm.CorIDStartDate.value, 20);
fm.CorIDExpiryDate.value = tyear;
}
if (tapage >= 46) {
fm.CorIDExpiryDate.value = '9999-01-01';
}
}
}
function getAgeFromIdCard(idCard,StartDate) {
// 校验身份证号基本格式
if (!idCard || (idCard.length !== 15 && idCard.length !== 18)) {
@ -4489,7 +4577,7 @@ function InsureListProtect(){
/**
* 关联方模糊认定结果
*/
var relationbtn= 1 ;
var relationbtn= 0 ;
function relationresult() {
relationbtn+=1;
var numFlag = 0;

@ -138,8 +138,7 @@
<td class=input style="display: none"><input class=codeno style="display: none" value="0" name=IsElecFlag id=IsElecFlag readonly verify="电E金服标识|notnull" ><input class=codename style="display: none" name=IsElecFlagName readonly elementtype=nacessary></td>
<td class=title >是否为关联交易</td>
<td class=input><input class=codeno name=Relateflag id=Relateflag readonly verify="是否为关联交易|notnull" ondblclick="return showCodeList('trueflag',[this,RelateflagName],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('trueflag',[this,RelateflagName],[0,1],null,null,null,'1',null);"><input class=codename name=RelateflagName readonly elementtype=nacessary></td>
<%-- <td class=title><input id="relationresultBtn" class=cssButton type=button value="关联方模糊认定结果" onclick="relationresult();"></td>--%>
<td class=title><input id="relationresultBtn" class=cssButton type=button value="关联方模糊认定结果" onclick="relationresult();"></td>
</tr>
<tr class=common>
@ -336,6 +335,42 @@
<td class=title >合计</td>
<td class=input><input class="common" name=SumInsuPeoples id=SumInsuPeoples verify = "合计|INT&NOTNULL" onchange="verifyField(this);" elementtype=nacessary> </td>
</tr>
<tr class="common">
<td class=title data-i18n="CoProperty1">组织类型</td>
<td class=input><input class=codeno name=grpType readonly ondblclick="return showCodeList('grptype',[this,grpTypeName],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('grptype',[this,grpTypeName],[0,1],null,null,null,'1',null);"><input class=codename name=grpTypeName readonly > </td>
<td class=title >成立日期</td>
<td class=input><Input class="coolDatePicker" dateFormat="short" name=cDate onClick="laydate({elem: '#cDate'});" id="cDate"><span class="icon" ><a onClick="laydate({elem: '#cDate'});" ></a></span> </td>
<td class=title >经营区域</td>
<td class=input><input class=codeno name=bussarea readonly ondblclick="return showCodeList('bussarea',[this,bussareaName],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('bussarea',[this,bussareaName],[0,1],null,null,null,'1',null);"><input class=codename name=bussareaName readonly > </td>
</tr>
<%-- <tr class="common">--%>
<%-- <td class=title >联系地址</td>--%>
<%-- <td class=input colspan=3>--%>
<%-- <input class=code id="LinkProvince2" name=LinkProvince2 style="width:100px" onChange="clearCityAndCounty2()" ondblclick="return showCodeList('province',[this, LinkProvinceCode2],[1,0],null,null,null,'1',180);" onkeyup="return showCodeListKey('province',[this, LinkProvinceCode2],[1,0],null,null,null,'1',180);" readonly><input class="displayNone" name=LinkProvinceCode2 readonly><span data-i18n="Prov">省</span>--%>
<%-- <input class=code id="LinkCity2" name=LinkCity2 style="width:100px" onChange="clearCounty2()" ondblclick="return returnShowCodeList('city',[this, LinkCityCode2],[1,0],null,null,null,'1',null);" onkeyup="return returnShowCodeLisKey('city',[this, LinkCityCode2],[1,0],null,null,null,'1',null);" readonly><input class="displayNone" name=LinkCityCode2 readonly><span data-i18n="City">市</span>--%>
<%-- <input class=code id="LinkCounty2" name=LinkCounty2 style="width:100px" ondblclick="return returnShowCodeList('district',[this, LinkCountyCode2],[1,0],null,null,null,'1',null);" onkeyup="return returnShowCodeLisKey('district',[this, LinkCountyCode2],[1,0],null,null,null,'1',null);" readonly><input class="displayNone" name=LinkCountyCode2 readonly><span data-i18n="DistrictCounty">区/县</span>--%>
<%-- <input class=common name=LinkDetailAddr maxlength=200 style="width:415px" >--%>
<%-- </td>--%>
<%-- </tr>--%>
<tr class="common">
<td class=title >联系地址</td>
<td class=input colspan=3>
<input class=code id="LinkProvince2" name=LinkProvince2 style="width:100px" onChange="clearCityAndCounty2();" ondblclick="return showCodeList('province',[this, LinkProvinceCode2],[1,0],null,null,null,'1',180);" onkeyup="return showCodeListKey('province',[this, LinkProvinceCode2],[1,0],null,null,null,'1',180);" readonly><input type="hidden" name=LinkProvinceCode2 readonly><span data-i18n="Prov">省</span>
<input class=code id="LinkCity2" name=LinkCity2 style="width:100px" onChange="clearCounty2();" ondblclick="return returnShowCodeList('city',[this, LinkCityCode2],[1,0],null,null,null,'1',null);" onkeyup="return returnShowCodeLisKey('city',[this, LinkCityCode2],[1,0],null,null,null,'1',null);" readonly><input type="hidden" name=LinkCityCode2 readonly><span data-i18n="City">市</span>
<input class=code id="LinkCounty2" name=LinkCounty2 style="width:100px" ondblclick="return returnShowCodeList('district',[this, LinkCountyCode2],[1,0],null,null,null,'1',null);" onkeyup="return returnShowCodeLisKey('district',[this, LinkCountyCode2],[1,0],null,null,null,'1',null);" readonly><input type="hidden" name=LinkCountyCode2 readonly><span data-i18n="DistrictCounty">区/县</span>
<input class=common name=LinkDetailAddr maxlength=200 style="width:415px" >
</td>
</tr>
<tr class=common>
<td class=title data-i18n="CoProperty">单位性质</td>
<td class=input><input class=codeno name=GrpNature verify="单位性质~CoProperty|notnull" readonly ondblclick="return showCodeList('grpnature',[this,GrpNatureName],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('grpnature',[this,GrpNatureName],[0,1],null,null,null,'1',null);"><input class=codename name=GrpNatureName readonly elementtype=nacessary> </td>
@ -346,22 +381,40 @@
<td class=title data-i18n="CoContactTelNum">单位联系电话</td>
<td class=input><input class="common" name=Phone1 verify = "单位联系电话|NOTNULL" onchange="verifyField(this);" elementtype=nacessary></td>
</tr>
<tr class=common>
<%-- <td class=title data-i18n="CoFax">单位传真</td>--%>
<%-- <td class=input><input class="common" name=Fax verify="单位传真~CoFax|PHONE&len<20"></td>--%>
<td class=title >法人姓名</td>
<td class=input><input class="common" name=Corporation1 > </td>
<td class=title>法人证件类型</td>
<td class=input><input class=codeno name=CorIDType1 readonly ondblclick="return showCodeList('idtype',[this,CorIDTypeName1],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('idtype',[this,CorIDTypeName1],[0,1],null,null,null,'1',null);" ><input class=codename readonly name=CorIDTypeName1 > </td>
<td class=title >法人证件号码</td>
<td class=input><input class="common" name=CorID1 id=CorID1 onblur="checkCoridtype2();" > </td>
</tr>
<tr class=common>
<td class=title >法人证件有效起期</td>
<td class=input><Input class="coolDatePicker" dateFormat="short" onblur="calEndDate(this,'CorIDType1');" name=CorIDStartDate1 onClick="laydate({elem: '#CorIDStartDate1'});" id="CorIDStartDate1"><span class="icon" ><a onClick="laydate({elem: '#CorIDStartDate1'});" ></a></span> </td>
<td class=title >法人证件有效止期</td>
<td class=input><Input class="coolDatePicker" dateFormat="short" name=CorIDExpiryDate1 onClick="laydate({elem: '#CorIDExpiryDate1'});" id="CorIDExpiryDate1"><span class="icon" ><a onClick="laydate({elem: '#CorIDExpiryDate1'});" ></a></span> </td>
</tr>
<tr class=common>
<%-- <td class=title data-i18n="CoFax">单位传真</td>--%>
<%-- <td class=input><input class="common" name=Fax verify="单位传真~CoFax|PHONE&len<20"></td>--%>
<td class=title >法人/负责人姓名</td>
<td class=input><input class="common" name=Corporation verify="法人/负责人姓名|LEN<=30&NOTNULL" onchange="verifyField(this);" elementtype=nacessary> </td>
<td class=title>法人/负责人证件类型</td>
<td class=input><input class=codeno name=CorIDType readonly verify="法人/负责人证件类型|NOTNULL" onchange="verifyField(this);" ondblclick="return showCodeList('idtype',[this,CorIDTypeName],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('idtype',[this,CorIDTypeName],[0,1],null,null,null,'1',null);" ><input class=codename readonly name=CorIDTypeName elementtype=nacessary> </td>
<td class=title >法人/负责人证件号码</td>
<td class=input><input class="common" name=CorID id=CorID verify="法人/负责人证件号码|NOTNULL&LEN<=20" onchange="verifyField(this);" onblur="checkCoridtype();" elementtype=nacessary> </td>
<td class=title >负责人姓名</td>
<td class=input><input class="common" name=Corporation > </td>
<td class=title>负责人证件类型</td>
<td class=input><input class=codeno name=CorIDType readonly ondblclick="return showCodeList('idtype',[this,CorIDTypeName],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('idtype',[this,CorIDTypeName],[0,1],null,null,null,'1',null);" ><input class=codename readonly name=CorIDTypeName > </td>
<td class=title >负责人证件号码</td>
<td class=input><input class="common" name=CorID id=CorID onblur="checkCoridtype();" > </td>
</tr>
<tr class=common>
<td class=title >法人/负责人证件有效起期</td>
<td class=input><Input class="coolDatePicker" elementtype=nacessary verify="法人/负责人证件有效起期|notnull&date" dateFormat="short" onblur="calEndDate(this,'CorIDType');" name=CorIDStartDate onClick="laydate({elem: '#CorIDStartDate'});" id="CorIDStartDate"><span class="icon" ><a onClick="laydate({elem: '#CorIDStartDate'});" ></a></span> </td>
<td class=title >负责人证件有效起期</td>
<td class=input><Input class="coolDatePicker" dateFormat="short" onblur="calEndDate(this,'CorIDType');" name=CorIDStartDate onClick="laydate({elem: '#CorIDStartDate'});" id="CorIDStartDate"><span class="icon" ><a onClick="laydate({elem: '#CorIDStartDate'});" ></a></span> </td>
<td class=title >法人/负责人证件有效止期</td>
<td class=input><Input class="coolDatePicker" elementtype=nacessary verify="法人/负责人证件有效止期|notnull&date" dateFormat="short" name=CorIDExpiryDate onClick="laydate({elem: '#CorIDExpiryDate'});" id="CorIDExpiryDate"><span class="icon" ><a onClick="laydate({elem: '#CorIDExpiryDate'});" ></a></span> </td>
<td class=title >负责人证件有效止期</td>
<td class=input><Input class="coolDatePicker" dateFormat="short" name=CorIDExpiryDate onClick="laydate({elem: '#CorIDExpiryDate'});" id="CorIDExpiryDate"><span class="icon" ><a onClick="laydate({elem: '#CorIDExpiryDate'});" ></a></span> </td>
</tr>
<tr class=common>
<td class=title data-i18n="CoAddr">单位地址</td>
@ -535,6 +588,14 @@
<td class=input colspan=3><input class="common" name=TaxAddress verify="地址|LEN<=500" onchange="verifyField(this);" style="width:554px"></td>
</tr>
<%--电子发票--%>
<tr class="common">
<td class=title >开通弹性福利平台</td>
<td class=input><input class=codeno name=fuli id=fuli readonly ondblclick="return showCodeList('trueflag', [this,fuliName], [0,1], null, null, null, '1', null);" onkeyup="return showCodeListKey('trueflag', [this,fuliName], [0,1], null, null, null, '1', null);" ><input class=codename name=fuliName readonly ></td>
<td class="title">纳税人类型</td>
<td class=input><input class=codeno name=Taxpayer id=Taxpayer readonly ondblclick="return showCodeList('taxpayer', [this,TaxpayerName], [0,1], null, null, null, '1', null);" onkeyup="return showCodeListKey('taxpayer', [this,TaxpayerName], [0,1], null, null, null, '1', null);" ><input class=codename name=TaxpayerName readonly ></td>
<td class="title">开票样式</td>
<td class=input><input class=codeno name=Invoice id=Invoice readonly ondblclick="return showCodeList('invoice', [this,InvoiceName], [0,1], null, null, null, '1', null);" onkeyup="return showCodeListKey('invoice', [this,InvoiceName], [0,1], null, null, null, '1', null);" ><input class=codename name=InvoiceName readonly ></td>
</tr>
<tr class=common>
<td class=title>电子发票</td>
<td class=input><input class=codeno name=IsElecInvoicePrint verify="电子发票|notnull" readonly ondblclick="return showCodeList('iselecinvoiceprint',[this,IsElecInvoicePrintName],[0,1],null,null,null,'1',null);" onkeyup="return showCodeListKey('iselecinvoiceprint',[this,IsElecInvoicePrintName],[0,1],null,null,null,'1',null);"><input class=codename name=IsElecInvoicePrintName elementtype=nacessary readonly></td>

Loading…
Cancel
Save