w_rp_sale_contrast.srw 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. $PBExportHeader$w_rp_sale_contrast.srw
  2. forward
  3. global type w_rp_sale_contrast from w_publ_easyq
  4. end type
  5. type cbx_1 from checkbox within w_rp_sale_contrast
  6. end type
  7. type ddlb_1 from dropdownlistbox within w_rp_sale_contrast
  8. end type
  9. type st_1 from statictext within w_rp_sale_contrast
  10. end type
  11. type tv_1 from uo_tv_cusarea within w_rp_sale_contrast
  12. end type
  13. type tv_2 from uo_tv_mtrltype within w_rp_sale_contrast
  14. end type
  15. type st_2 from statictext within w_rp_sale_contrast
  16. end type
  17. type ddlb_2 from uo_ddlb_storageid within w_rp_sale_contrast
  18. end type
  19. type ddlb_scid from uo_ddlb_scid within w_rp_sale_contrast
  20. end type
  21. end forward
  22. global type w_rp_sale_contrast from w_publ_easyq
  23. string title = "销售金额汇总对比表"
  24. cbx_1 cbx_1
  25. ddlb_1 ddlb_1
  26. st_1 st_1
  27. tv_1 tv_1
  28. tv_2 tv_2
  29. st_2 st_2
  30. ddlb_2 ddlb_2
  31. ddlb_scid ddlb_scid
  32. end type
  33. global w_rp_sale_contrast w_rp_sale_contrast
  34. type variables
  35. long cur_scid_arr[]
  36. int cur_contrastflag = 1
  37. Long cur_storageid_arr[]
  38. //string ls_areaname = ''
  39. String ls_handtype = ''
  40. boolean ib_ChgReport = false
  41. end variables
  42. forward prototypes
  43. public function datetime wf_get_lastmonth ()
  44. public subroutine wf_hidecol ()
  45. end prototypes
  46. public function datetime wf_get_lastmonth ();int li_month
  47. long ll_year
  48. datetime ldt_dt
  49. ll_year = year(today())
  50. li_month = month(today())
  51. if li_month = 1 then
  52. ldt_dt = datetime(date(string(ll_year - 1)+"-12-01"))
  53. else
  54. ldt_dt = datetime(date(string(ll_year)+"-"+string(li_month - 1)+"-01"))
  55. end if
  56. return ldt_dt
  57. end function
  58. public subroutine wf_hidecol ();s_hide_col s_col_plan
  59. s_col_plan.col_1 = 'u_mtrldef_planprice'
  60. s_col_plan.col_2 = 'enamt_plan'
  61. s_col_plan.col_3 = 'gpamt_plan'
  62. f_hide_col(1451,dw_1,s_col_plan)
  63. end subroutine
  64. on w_rp_sale_contrast.create
  65. int iCurrent
  66. call super::create
  67. this.cbx_1=create cbx_1
  68. this.ddlb_1=create ddlb_1
  69. this.st_1=create st_1
  70. this.tv_1=create tv_1
  71. this.tv_2=create tv_2
  72. this.st_2=create st_2
  73. this.ddlb_2=create ddlb_2
  74. this.ddlb_scid=create ddlb_scid
  75. iCurrent=UpperBound(this.Control)
  76. this.Control[iCurrent+1]=this.cbx_1
  77. this.Control[iCurrent+2]=this.ddlb_1
  78. this.Control[iCurrent+3]=this.st_1
  79. this.Control[iCurrent+4]=this.tv_1
  80. this.Control[iCurrent+5]=this.tv_2
  81. this.Control[iCurrent+6]=this.st_2
  82. this.Control[iCurrent+7]=this.ddlb_2
  83. this.Control[iCurrent+8]=this.ddlb_scid
  84. end on
  85. on w_rp_sale_contrast.destroy
  86. call super::destroy
  87. destroy(this.cbx_1)
  88. destroy(this.ddlb_1)
  89. destroy(this.st_1)
  90. destroy(this.tv_1)
  91. destroy(this.tv_2)
  92. destroy(this.st_2)
  93. destroy(this.ddlb_2)
  94. destroy(this.ddlb_scid)
  95. end on
  96. event ue_before_openretrieve;call super::ue_before_openretrieve;em_1.Text = String(wf_get_lastmonth(),"yyyy-mm")
  97. tv_2.Y = tv_1.Y
  98. tv_2.Visible = False
  99. end event
  100. event resize;call super::resize;tv_1.height = this.height - tv_1.y - 150
  101. tv_2.height = tv_1.height
  102. end event
  103. type cb_func from w_publ_easyq`cb_func within w_rp_sale_contrast
  104. end type
  105. type cb_exit from w_publ_easyq`cb_exit within w_rp_sale_contrast
  106. end type
  107. type cb_2 from w_publ_easyq`cb_2 within w_rp_sale_contrast
  108. boolean bringtotop = true
  109. end type
  110. type cb_psetup from w_publ_easyq`cb_psetup within w_rp_sale_contrast
  111. boolean bringtotop = true
  112. end type
  113. type cb_1 from w_publ_easyq`cb_1 within w_rp_sale_contrast
  114. boolean bringtotop = true
  115. end type
  116. event cb_1::clicked;call super::clicked;
  117. //IF Trim(ddlb_1.Text) = "客户销售金额对比表" AND cbx_1.Checked THEN
  118. // dw_1.DataObject = "dw_rp_sale_contrast_2"
  119. //ELSEIF Trim(ddlb_1.Text) = "客户销售金额对比表" AND NOT cbx_1.Checked THEN
  120. // dw_1.DataObject = "dw_rp_sale_contrast_1"
  121. //ELSEIF Trim(ddlb_1.Text) = "产品销售金额对比表" AND cbx_1.Checked THEN
  122. // dw_1.DataObject = "dw_rp_sale_contrast_3"
  123. //ELSEIF Trim(ddlb_1.Text) = "产品销售金额对比表" AND NOT cbx_1.Checked THEN
  124. // dw_1.DataObject = "dw_rp_sale_contrast_4"
  125. //END IF
  126. //
  127. //dw_1.SetTransObject(sqlca)
  128. Int li_option_outrep
  129. IF sys_power_issuper THEN
  130. li_option_outrep = 0
  131. ELSE
  132. li_option_outrep = sys_option_outrep
  133. END IF
  134. dw_1.Retrieve(cur_scid_arr,cur_storageid_arr,ls_handtype,Trim(em_1.Text),Trim(em_2.Text),sys_areaid,cur_contrastflag, sys_user_outrep, li_option_outrep)
  135. wf_hidecol()
  136. //IF Trim(ddlb_1.Text) = "客户销售金额对比表" AND cbx_1.Checked THEN
  137. // dw_1.Object.t_8.Text = "对比日期为:"+Trim(em_1.Text)+' 同 '+Trim(em_2.Text)
  138. //ELSEIF Trim(ddlb_1.Text) = "产品销售金额对比表" AND cbx_1.Checked THEN
  139. // dw_1.Object.t_10.Text = "对比日期为:"+Trim(em_1.Text)+' 同 '+Trim(em_2.Text)
  140. //END IF
  141. end event
  142. type st_3 from w_publ_easyq`st_3 within w_rp_sale_contrast
  143. integer x = 1637
  144. integer y = 204
  145. end type
  146. type st_4 from w_publ_easyq`st_4 within w_rp_sale_contrast
  147. integer x = 2281
  148. integer y = 204
  149. end type
  150. type em_1 from w_publ_easyq`em_1 within w_rp_sale_contrast
  151. integer x = 1856
  152. integer y = 188
  153. integer width = 325
  154. integer taborder = 110
  155. string mask = "yyyy-mm"
  156. end type
  157. type em_2 from w_publ_easyq`em_2 within w_rp_sale_contrast
  158. integer x = 2382
  159. integer y = 188
  160. integer width = 325
  161. integer taborder = 120
  162. string mask = "yyyy-mm"
  163. end type
  164. type ddlb_yl from w_publ_easyq`ddlb_yl within w_rp_sale_contrast
  165. integer x = 1600
  166. integer y = 12
  167. end type
  168. type cbx_yl from w_publ_easyq`cbx_yl within w_rp_sale_contrast
  169. integer x = 1390
  170. integer y = 12
  171. end type
  172. type dw_1 from w_publ_easyq`dw_1 within w_rp_sale_contrast
  173. integer x = 800
  174. integer y = 304
  175. integer width = 2679
  176. string dataobject = "dw_rp_sale_contrast_1"
  177. end type
  178. type sle_mtrl from w_publ_easyq`sle_mtrl within w_rp_sale_contrast
  179. end type
  180. type sle_cust from w_publ_easyq`sle_cust within w_rp_sale_contrast
  181. end type
  182. type st_mtrl from w_publ_easyq`st_mtrl within w_rp_sale_contrast
  183. end type
  184. type st_cust from w_publ_easyq`st_cust within w_rp_sale_contrast
  185. end type
  186. type cbx_loginretr from w_publ_easyq`cbx_loginretr within w_rp_sale_contrast
  187. boolean visible = true
  188. integer x = 1390
  189. integer y = 108
  190. end type
  191. type pb_em1 from w_publ_easyq`pb_em1 within w_rp_sale_contrast
  192. integer x = 2190
  193. integer y = 188
  194. end type
  195. type pb_em2 from w_publ_easyq`pb_em2 within w_rp_sale_contrast
  196. integer x = 2715
  197. integer y = 188
  198. end type
  199. type pb_2 from w_publ_easyq`pb_2 within w_rp_sale_contrast
  200. integer x = 2821
  201. integer y = 188
  202. end type
  203. type cb_help from w_publ_easyq`cb_help within w_rp_sale_contrast
  204. end type
  205. type cb_copyself from w_publ_easyq`cb_copyself within w_rp_sale_contrast
  206. end type
  207. type gb_1 from w_publ_easyq`gb_1 within w_rp_sale_contrast
  208. end type
  209. type ln_bar from w_publ_easyq`ln_bar within w_rp_sale_contrast
  210. end type
  211. type ln_bar2 from w_publ_easyq`ln_bar2 within w_rp_sale_contrast
  212. end type
  213. type r_bar from w_publ_easyq`r_bar within w_rp_sale_contrast
  214. end type
  215. type ln_1 from w_publ_easyq`ln_1 within w_rp_sale_contrast
  216. end type
  217. type ln_2 from w_publ_easyq`ln_2 within w_rp_sale_contrast
  218. end type
  219. type ln_3 from w_publ_easyq`ln_3 within w_rp_sale_contrast
  220. end type
  221. type ln_4 from w_publ_easyq`ln_4 within w_rp_sale_contrast
  222. end type
  223. type cbx_1 from checkbox within w_rp_sale_contrast
  224. integer x = 1979
  225. integer y = 104
  226. integer width = 384
  227. integer height = 64
  228. boolean bringtotop = true
  229. integer textsize = -9
  230. integer weight = 400
  231. fontcharset fontcharset = gb2312charset!
  232. fontpitch fontpitch = variable!
  233. string facename = "宋体"
  234. long textcolor = 33554432
  235. long backcolor = 134217739
  236. string text = "按月份对比"
  237. boolean checked = true
  238. end type
  239. event clicked;if this.checked then
  240. cur_contrastflag = 1
  241. else
  242. cur_contrastflag = 0
  243. end if
  244. cb_1.triggerevent(clicked!)
  245. end event
  246. event constructor;This.BackColor = 14215660
  247. end event
  248. type ddlb_1 from dropdownlistbox within w_rp_sale_contrast
  249. integer x = 1975
  250. integer y = 8
  251. integer width = 1211
  252. integer height = 556
  253. integer taborder = 120
  254. boolean bringtotop = true
  255. integer textsize = -9
  256. integer weight = 400
  257. fontcharset fontcharset = gb2312charset!
  258. fontpitch fontpitch = variable!
  259. string facename = "宋体"
  260. long textcolor = 33554432
  261. string text = "客户销售金额对比表"
  262. boolean sorted = false
  263. boolean vscrollbar = true
  264. string item[] = {"客户销售金额对比表","产品销售金额对比表","产品+配置销售金额对比表","产品+配置+配置1+配置2销售金额对比表"}
  265. borderstyle borderstyle = stylelowered!
  266. end type
  267. event selectionchanged;IF Trim(This.Text) = "客户销售金额对比表" THEN
  268. dw_1.DataObject = "dw_rp_sale_contrast_1"
  269. tv_1.Visible = True
  270. tv_2.Visible = False
  271. ls_handtype = ''
  272. ib_ChgReport = true
  273. tv_1.SelectItem(1)
  274. ib_ChgReport = false
  275. ELSEIF Trim(This.Text) = "产品销售金额对比表" THEN
  276. dw_1.DataObject = "dw_rp_sale_contrast_3"
  277. tv_1.Visible = False
  278. tv_2.Visible = True
  279. ls_handtype = ''
  280. ib_ChgReport = true
  281. tv_2.SelectItem(1)
  282. ib_ChgReport = false
  283. ELSEIF Trim(This.Text) = "产品+配置销售金额对比表" THEN
  284. dw_1.DataObject = "dw_rp_sale_contrast_2"
  285. tv_1.Visible = False
  286. tv_2.Visible = True
  287. ls_handtype = ''
  288. ib_ChgReport = true
  289. tv_2.SelectItem(1)
  290. ib_ChgReport = false
  291. ELSEIF Trim(This.Text) = "产品+配置+配置1+配置2销售金额对比表" THEN
  292. dw_1.DataObject = "dw_rp_sale_contrast_4"
  293. tv_1.Visible = False
  294. tv_2.Visible = True
  295. ls_handtype = ''
  296. ib_ChgReport = true
  297. tv_2.SelectItem(1)
  298. ib_ChgReport = false
  299. END IF
  300. //dw_1.SetTransObject(sqlca)
  301. wf_replacedw()
  302. cb_1.TriggerEvent(Clicked!)
  303. end event
  304. type st_1 from statictext within w_rp_sale_contrast
  305. integer y = 208
  306. integer width = 128
  307. integer height = 48
  308. boolean bringtotop = true
  309. integer textsize = -9
  310. integer weight = 400
  311. fontcharset fontcharset = gb2312charset!
  312. fontpitch fontpitch = variable!
  313. string facename = "宋体"
  314. long textcolor = 33554432
  315. long backcolor = 134217739
  316. string text = "分部"
  317. alignment alignment = right!
  318. boolean focusrectangle = false
  319. end type
  320. type tv_1 from uo_tv_cusarea within w_rp_sale_contrast
  321. integer y = 304
  322. integer width = 800
  323. integer height = 1008
  324. integer taborder = 20
  325. boolean bringtotop = true
  326. integer textsize = -9
  327. fontcharset fontcharset = gb2312charset!
  328. fontfamily fontfamily = anyfont!
  329. string facename = "宋体"
  330. end type
  331. event selectionchanged;call super::selectionchanged;
  332. ls_handtype = This.uo_cur_info.areaname
  333. ls_handtype = ls_handtype + '%'
  334. IF Not ib_ChgReport THEN
  335. cb_1.TriggerEvent(Clicked!)
  336. END IF
  337. end event
  338. type tv_2 from uo_tv_mtrltype within w_rp_sale_contrast
  339. integer y = 460
  340. integer width = 800
  341. integer height = 1120
  342. integer taborder = 80
  343. boolean bringtotop = true
  344. integer textsize = -9
  345. fontcharset fontcharset = gb2312charset!
  346. fontfamily fontfamily = anyfont!
  347. string facename = "宋体"
  348. end type
  349. event selectionchanged;call super::selectionchanged;ls_handtype = This.uo_cur_info.handtype
  350. ls_handtype = ls_handtype + '%'
  351. IF Not ib_ChgReport THEN
  352. cb_1.TriggerEvent(Clicked!)
  353. END IF
  354. end event
  355. type st_2 from statictext within w_rp_sale_contrast
  356. integer x = 773
  357. integer y = 208
  358. integer width = 146
  359. integer height = 48
  360. boolean bringtotop = true
  361. integer textsize = -9
  362. integer weight = 400
  363. fontcharset fontcharset = gb2312charset!
  364. fontpitch fontpitch = variable!
  365. string facename = "宋体"
  366. long textcolor = 33554432
  367. long backcolor = 134217739
  368. string text = "仓库"
  369. alignment alignment = right!
  370. boolean focusrectangle = false
  371. end type
  372. type ddlb_2 from uo_ddlb_storageid within w_rp_sale_contrast
  373. integer x = 946
  374. integer y = 192
  375. integer width = 681
  376. integer height = 1108
  377. integer taborder = 30
  378. boolean bringtotop = true
  379. end type
  380. event constructor;call super::constructor;cur_storageid_arr = this.uo_storageid_arr
  381. end event
  382. event selectionchanged;call super::selectionchanged;cur_storageid_arr = this.uo_storageid_arr
  383. cb_1.triggerevent(clicked!)
  384. end event
  385. type ddlb_scid from uo_ddlb_scid within w_rp_sale_contrast
  386. integer x = 137
  387. integer y = 192
  388. integer width = 622
  389. integer height = 556
  390. integer taborder = 100
  391. boolean bringtotop = true
  392. end type
  393. event constructor;call super::constructor;cur_scid_arr = THIS.uo_scid_arr
  394. end event
  395. event selectionchanged;call super::selectionchanged;
  396. cur_scid_arr = THIS.uo_scid_arr
  397. cb_1.triggerevent(clicked!)
  398. end event