Browse Source

外办申请移动端

wanghaiwu 4 days ago
parent
commit
e8637f11e2

+ 2 - 10
code/jyyy/nckd-jimin-jyyy-fi/src/main/java/nckd/jimin/jyyy/fi/plugin/form/DailyVehicleCusMobListPlugin.java

@@ -30,19 +30,11 @@ public class DailyVehicleCusMobListPlugin extends AbstractMobListPlugin {
                 MobileListShowParameter mobparameter = (MobileListShowParameter)this.getView().getFormShowParameter();
                 Map<String, Object> customParam = new HashMap();
                 Long billId = (Long)((MobileListView)this.getView()).getFocusRowPkId();
-                String formId = ((ListShowParameter)this.getView().getFormShowParameter()).getBillFormId();
 
-                customParam.put("FormId", formId);
-                customParam.put("Status", 1);
-                customParam.put("EntityName", this.getEntityName());
-                customParam.put("billId", billId);
-
-
-                MobileFormShowParameter formShowParameter = new MobileFormShowParameter();
-                formShowParameter.setCustomParams(customParam);
+                kd.bos.bill.MobileBillShowParameter formShowParameter = new kd.bos.bill.MobileBillShowParameter();
                 formShowParameter.setFormId("er_dailyvehiclebill_mob");
-                formShowParameter.setCaption(mobparameter.getFormConfig().getCaption().getLocaleValue());
                 formShowParameter.getOpenStyle().setShowType(ShowType.Floating);
+                formShowParameter.setPkId(billId);
 
                 this.getView().showForm(formShowParameter);
             }