|
@@ -21,12 +21,17 @@ import kd.sdk.plugin.Plugin;
|
|
|
public class GetPrepayParameterBillListPlugin extends AbstractListPlugin implements Plugin {
|
|
|
public void billListHyperLinkClick(HyperLinkClickArgs args) {
|
|
|
if ("billno".equals(args.getFieldName())) {
|
|
|
+ //取消标准的打开界面
|
|
|
+ args.setCancel(true);
|
|
|
+
|
|
|
//获取当前数据行
|
|
|
BillListHyperLinkClickEvent evt = (BillListHyperLinkClickEvent) args.getHyperLinkClickEvent();
|
|
|
ListSelectedRow currentRow = evt.getCurrentRow();
|
|
|
Long billId = (Long) currentRow.getPrimaryKeyValue();
|
|
|
String billStatus = currentRow.getBillStatus();
|
|
|
+
|
|
|
String formId = "er_prepaybill";
|
|
|
+
|
|
|
//跳转到指定PC布局
|
|
|
BillShowParameter showParameter = new BillShowParameter();
|
|
|
QFilter qf = new QFilter("id", QCP.equals, billId);
|