Merge branch 'release20211231' into dailyfix

This commit is contained in:
zhanglei 2023-08-10 15:17:22 +08:00
commit 9f65bcc1e4
4 changed files with 20 additions and 3 deletions

View File

@ -219,9 +219,8 @@ function cancelChange(){
}, 500); }, 500);
} }
function run() function run(){
{ var result = AsControl.RunJavaMethodTrans("com.tenwa.reckon.executor.CreateTransactionExecutor","runRentdormant","flowunid=<%=flowunid%>,plannumber=<%=paymentNumber%>,productId=<%=ProductId%>,calType=pay_process,expandList="+getItemValue(0,getRow(),"EXPAND_LIST"));
var result = AsControl.RunJavaMethodTrans("com.tenwa.reckon.executor.CreateTransactionExecutor","runRentdormant","flowunid=<%=flowunid%>,plannumber=<%=paymentNumber%>,productId=<%=ProductId%>,calType=pay_process");
if (result.result === 'false') { if (result.result === 'false') {
alert('²âËãʧ°Ü: ' + result.msg); alert('²âËãʧ°Ü: ' + result.msg);
} }

View File

@ -4709,6 +4709,7 @@
<attribute name="CHANGE_TYPE" label="变更类型" type="STRING" length="32"/> <attribute name="CHANGE_TYPE" label="变更类型" type="STRING" length="32"/>
<attribute name="DELAY_START_LIST" label="延期开始期次" type="STRING" length="20"/> <attribute name="DELAY_START_LIST" label="延期开始期次" type="STRING" length="20"/>
<attribute name="DELAY_END_LIST" label="延期后总期数" type="STRING" length="20" /> <attribute name="DELAY_END_LIST" label="延期后总期数" type="STRING" length="20" />
<attribute name="EXPAND_LIST" label="展期期次" type="STRING" length="32" />
</attributes> </attributes>
<manager> <manager>
<managerProperties> <managerProperties>

View File

@ -61,6 +61,7 @@ public class CreateTransactionExecutor implements Transaction {
private String distributorId; private String distributorId;
private String equipAmt; private String equipAmt;
private String subsectionConfig; private String subsectionConfig;
private String expandList;
public String getEquipAmt() { public String getEquipAmt() {
return equipAmt; return equipAmt;

View File

@ -73,4 +73,20 @@ public interface LC_DORMANT_RENT_ADJUST_TEMP{
* ÐÝÃß±ä¸üǰIRR DOUBLE(22)<br> * ÐÝÃß±ä¸üǰIRR DOUBLE(22)<br>
*/ */
public static final String IRR_OLD = "IRR_OLD"; public static final String IRR_OLD = "IRR_OLD";
/**
* 变更类型 STRING(32)<br>
*/
public static final String CHANGE_TYPE = "CHANGE_TYPE";
/**
* 延期开始期次 STRING(20)<br>
*/
public static final String DELAY_START_LIST = "DELAY_START_LIST";
/**
* 延期后总期数 STRING(20)<br>
*/
public static final String DELAY_END_LIST = "DELAY_END_LIST";
/**
* 展期期次 STRING(32)<br>
*/
public static final String EXPAND_LIST = "EXPAND_LIST";
} }