|
@@ -29,11 +29,12 @@ public class activitysignup extends Controller {
|
|
|
String fname = content.getString("fname", "tactivitysignup.fname", "姓名");
|
|
|
String fidcard = content.getString("fidcard", "tactivitysignup.fidcard", "身份证号");
|
|
|
String fphonenumber = content.getString("fphonenumber", "tactivitysignup.fphonenumber", "手机号");
|
|
|
- String findustry = content.getString("findustry", 30,"行业");//"行业"
|
|
|
- String fcompname = content.getString("fcompname", 30,"公司");
|
|
|
- String frole = content.getString("frole", 30,"职位");
|
|
|
- String faddress = content.getString("faddress", 30,"住址");
|
|
|
+ String findustry = content.getString("findustry", 30, "行业");//"行业"
|
|
|
+ String fcompname = content.getString("fcompname", 30, "公司");
|
|
|
+ String frole = content.getString("frole", 30, "职位");
|
|
|
+ String faddress = content.getString("faddress", 30, "住址");
|
|
|
String fchannel = content.getString("fchannel", "tactivitysignup.fchannel", "入会渠道");
|
|
|
+ String fquestionnaire = content.getString("fquestionnaire");//调查问卷
|
|
|
|
|
|
PaoSetRemote tscanningSet = getP2ServerSystemPaoSet("tactivitysignup", "siteid='" + siteid + "' and tactivityid ='" + tactivityid + "' and tenterprise_userid='" + userid + "'");
|
|
|
PaoRemote tscanning = null;
|
|
@@ -54,6 +55,7 @@ public class activitysignup extends Controller {
|
|
|
tscanning.setValue("frole", frole, 11L);
|
|
|
tscanning.setValue("faddress", faddress, 11L);
|
|
|
tscanning.setValue("fchannel", fchannel, 11L);
|
|
|
+ tscanning.setValue("fquestionnaire", fquestionnaire, 11L);
|
|
|
tscanningSet.save();
|
|
|
return getSucReturnObject().toString();
|
|
|
}
|