ds_pack1_refp_mx.srd 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. $PBExportHeader$ds_pack1_refp_mx.srd
  2. release 11.5;
  3. datawindow(units=0 timer_interval=0 color=1073741824 brushmode=0 transparency=0 gradient.angle=0 gradient.color=8421504 gradient.focus=0 gradient.repetition.count=0 gradient.repetition.length=100 gradient.repetition.mode=0 gradient.scale=100 gradient.spread=100 gradient.transparency=0 picture.blur=0 picture.clip.bottom=0 picture.clip.left=0 picture.clip.right=0 picture.clip.top=0 picture.mode=0 picture.scale.x=100 picture.scale.y=100 picture.transparency=0 processing=1 HTMLDW=no 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.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes print.background=no print.preview.background=no print.preview.outline=yes hidegrayline=no showbackcoloronxp=no picture.file="" grid.lines=0 )
  4. header(height=128 color="536870912" transparency="0" gradient.color="8421504" gradient.transparency="0" gradient.angle="0" brushmode="0" gradient.repetition.mode="0" gradient.repetition.count="0" gradient.repetition.length="100" gradient.focus="0" gradient.scale="100" gradient.spread="100" )
  5. summary(height=0 color="536870912" transparency="0" gradient.color="8421504" gradient.transparency="0" gradient.angle="0" brushmode="0" gradient.repetition.mode="0" gradient.repetition.count="0" gradient.repetition.length="100" gradient.focus="0" gradient.scale="100" gradient.spread="100" )
  6. footer(height=0 color="536870912" transparency="0" gradient.color="8421504" gradient.transparency="0" gradient.angle="0" brushmode="0" gradient.repetition.mode="0" gradient.repetition.count="0" gradient.repetition.length="100" gradient.focus="0" gradient.scale="100" gradient.spread="100" )
  7. detail(height=84 color="536870912" transparency="0" gradient.color="8421504" gradient.transparency="0" gradient.angle="0" brushmode="0" gradient.repetition.mode="0" gradient.repetition.count="0" gradient.repetition.length="100" gradient.focus="0" gradient.scale="100" gradient.spread="100" )
  8. table(column=(type=long updatewhereclause=yes name=u_saletaskmx_scid dbname="u_SaleTaskMx.scid" dbalias=".scid" )
  9. column=(type=long updatewhereclause=yes name=u_saletaskmx_taskid dbname="u_SaleTaskMx.taskid" dbalias=".taskid" )
  10. column=(type=long updatewhereclause=yes name=u_saletaskmx_printid dbname="u_SaleTaskMx.printid" dbalias=".printid" )
  11. column=(type=decimal(9) updatewhereclause=yes name=notfpqty dbname="notfpqty" )
  12. column=(type=decimal(10) updatewhereclause=yes name=warenotfpqty dbname="warenotfpqty" )
  13. column=(type=long updatewhereclause=yes name=u_saletaskmx_mtrlid dbname="u_SaleTaskMx.mtrlid" dbalias=".mtrlid" )
  14. column=(type=char(255) updatewhereclause=yes name=u_saletaskmx_status dbname="u_SaleTaskMx.status" dbalias=".status" )
  15. column=(type=char(255) updatewhereclause=yes name=u_saletaskmx_woodcode dbname="u_SaleTaskMx.woodcode" dbalias=".woodcode" )
  16. column=(type=char(255) updatewhereclause=yes name=u_saletaskmx_pcode dbname="u_SaleTaskMx.pcode" dbalias=".pcode" )
  17. column=(type=datetime updatewhereclause=yes name=u_saletaskmx_requiredate dbname="u_SaleTaskMx.requiredate" dbalias=".requiredate" )
  18. retrieve="SELECT u_SaleTaskMx.scid as scid,
  19. u_SaleTaskMx.TaskID as taskid,
  20. u_SaleTaskMx.printid as printid,
  21. u_SaleTaskMx.SaleQty - u_SaleTaskMx.stopqty - u_SaleTaskMx.fpqty AS notfpqty,
  22. isnull(a.notfpqty,0) as warenotfpqty,
  23. u_SaleTaskMx.MtrlID as mtrlid,
  24. u_SaleTaskMx.status as status,
  25. u_SaleTaskMx.woodcode as woodcode,
  26. u_SaleTaskMx.pcode as pcode,
  27. u_SaleTaskMx.requiredate as requiredate
  28. FROM u_SaleTaskMx INNER JOIN
  29. u_mtrldef ON u_SaleTaskMx.MtrlID = u_mtrldef.mtrlid INNER JOIN
  30. u_SaleTask ON u_SaleTaskMx.scid = u_SaleTask.scid AND
  31. u_SaleTaskMx.TaskID = u_SaleTask.TaskID LEFT OUTER JOIN
  32. (SELECT u_mtrlware.scid, u_mtrlware.mtrlid, u_mtrlware.Status,
  33. u_mtrlware.woodcode, u_mtrlware.pcode,
  34. SUM(u_mtrlware.noallocqty - u_mtrlware.allocqty) AS notfpqty
  35. FROM dbo.u_mtrlware INNER JOIN
  36. u_storage ON u_mtrlware.storageid = u_storage.storageid
  37. WHERE (u_storage.storagetype = 1) AND (u_storage.inuse = 1)
  38. GROUP BY u_mtrlware.scid, u_mtrlware.mtrlid, u_mtrlware.Status,
  39. u_mtrlware.woodcode, u_mtrlware.pcode) a ON
  40. u_SaleTaskMx.scid = a.scid AND u_SaleTaskMx.MtrlID = a.mtrlid AND
  41. u_SaleTaskMx.status = a.Status AND u_SaleTaskMx.woodcode = a.woodcode AND
  42. u_SaleTaskMx.pcode = a.pcode
  43. WHERE (u_SaleTaskMx.SaleQty - u_SaleTaskMx.stopqty - u_SaleTaskMx.fpqty > 0)
  44. AND ( u_mtrldef.ifpack = 1 )
  45. AND ( u_SaleTask.Status = 1 )
  46. and ( u_SaleTaskMx.scid = :arg_scid)
  47. and ( u_SaleTaskMx.TaskID = :arg_TaskID)
  48. UNION ALL
  49. SELECT u_SaleTaskMx.scid as scid,
  50. u_SaleTaskMx.TaskID as taskid,
  51. u_SaleTaskMx.printid as printid,
  52. (u_SaleTaskMx.SaleQty - u_SaleTaskMx.stopqty - u_SaleTaskMx.fpqty) * u_saletaskmx_pf.sonscale AS notfpqty,
  53. isnull(a.notfpqty,0) as warenotfpqty,
  54. u_saletaskmx_pf.sonmtrlid as mtrlid,
  55. u_saletaskmx_pf.status as status,
  56. u_saletaskmx_pf.woodcode as woodcode,
  57. u_saletaskmx_pf.pcode as pcode,
  58. u_SaleTaskMx.requiredate as requiredate
  59. FROM u_SaleTaskMx INNER JOIN
  60. u_SaleTask ON u_SaleTaskMx.scid = u_SaleTask.scid AND
  61. u_SaleTaskMx.TaskID = u_SaleTask.TaskID INNER JOIN
  62. u_SaleTaskMx_pf ON u_SaleTaskMx.scid = u_SaleTaskMx_pf.scid AND
  63. u_SaleTaskMx.TaskID = u_SaleTaskMx_pf.taskid AND
  64. u_SaleTaskMx.printid = u_SaleTaskMx_pf.printid INNER JOIN
  65. u_mtrldef ON u_SaleTaskMx_pf.sonmtrlid = u_mtrldef.mtrlid INNER JOIN
  66. u_mtrldef u_mtrldef_p ON
  67. u_SaleTaskMx.MtrlID = u_mtrldef_p.mtrlid LEFT OUTER JOIN
  68. (SELECT u_mtrlware.scid, u_mtrlware.mtrlid, u_mtrlware.Status,
  69. u_mtrlware.woodcode, u_mtrlware.pcode,
  70. SUM(u_mtrlware.noallocqty - u_mtrlware.allocqty) AS notfpqty
  71. FROM dbo.u_mtrlware INNER JOIN
  72. u_storage ON u_mtrlware.storageid = u_storage.storageid
  73. WHERE (u_storage.storagetype = 1) AND (u_storage.inuse = 1)
  74. GROUP BY u_mtrlware.scid, u_mtrlware.mtrlid, u_mtrlware.Status,
  75. u_mtrlware.woodcode, u_mtrlware.pcode) a ON
  76. u_SaleTaskMx_pf.scid = a.scid AND u_SaleTaskMx_pf.mtrlid = a.mtrlid AND
  77. u_SaleTaskMx_pf.status = a.Status COLLATE Chinese_PRC_CI_AS AND
  78. u_SaleTaskMx_pf.woodcode = a.woodcode COLLATE Chinese_PRC_CI_AS AND
  79. u_SaleTaskMx_pf.pcode = a.pcode COLLATE Chinese_PRC_CI_AS
  80. WHERE (u_SaleTaskMx.SaleQty - u_SaleTaskMx.stopqty - u_SaleTaskMx.fpqty > 0)
  81. AND ( u_mtrldef.ifpack = 1 )
  82. AND ( u_SaleTask.Status = 1 )
  83. AND ( u_mtrldef_p.ifpackpro = 1 OR u_mtrldef_p.ifpackpro = 2 )
  84. and ( u_SaleTaskMx.scid = :arg_scid)
  85. and ( u_SaleTaskMx.TaskID = :arg_TaskID)
  86. UNION ALL
  87. select v_mx.scid as scid,
  88. v_mx.taskid as taskid,
  89. v_mx.printid as printid,
  90. v_mx.notfpqty as notfpqty,
  91. a.notfpqty AS warenotfpqty,
  92. v_mx.mtrlid as mtrlid,
  93. v_mx.status as status,
  94. v_mx.woodcode as woodcode,
  95. v_mx.pcode as pcode,
  96. v_mx.requiredate as requiredate
  97. from (
  98. SELECT u_SaleTaskMx.scid as scid,
  99. u_SaleTaskMx.TaskID as taskid,
  100. u_SaleTaskMx.printid as printid,
  101. (u_SaleTaskMx.SaleQty - u_SaleTaskMx.stopqty - u_SaleTaskMx.fpqty) * u_prdpf.sonscale AS notfpqty,
  102. u_prdpf.sonmtrlid as mtrlid,
  103. case when u_prdpf.ifover = 0 then u_prdpf.status
  104. else case when u_prdpf.dipztype = 0 OR u_prdpf.dipztype = 3 OR u_prdpf.dipztype = 5 OR u_prdpf.dipztype = 6 then u_SaleTaskMx.status else '' END END as status,
  105. case when u_prdpf.ifover = 0 then u_prdpf.woodcode
  106. else case when u_prdpf.dipztype = 1 OR u_prdpf.dipztype = 3 OR u_prdpf.dipztype = 4 OR u_prdpf.dipztype = 6 then u_SaleTaskMx.woodcode else '' END END as woodcode,
  107. case when u_prdpf.ifover = 0 then u_prdpf.pcode
  108. else case when u_prdpf.dipztype = 2 OR u_prdpf.dipztype = 4 OR u_prdpf.dipztype = 5 OR u_prdpf.dipztype = 6 then u_SaleTaskMx.pcode else '' END END as pcode,
  109. u_SaleTaskMx.requiredate as requiredate
  110. FROM u_SaleTaskMx INNER JOIN
  111. u_SaleTask ON u_SaleTaskMx.scid = u_SaleTask.scid
  112. AND u_SaleTaskMx.TaskID = u_SaleTask.TaskID INNER join u_mtrl_pf on
  113. u_SaleTaskMx.mtrlid = u_mtrl_pf.mtrlid AND
  114. u_mtrl_pf.ifdft = 1 INNER join u_prdpf on
  115. u_mtrl_pf.mtrlid = u_prdpf.mtrlid AND
  116. u_mtrl_pf.pfcode = u_prdpf.pfcode INNER JOIN
  117. u_mtrldef ON u_prdpf.sonMtrlID = u_mtrldef.mtrlid INNER join u_mtrldef u_mtrldef_p on
  118. u_SaleTaskMx.mtrlid = u_mtrldef_p.mtrlid
  119. WHERE (u_SaleTaskMx.SaleQty - u_SaleTaskMx.stopqty - u_SaleTaskMx.fpqty > 0)
  120. AND ( u_mtrldef.ifpack = 1 )
  121. AND ( u_mtrldef_p.ifpackpro = 1 OR u_mtrldef_p.ifpackpro = 2 )
  122. AND ( u_SaleTask.Status = 1 )
  123. and ( u_SaleTaskMx.scid = :arg_scid)
  124. and ( u_SaleTaskMx.TaskID = :arg_TaskID)
  125. AND ( CAST(u_SaleTaskMx.Scid AS varchar(20)) + '_' + CAST(u_SaleTaskMx.taskid AS varchar(20)) + '_' + CAST(u_SaleTaskMx.printid AS varchar(20)) not in
  126. (select CAST(u_SaleTaskMx_pf.Scid AS varchar(20)) + '_' + CAST(u_SaleTaskMx_pf.taskid AS varchar(20)) + '_' + CAST(u_SaleTaskMx_pf.printid AS varchar(20)) from u_saletaskmx_pf ))
  127. ) v_mx LEFT OUTER JOIN
  128. (SELECT u_mtrlware.scid, u_mtrlware.mtrlid, u_mtrlware.Status,
  129. u_mtrlware.woodcode, u_mtrlware.pcode,
  130. SUM(u_mtrlware.noallocqty - u_mtrlware.allocqty) AS notfpqty
  131. FROM dbo.u_mtrlware INNER JOIN
  132. u_storage ON u_mtrlware.storageid = u_storage.storageid
  133. WHERE (u_storage.storagetype = 1) AND (u_storage.inuse = 1)
  134. GROUP BY u_mtrlware.scid, u_mtrlware.mtrlid, u_mtrlware.Status,
  135. u_mtrlware.woodcode, u_mtrlware.pcode) a ON v_mx.pcode = a.pcode AND
  136. v_mx.scid = a.scid AND v_mx.mtrlid = a.mtrlid AND v_mx.status = a.Status AND
  137. v_mx.woodcode = a.woodcode
  138. " arguments=(("arg_scid", number),("arg_taskid", number)) sort="u_saletaskmx_requiredate A " )
  139. text(band=header alignment="2" text="分部ID" border="0" color="33554432" x="9" y="8" height="56" width="329" html.valueishtml="0" name=u_saletaskmx_scid_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  140. text(band=header alignment="2" text="销售订单ID" border="0" color="33554432" x="347" y="8" height="56" width="329" html.valueishtml="0" name=u_saletaskmx_taskid_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  141. text(band=header alignment="2" text="序号" border="0" color="33554432" x="686" y="8" height="56" width="329" html.valueishtml="0" name=u_saletaskmx_printid_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  142. text(band=header alignment="2" text="Notfpqty" border="0" color="33554432" x="1024" y="8" height="56" width="535" html.valueishtml="0" name=notfpqty_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  143. text(band=header alignment="2" text="物料ID" border="0" color="33554432" x="1568" y="8" height="56" width="329" html.valueishtml="0" name=u_saletaskmx_mtrlid_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  144. text(band=header alignment="2" text="配置" border="0" color="33554432" x="1906" y="8" height="56" width="4686" html.valueishtml="0" name=u_saletaskmx_status_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  145. text(band=header alignment="2" text="配置1" border="0" color="33554432" x="6601" y="8" height="56" width="4681" html.valueishtml="0" name=u_saletaskmx_woodcode_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  146. text(band=header alignment="2" text="配置2" border="0" color="33554432" x="11291" y="8" height="56" width="4686" html.valueishtml="0" name=u_saletaskmx_pcode_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  147. text(band=header alignment="2" text="交货日期" border="0" color="33554432" x="15986" y="8" height="56" width="603" html.valueishtml="0" name=u_saletaskmx_requiredate_t visible="1" font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  148. column(band=detail id=1 alignment="1" tabsequence=32766 border="0" color="33554432" x="9" y="8" height="68" width="329" format="[general]" html.valueishtml="0" name=u_saletaskmx_scid visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  149. column(band=detail id=2 alignment="1" tabsequence=32766 border="0" color="33554432" x="347" y="8" height="68" width="329" format="[general]" html.valueishtml="0" name=u_saletaskmx_taskid visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  150. column(band=detail id=3 alignment="1" tabsequence=32766 border="0" color="33554432" x="686" y="8" height="68" width="329" format="[general]" html.valueishtml="0" name=u_saletaskmx_printid visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  151. column(band=detail id=4 alignment="1" tabsequence=32766 border="0" color="33554432" x="1024" y="8" height="68" width="535" format="[general]" html.valueishtml="0" name=notfpqty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  152. column(band=detail id=6 alignment="1" tabsequence=32766 border="0" color="33554432" x="1568" y="8" height="68" width="329" format="[general]" html.valueishtml="0" name=u_saletaskmx_mtrlid visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  153. column(band=detail id=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="1906" y="8" height="68" width="4686" format="[general]" html.valueishtml="0" name=u_saletaskmx_status visible="1" edit.limit=255 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  154. column(band=detail id=8 alignment="0" tabsequence=32766 border="0" color="33554432" x="6601" y="8" height="68" width="4681" format="[general]" html.valueishtml="0" name=u_saletaskmx_woodcode visible="1" edit.limit=255 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  155. column(band=detail id=9 alignment="0" tabsequence=32766 border="0" color="33554432" x="11291" y="8" height="68" width="4686" format="[general]" html.valueishtml="0" name=u_saletaskmx_pcode visible="1" edit.limit=255 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  156. column(band=detail id=10 alignment="0" tabsequence=32766 border="0" color="33554432" x="15986" y="8" height="68" width="603" format="[shortdate] [time]" html.valueishtml="0" name=u_saletaskmx_requiredate visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  157. column(band=detail id=5 alignment="0" tabsequence=0 border="0" color="33554432" x="16603" y="0" height="56" width="425" html.valueishtml="0" name=warenotfpqty visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no font.face="宋体" font.height="-9" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912" background.transparency="0" background.gradient.color="8421504" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="100" background.gradient.focus="0" background.gradient.scale="100" background.gradient.spread="100" tooltip.backcolor="134217752" tooltip.delay.initial="0" tooltip.delay.visible="32000" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="134217751" tooltip.transparency="0" transparency="0" )
  158. text(band=header alignment="0" text="Warenotfpqty" border="0" color="33554432" x="16599" y="4" height="76" width="430" html.valueishtml="0" name=warenotfpqty_t visible="1" font.face="Tahoma" font.height="-12" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" background.transparency="0" background.gradient.color="0" background.gradient.transparency="0" background.gradient.angle="0" background.brushmode="0" background.gradient.repetition.mode="0" background.gradient.repetition.count="0" background.gradient.repetition.length="0" background.gradient.focus="0" background.gradient.scale="0" background.gradient.spread="0" tooltip.backcolor="0" tooltip.delay.initial="0" tooltip.delay.visible="0" tooltip.enabled="0" tooltip.hasclosebutton="0" tooltip.icon="0" tooltip.isbubble="0" tooltip.maxwidth="0" tooltip.textcolor="0" tooltip.transparency="0" transparency="0" )
  159. htmltable(border="1" )
  160. htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" pagingmethod=0 generatedddwframes="1" )
  161. xhtmlgen() cssgen(sessionspecific="0" )
  162. xmlgen(inline="0" )
  163. xsltgen()
  164. jsgen()
  165. export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
  166. import.xml()
  167. export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
  168. export.xhtml()