From aed9162f177820bb0eb507f5e7dd044dfcc4f6f1 Mon Sep 17 00:00:00 2001 From: "zhanglei@ap-leasing.com.cn" Date: Mon, 18 Sep 2023 09:43:34 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A3=8E=E6=8E=A7=E4=B8=AD=E5=8F=B0-=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E9=85=8D=E7=BD=AE=E8=BD=A6=E5=9E=8B=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E4=B8=BA=E5=8C=97=E8=B4=A2=E8=BD=A6=E5=9E=8B=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Apzl/productCar/LmProductAndCarList.jsp | 4 +- WebContent/WEB-INF/etc/jbo/jbo_oti.xml | 21 +++++++ src_jbo/jbo/oti/RC_CAR_MODEL.java | 63 +++++++++++++++++++ 3 files changed, 86 insertions(+), 2 deletions(-) create mode 100644 src_jbo/jbo/oti/RC_CAR_MODEL.java diff --git a/WebContent/Tenwa/Apzl/productCar/LmProductAndCarList.jsp b/WebContent/Tenwa/Apzl/productCar/LmProductAndCarList.jsp index b3bb132e3..7ea72b96c 100644 --- a/WebContent/Tenwa/Apzl/productCar/LmProductAndCarList.jsp +++ b/WebContent/Tenwa/Apzl/productCar/LmProductAndCarList.jsp @@ -7,7 +7,7 @@ History Log: */ String TYPENO= CurPage.getParameter("TYPENO"); - ASObjectModel doTemp = new ASObjectModel("LmProductAndCarList"); + ASObjectModel doTemp = new ASObjectModel("BaicProductAndCarList"); ASObjectWindow dwTemp = new ASObjectWindow(CurPage,doTemp,request); dwTemp.Style="1"; //--设置为Grid风格-- dwTemp.ReadOnly = "1"; //只读模式 @@ -28,7 +28,7 @@ var Return="<%=CurUser.getUserID()%>@~<%=CurUser.getOrgID()%>@~<%=StringFunction.getTodayNow()%>@~<%=TYPENO%>@~"; productid="<%=TYPENO%>"; - AsDialog.OpenSelector("SelectCarInfo","productid,"+productid,"dialogWidth=" + parseInt(window.screen.width * 0.6) + "px dialogHeight=" + parseInt(window.screen.height * 0.6) + "px", + AsDialog.OpenSelector("SelectCarInfoBaic","productid,"+productid,"dialogWidth=" + parseInt(window.screen.width * 0.6) + "px dialogHeight=" + parseInt(window.screen.height * 0.6) + "px", function(sReturn){ if(!sReturn||sReturn=="_CANCEL_"||sReturn=="") { diff --git a/WebContent/WEB-INF/etc/jbo/jbo_oti.xml b/WebContent/WEB-INF/etc/jbo/jbo_oti.xml index e6834a395..ddd35093c 100644 --- a/WebContent/WEB-INF/etc/jbo/jbo_oti.xml +++ b/WebContent/WEB-INF/etc/jbo/jbo_oti.xml @@ -866,5 +866,26 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src_jbo/jbo/oti/RC_CAR_MODEL.java b/src_jbo/jbo/oti/RC_CAR_MODEL.java new file mode 100644 index 000000000..3f719422f --- /dev/null +++ b/src_jbo/jbo/oti/RC_CAR_MODEL.java @@ -0,0 +1,63 @@ +package jbo.oti; + +/** + * 北财车型库 - JBO命名常量类

+ * Note: This file is generated by ADE tools, dont modify it.
+ + */ +public interface RC_CAR_MODEL { + /** + * 北财车型库

+ * 代表本类映射的BizObjectClass + */ + public static final String CLASS_NAME = "jbo.oti.RC_CAR_MODEL"; + /** + * 唯一标识 LONG(64)
+ */ + public static final String ID = "ID"; + /** + * 品牌唯一标识 LONG(64)
+ */ + public static final String brand_id = "brand_id"; + /** + * 品牌名称 LONG(64)
+ */ + public static final String brand_name = "brand_name"; + /** + * 车系ID
+ */ + public static final String series_id = "series_id"; + + /** + * 车系名 STRING(20)
+ */ + public static final String series_name = "series_name"; + /** + * 车型id STRING(50)
+ */ + public static final String model_id = "model_id"; + /** + * 车型配置编码 STRING(32)
+ */ + public static final String model_code = "model_code"; + /** + * 车型名称 STRING(32)
+ */ + public static final String model_name = "model_name"; + /** + * 指导价 STRING(32)
+ */ + public static final String model_plants_price = "model_plants_price"; + /** + * 零售均价 STRING(100)
+ */ + public static final String model_average_price = "model_average_price"; + /** + * 车辆类型 STRING(100)
+ */ + public static final String car_type = "car_type"; + /** + * 车辆类型编码 STRING(990)
+ */ + public static final String car_type_code = "car_type_code"; +} \ No newline at end of file