添加签约类型字段

This commit is contained in:
gityjf 2020-12-17 18:16:50 +08:00
parent 08b73cacef
commit d86684671c
3 changed files with 10 additions and 2 deletions

View File

@ -1521,6 +1521,7 @@
<attribute name="CORPUS_SP" label="分润成本" type="String" length="18" scale="2"/>
<attribute name="INTEREST_sp" label="分润给SP" type="String" length="18" scale="2"/>
<attribute name="SPLITTING_STATUS" label="分润支付状态" type="STRING" length="2"/>
<attribute name="CHARGE_WAY" label="扣款方式" type="STRING" length="10"/>
</attributes>
<manager>
<managerProperties>
@ -4265,6 +4266,7 @@
<attribute name="id" label="id" type="STRING"/>
<attribute name="contract_id" label="合同id" type="STRING"/>
<attribute name="plan_id" label="计划id" type="STRING"/>
<attribute name="plan_list" label="期次" type="STRING"/>
<attribute name="money" label="卡扣金额" type="STRING"/>
<attribute name="hire_date" label="卡口日期" type="STRING"/>
<attribute name="BATCH_NO" label="流水号" type="STRING"/>
@ -4308,6 +4310,7 @@
<attribute name="SIGN_TIME" label="签约时间" type="STRING" length="100" />
<attribute name="CUSTOMER_LAUNCH_TIME" label="客户发起时间" type="STRING" length="100" />
<attribute name="AGRMNO" label="协议号" type="STRING" length="100" />
<attribute name="sign_type" label="签约类型" type="STRING" length="10" />
</attributes>
<manager>
<managerProperties>

View File

@ -217,6 +217,7 @@ public class AllinpayServlet extends BaseServlet {
if(ldc == null){
ldc = bomLDC.newObject();
ldc.setAttributeValue("PROJECT_ID", projectId);
ldc.setAttributeValue("sign_type", "TL");
ldc.setAttributeValue("SIGN_STATUS", "sign_status1");
bomLDC.saveObject(ldc);
}else if("sign_status2".equals(ldc.getAttribute("SIGN_STATUS").toString())) {

View File

@ -42,7 +42,11 @@ public interface LC_CARD_TLSIGN{
*/
public static final String CUSTOMER_LAUNCH_TIME = "CUSTOMER_LAUNCH_TIME";
/**
* ЭÒéºÅ STRING(100)<br>
*/
* ЭÒéºÅ STRING(100)<br>
*/
public static final String AGRMNO = "AGRMNO";
/**
* ǩԼÀàÐÍ STRING(10)<br>
*/
public static final String sign_type = "sign_type";
}