lib/reapal/form/com_contract_form.rb in reapal-0.14.0 vs lib/reapal/form/com_contract_form.rb in reapal-0.15.0
- old
+ new
@@ -9,11 +9,10 @@
# @param identity_id [ String ] 法人身份证号
# @param com_name [ String ] 企业名称
# @param com_license [ String ] 组织机构代码/社会征信号
# @param lic_start_date [ Time ] 企业组织机构证起始日
# @param lic_end_date [ Time ] 企业组织机构证截止日
- # @param phone [ String ] 手机号
# @param bank_code [ String ] 银行编码
# @param user_type [ String ] 注册类别 01:出借人 02:借款人 03:担保人 04:受托方
# @param email [ String ] 企业邮箱
# @param return_url [ String ] 回调 URL
# @param notify_url [ String ] 通知 URL
@@ -28,13 +27,13 @@
# * :merchant_id
# * :encryptkey
# * :data
#
def com_contract_form(flow_id, corp_name, identity_id, com_name, com_license,
- lic_start_date, lic_end_date, phone, bank_code,
- user_type, email, return_url, notify_url,
- busway='01', remark='')
+ lic_start_date, lic_end_date, bank_code,
+ user_type, email, return_url, notify_url,
+ busway='01', remark='')
service = 'reapal.trust.comContract'
post_path = '/agreement/agree.htm'
params = {
@@ -43,10 +42,9 @@
corpIdentity: identity_id,
comName: com_name,
comLicense: com_license,
licStartDate: lic_start_date.strftime("%Y%m%d"),
licEndDate: lic_end_date.strftime("%Y%m%d"),
- bankMobile: phone,
bankCode: bank_code,
userType: user_type,
email: email,
busway: busway,
returnUrl: return_url,
\ No newline at end of file