沈阳伙伴郭
- 合作伙伴
- 15
- 215
- 200
|
1#
t
T
发表于 2014-06-10 14:20
|只看楼主
首先打开查询分线器切换到元动软件创建数据库表: - if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[My_show_svbill]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
- drop table [dbo].[My_show_svbill]
- GO
- CREATE TABLE [dbo].[My_show_svbill] (
- [id] [int] IDENTITY (1, 1) NOT NULL ,
- [VIP] [int] null, --会员卡号
- [VIN] [int] null, --Vin号
- [bill_date] [int] null, --单据日期
- [code] [int] null, --维修单号
- [dept_name] [int] null, --部门
- [pick_people] [int] null, --接车人
- [f_bill_no] [int] null, --厂家单号
- [commissioner] [int] null, --客户专员
- [develop_human] [int] null, --开拓人
- [associatorl_type_name] [int] null, --会员类别
- [customer_categories] [int] null, --客户类别
- [balance_amt] [int] null, --余
- [old_cl] [int] null, --旧件处理
- [yy_type] [int] null, --洗车要求
- [sv_bill_type] [int] null, --工单类别
- [sv_type] [int] null, --维修类别
- [lister] [int] null, --制单人
- [gs_price] [int] null, --工时单价
- [product] [int] null, --车型
- [color] [int] null, --颜色
- [gs_status] [int] null, --归属
- [s_item_code] [int] null, --车型代码
- [vehicle_category] [int] null, --车类
- [engine_no] [int] null, --发动机号
- [last_come_date] [int] null, --最近来厂日
- [in_date] [int] null, --进厂日期
- [plan_date] [int] null, --计划完工日
- [in_milimetre] [int] null, --进厂里程
- [oil_ds] [int] null, --油表数
- [sv_maintenance] [int] null, --主修人
- [repair_man] [int] null, --送修人
- [updatevehicle] [int] null, --更新车辆
- [driver_tel] [int] null, --电话/手机
- [driver_code] [int] null, --证件编号
- [driver_birthday] [int] null, --生日
- [driver_addr] [int] null, --地址
- [cc_date] [int] null, --换证日期
- [link_men] [int] null, --主要联系人
- [mobile_tel] [int] null, --联系电话
- [addr] [int] null, --地址
- [Regional] [int] null, --区域
- [cust_name] [int] null, --保险公司
- [insurance_end_date] [int] null, --商业险到期
- [comprehensive_end_date] [int] null, --交强险到期
- [buy_date] [int] null, --购买日期
- [year_check_date] [int] null, --年检日期
- [fmaintain_date] [int] null --首保日期
- )
- GO
复制代码然后把附件中plugin文件夹拷贝到metasoft.jar包中com.metasoft文件夹中 [attachimg]1488[/attachimg] 把附加中dingyiziduan.gif图片复制到元动D:\Program Files\Metasoft\Auto\webapp\images文件夹中。 然后把附件中ms_svbilljc.jsp 拷贝到文件夹D:\Program Files\Metasoft\Auto\webapp\autoservice 中覆盖源文件( 注意做好备份) 然后把附件中configsvbillshow.jsp 拷贝到D:\Program Files\Metasoft\Auto\webapp 文件夹下 重启tomcat 即可 得到以下结果: 小伙伴们 尽情的玩吧……………………………………………… - 附件.rar (, 下载次数:567)
|