1#
首先打开查询分线器切换到元动软件创建数据库表:
  1. if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[My_show_svbill]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
  2. drop table [dbo].[My_show_svbill]
  3. GO

  4. CREATE TABLE [dbo].[My_show_svbill] (
  5. [id] [int] IDENTITY (1, 1) NOT NULL ,
  6. [VIP] [int] null, --会员卡号
  7. [VIN] [int] null, --Vin号
  8. [bill_date] [int] null, --单据日期
  9. [code] [int] null, --维修单号
  10. [dept_name] [int] null, --部门
  11. [pick_people] [int] null, --接车人
  12. [f_bill_no] [int] null, --厂家单号
  13. [commissioner] [int] null, --客户专员
  14. [develop_human] [int] null, --开拓人
  15. [associatorl_type_name] [int] null, --会员类别
  16. [customer_categories] [int] null, --客户类别
  17. [balance_amt] [int] null, --余
  18. [old_cl] [int] null, --旧件处理
  19. [yy_type] [int] null, --洗车要求
  20. [sv_bill_type] [int] null, --工单类别
  21. [sv_type] [int] null, --维修类别
  22. [lister] [int] null, --制单人
  23. [gs_price] [int] null, --工时单价
  24. [product] [int] null, --车型
  25. [color] [int] null, --颜色
  26. [gs_status] [int] null, --归属
  27. [s_item_code] [int] null, --车型代码
  28. [vehicle_category] [int] null, --车类
  29. [engine_no] [int] null, --发动机号
  30. [last_come_date] [int] null, --最近来厂日
  31. [in_date] [int] null, --进厂日期
  32. [plan_date] [int] null, --计划完工日
  33. [in_milimetre] [int] null, --进厂里程
  34. [oil_ds] [int] null, --油表数
  35. [sv_maintenance] [int] null, --主修人
  36. [repair_man] [int] null, --送修人
  37. [updatevehicle] [int] null, --更新车辆
  38. [driver_tel] [int] null, --电话/手机
  39. [driver_code] [int] null, --证件编号
  40. [driver_birthday] [int] null, --生日
  41. [driver_addr] [int] null, --地址
  42. [cc_date] [int] null, --换证日期
  43. [link_men] [int] null, --主要联系人
  44. [mobile_tel] [int] null, --联系电话
  45. [addr] [int] null, --地址
  46. [Regional] [int] null, --区域
  47. [cust_name] [int] null, --保险公司
  48. [insurance_end_date] [int] null, --商业险到期
  49. [comprehensive_end_date] [int] null, --交强险到期
  50. [buy_date] [int] null, --购买日期
  51. [year_check_date] [int] null, --年检日期
  52. [fmaintain_date] [int] null --首保日期


  53. )
  54. 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 (, 下载次数:493)