付款申请单 选择发票
This commit is contained in:
parent
30d61a12b4
commit
1031ed00d3
|
@ -2,6 +2,7 @@ package zcgj.zcdev.zcdev.pr.plugin.form;
|
||||||
|
|
||||||
import kd.bos.context.RequestContext;
|
import kd.bos.context.RequestContext;
|
||||||
import kd.bos.dataentity.entity.DynamicObject;
|
import kd.bos.dataentity.entity.DynamicObject;
|
||||||
|
import kd.bos.entity.datamodel.events.PropertyChangedArgs;
|
||||||
import kd.bos.form.events.ClosedCallBackEvent;
|
import kd.bos.form.events.ClosedCallBackEvent;
|
||||||
import kd.ec.basedata.common.invoicecloud.InvoiceDataHandleHelper;
|
import kd.ec.basedata.common.invoicecloud.InvoiceDataHandleHelper;
|
||||||
import kd.ec.basedata.common.invoicecloud.bean.InvoiceVO;
|
import kd.ec.basedata.common.invoicecloud.bean.InvoiceVO;
|
||||||
|
@ -15,6 +16,14 @@ import java.util.Set;
|
||||||
|
|
||||||
|
|
||||||
public class CustomPaymentApplyEditUI extends PaymentApplyEditUI {
|
public class CustomPaymentApplyEditUI extends PaymentApplyEditUI {
|
||||||
|
@Override
|
||||||
|
public void propertyChanged(PropertyChangedArgs e) {
|
||||||
|
if (!"C".equals(this.getModel().getValue("billstatus"))){
|
||||||
|
super.propertyChanged(e);//单据不是审核状态走父类
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public void closedCallBack(ClosedCallBackEvent event) {
|
public void closedCallBack(ClosedCallBackEvent event) {
|
||||||
super.closedCallBack(event);
|
super.closedCallBack(event);
|
||||||
String actionId = event.getActionId();
|
String actionId = event.getActionId();
|
||||||
|
|
Loading…
Reference in New Issue