添加延期期次

This commit is contained in:
tangfutang 2023-07-30 16:31:30 +08:00
parent 21693dc4e8
commit da3ca890e5
4 changed files with 20 additions and 3 deletions

View File

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

View File

@ -4709,6 +4709,7 @@
<attribute name="CHANGE_TYPE" label="变更类型" type="STRING" length="32"/>
<attribute name="DELAY_START_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>
<manager>
<managerProperties>

View File

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

View File

@ -73,4 +73,20 @@ public interface LC_DORMANT_RENT_ADJUST_TEMP{
* ÐÝÃß±ä¸üǰIRR DOUBLE(22)<br>
*/
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";
}