ds_asset_index.srd 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. $PBExportHeader$ds_asset_index.srd
  2. $PBExportComments$By Kivens.Jiang(kivens@21cn.com)
  3. release 9;
  4. datawindow ( units=0 timer_interval=0 color=16777215 processing=1 print.printername="" print.documentname="" print.orientation=0 print.margin.left=110 print.margin.right=110 print.margin.top=96 print.margin.bottom=96 print.paper.size=0 print.paper.source=0 print.canusedefaultprinter=yes grid.lines=0 selected.mouse=yes)
  5. header(height=72 color="536870912" )
  6. summary(height=0 color="536870912" )
  7. footer(height=0 color="536870912" )
  8. detail(height=84 color="536870912" )
  9. table(column=(type=long update=yes updatewhereclause=yes name=accsetid dbname="cw_assetcard.accsetid" )
  10. column=(type=long update=yes updatewhereclause=yes name=assetcardid dbname="cw_assetcard.assetcardid" )
  11. column=(type=char(10) update=yes updatewhereclause=yes name=assetcardcode dbname="cw_assetcard.assetcardcode" )
  12. column=(type=char(40) update=yes updatewhereclause=yes name=assetcardname dbname="cw_assetcard.assetcardname" )
  13. column=(type=char(20) update=yes updatewhereclause=yes name=spectype dbname="cw_assetcard.spectype" )
  14. column=(type=long update=yes updatewhereclause=yes name=assetypeid dbname="cw_assetcard.assetypeid" )
  15. column=(type=long update=yes updatewhereclause=yes name=deptid dbname="cw_assetcard.deptid" )
  16. column=(type=long update=yes updatewhereclause=yes name=incrdecrid dbname="cw_assetcard.incrdecrid" )
  17. column=(type=char(60) update=yes updatewhereclause=yes name=location dbname="cw_assetcard.location" )
  18. column=(type=long update=yes updatewhereclause=yes name=usedtypeid dbname="cw_assetcard.usedtypeid" )
  19. column=(type=long update=yes updatewhereclause=yes name=deprediateid dbname="cw_assetcard.deprediateid" )
  20. column=(type=datetime update=yes updatewhereclause=yes name=startdate dbname="cw_assetcard.startdate" )
  21. column=(type=long update=yes updatewhereclause=yes name=workload dbname="cw_assetcard.workload" )
  22. column=(type=long update=yes updatewhereclause=yes name=usedall dbname="cw_assetcard.usedall" )
  23. column=(type=char(10) update=yes updatewhereclause=yes name=unit dbname="cw_assetcard.unit" )
  24. column=(type=decimal(2) update=yes updatewhereclause=yes name=rawvalue dbname="cw_assetcard.rawvalue" )
  25. column=(type=decimal(2) update=yes updatewhereclause=yes name=usedvalue dbname="cw_assetcard.usedvalue" )
  26. column=(type=decimal(4) update=yes updatewhereclause=yes name=remainrate dbname="cw_assetcard.remainrate" )
  27. column=(type=decimal(2) update=yes updatewhereclause=yes name=remainvalue dbname="cw_assetcard.remainvalue" )
  28. column=(type=decimal(4) update=yes updatewhereclause=yes name=deprrate dbname="cw_assetcard.deprrate" )
  29. column=(type=decimal(2) update=yes updatewhereclause=yes name=deprvalue dbname="cw_assetcard.deprvalue" )
  30. column=(type=char(18) update=yes updatewhereclause=yes name=subid dbname="cw_assetcard.subid" )
  31. column=(type=char(18) updatewhereclause=yes name=cw_assetcard_deprsubid dbname="cw_assetcard.deprsubid" )
  32. column=(type=long update=yes updatewhereclause=yes name=initflag dbname="cw_assetcard.Initflag" )
  33. column=(type=long update=yes updatewhereclause=yes name=clearflag dbname="cw_assetcard.clearflag" )
  34. column=(type=char(50) updatewhereclause=yes name=assettypename dbname="assettypename" )
  35. column=(type=char(60) updatewhereclause=yes name=subname dbname="subname" )
  36. column=(type=char(60) updatewhereclause=yes name=subname2 dbname="subname2" )
  37. retrieve=" SELECT cw_assetcard.accsetid,
  38. cw_assetcard.assetcardid,
  39. cw_assetcard.assetcardcode,
  40. cw_assetcard.assetcardname,
  41. cw_assetcard.spectype,
  42. cw_assetcard.assetypeid,
  43. cw_assetcard.deptid,
  44. cw_assetcard.incrdecrid,
  45. cw_assetcard.location,
  46. cw_assetcard.usedtypeid,
  47. cw_assetcard.deprediateid,
  48. cw_assetcard.startdate,
  49. cw_assetcard.workload,
  50. cw_assetcard.usedall,
  51. cw_assetcard.unit,
  52. cw_assetcard.rawvalue,
  53. cw_assetcard.usedvalue,
  54. cw_assetcard.remainrate,
  55. cw_assetcard.remainvalue,
  56. cw_assetcard.deprrate,
  57. cw_assetcard.deprvalue,
  58. cw_assetcard.subid,
  59. cw_assetcard.deprsubid,
  60. cw_assetcard.Initflag,
  61. cw_assetcard.clearflag,
  62. isnull(cw_assettype.assettypename,'') as assettypename,
  63. isnull(cw_subject.name,'') as subname,
  64. isnull(cw_subject2.name,'') as subname2
  65. FROM cw_assetcard left outer join cw_assettype on
  66. cw_assetcard.accsetid = cw_assettype.accsetid and
  67. cw_assetcard.assetypeid = cw_assettype.assettypeid left outer join cw_subject
  68. on cw_assetcard.accsetid = cw_subject.accsetid
  69. and cw_assetcard.deprsubid = cw_subject.subid left outer join cw_subject cw_subject2
  70. on cw_assetcard.accsetid = cw_subject2.accsetid
  71. and cw_assetcard.subid = cw_subject2.subid
  72. WHERE ( cw_assetcard.startdate <= :arg_firstdate ) AND
  73. ( cw_assetcard.accsetid = :arg_accsetid )
  74. "
  75. arguments=(("arg_accsetid", number), ("arg_firstdate", datetime))
  76. )
  77. text(name=accsetid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="9" y="8" height="56" width="329" text="帐套ID" )
  78. text(name=assetcardid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="347" y="8" height="56" width="329" text="固定资产ID" )
  79. text(name=assetcardcode_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="686" y="8" height="56" width="411" text="固定资产编号" )
  80. text(name=assetcardname_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="1106" y="8" height="56" width="1125" text="固定资产名称" )
  81. text(name=spectype_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="2240" y="8" height="56" width="576" text="规格型号" )
  82. text(name=assetypeid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="2825" y="8" height="56" width="411" text="固定资产类别" )
  83. text(name=deptid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="3246" y="8" height="56" width="329" text="所属部门" )
  84. text(name=incrdecrid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="3584" y="8" height="56" width="329" text="增减方式" )
  85. text(name=location_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="3922" y="8" height="56" width="1673" text="存放位置" )
  86. text(name=usedtypeid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="5605" y="8" height="56" width="329" text="使用状况" )
  87. text(name=deprediateid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="5943" y="8" height="56" width="329" text="折旧方法" )
  88. text(name=startdate_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="6281" y="8" height="56" width="603" text="入帐日期" )
  89. text(name=workload_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="6894" y="8" height="56" width="384" text="预计使用月份" )
  90. text(name=usedall_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="7287" y="8" height="56" width="329" text="已计提月份" )
  91. text(name=unit_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="7625" y="8" height="56" width="357" text="工作量单位" )
  92. text(name=rawvalue_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="7991" y="8" height="56" width="329" text="入帐原值" )
  93. text(name=usedvalue_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="8329" y="8" height="56" width="329" text="累计折旧" )
  94. text(name=remainrate_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="8667" y="8" height="56" width="329" text="预计残值率" )
  95. text(name=remainvalue_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="9006" y="8" height="56" width="329" text="预计剩残值" )
  96. text(name=deprrate_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="9344" y="8" height="56" width="329" text="月折旧率" )
  97. text(name=deprvalue_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="9682" y="8" height="56" width="329" text="月折旧额" )
  98. text(name=subid_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="10021" y="8" height="56" width="521" text="对应折旧科目" )
  99. text(name=initflag_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="10551" y="8" height="56" width="329" text="Initflag" )
  100. text(name=clearflag_t visible="1" band=header font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" background.mode="1" background.color="536870912" color="0" alignment="2" border="0" x="10889" y="8" height="56" width="329" text="清理标记" )
  101. text(name=assettypename_t visible="1" band=header font.charset="0" font.face="Arial" font.family="2" font.height="-12" font.pitch="2" font.weight="400" background.mode="2" background.color="1073741824" color="33554432" alignment="0" border="0" x="11227" y="4" height="76" width="1339" text="Assettypename" )
  102. text(name=cw_assetcard_deprsubid_t visible="1" band=header font.charset="0" font.face="Arial" font.family="2" font.height="-12" font.pitch="2" font.weight="400" background.mode="2" background.color="1073741824" color="33554432" alignment="0" border="0" x="12576" y="4" height="76" width="475" text="Cw Assetcard Deprsubid" )
  103. text(name=subname_t visible="1" band=header font.charset="0" font.face="Arial" font.family="2" font.height="-12" font.pitch="2" font.weight="400" background.mode="2" background.color="1073741824" color="33554432" alignment="0" border="0" x="13061" y="4" height="76" width="1609" text="Subname" )
  104. text(name=subname2_t visible="1" band=header font.charset="0" font.face="Arial" font.family="2" font.height="-12" font.pitch="2" font.weight="400" background.mode="2" background.color="1073741824" color="33554432" alignment="0" border="0" x="14679" y="4" height="76" width="1609" text="Subname2" )
  105. column(name=accsetid visible="1" tag="帐套ID" band=detail id=1 x="9" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=10 )
  106. column(name=assetcardid visible="1" tag="固定资产ID" band=detail id=2 x="347" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=20 )
  107. column(name=assetcardcode visible="1" tag="固定资产编号" band=detail id=3 x="686" y="8" height="68" width="411" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=10 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=30 )
  108. column(name=assetcardname visible="1" tag="固定资产名称" band=detail id=4 x="1106" y="8" height="68" width="1125" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=40 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=40 )
  109. column(name=spectype visible="1" tag="规格型号" band=detail id=5 x="2240" y="8" height="68" width="576" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=20 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=50 )
  110. column(name=assetypeid visible="1" tag="固定资产类别" band=detail id=6 x="2825" y="8" height="68" width="411" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=60 )
  111. column(name=deptid visible="1" tag="所属部门" band=detail id=7 x="3246" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=70 )
  112. column(name=incrdecrid visible="1" tag="增减方式" band=detail id=8 x="3584" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=80 )
  113. column(name=location visible="1" tag="存放位置" band=detail id=9 x="3922" y="8" height="68" width="1673" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=60 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=90 )
  114. column(name=usedtypeid visible="1" tag="使用状况" band=detail id=10 x="5605" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=100 )
  115. column(name=deprediateid visible="1" tag="折旧方法" band=detail id=11 x="5943" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=110 )
  116. column(name=startdate visible="1" tag="入帐日期" band=detail id=12 x="6281" y="8" height="68" width="603" color="0" border="0" alignment="0" format="[shortdate] [time]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=120 )
  117. column(name=workload visible="1" tag="预计使用月份" band=detail id=13 x="6894" y="8" height="68" width="384" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=130 )
  118. column(name=usedall visible="1" tag="已计提月份" band=detail id=14 x="7287" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=140 )
  119. column(name=unit visible="1" tag="工作量单位" band=detail id=15 x="7625" y="8" height="68" width="357" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=10 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=150 )
  120. column(name=rawvalue visible="1" tag="入帐原值" band=detail id=16 x="7991" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=160 )
  121. column(name=usedvalue visible="1" tag="累计折旧" band=detail id=17 x="8329" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=170 )
  122. column(name=remainrate visible="1" tag="预计残值率" band=detail id=18 x="8667" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=180 )
  123. column(name=remainvalue visible="1" tag="预计剩残值" band=detail id=19 x="9006" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=190 )
  124. column(name=deprrate visible="1" tag="月折旧率" band=detail id=20 x="9344" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=200 )
  125. column(name=deprvalue visible="1" tag="月折旧额" band=detail id=21 x="9682" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=210 )
  126. column(name=subid visible="1" tag="对应折旧科目" band=detail id=22 x="10021" y="8" height="68" width="521" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=18 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=220 )
  127. column(name=initflag visible="1" band=detail id=24 x="10551" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=230 )
  128. column(name=clearflag visible="1" tag="清理标记" band=detail id=25 x="10889" y="8" height="68" width="329" color="0" border="0" alignment="1" format="[general]" edit.focusrectangle=no edit.autohscroll=yes edit.autoselect=yes edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=240 )
  129. column(name=assettypename visible="1" band=detail id=26 x="11227" y="0" height="56" width="1339" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=no edit.autoselect=no edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=250 )
  130. column(name=cw_assetcard_deprsubid visible="1" band=detail id=23 x="12576" y="0" height="56" width="475" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=no edit.autoselect=no edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=260 )
  131. column(name=subname visible="1" band=detail id=27 x="13061" y="0" height="56" width="1609" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=no edit.autoselect=no edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=270 )
  132. column(name=subname2 visible="1" band=detail id=28 x="14679" y="0" height="56" width="1609" color="0" border="0" alignment="0" format="[general]" edit.focusrectangle=no edit.autohscroll=no edit.autoselect=no edit.autovscroll=no edit.case=any edit.codetable=no edit.displayonly=no edit.hscrollbar=no edit.imemode=0 edit.limit=0 edit.password=no edit.vscrollbar=no edit.validatecode=no edit.nilisnull=no edit.required=no criteria.required=no criteria.override_edit=no crosstab.repeat=no background.mode="1" background.color="536870912" font.charset="134" font.face="宋体" font.family="0" font.height="-9" font.pitch="2" font.weight="400" tabsequence=280 )
  133. htmltable(border="1" )
  134. htmlgen(clientComputedFields="1" clientEvents="1" clientFormatting="0" clientScriptable="0" clientValidation="1" generateJavaScript="1" netscapeLayers="0" netscapelayers="0" encodeSelfLinkArgs="1" )
  135. export.xml(headGroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
  136. import.xml()
  137. export.pdf(method=0 distill.customPostScript="0" xslfop.print="0" )