123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- $PBExportHeader$w_oppose_item_edit.srw
- forward
- global type w_oppose_item_edit from w_publ_edit_choice
- end type
- type cb_view from uo_imflatbutton within w_oppose_item_edit
- end type
- end forward
- global type w_oppose_item_edit from w_publ_edit_choice
- integer width = 1586
- integer height = 1544
- string title = "投诉项目"
- boolean minbox = true
- windowtype windowtype = popup!
- cb_view cb_view
- end type
- global w_oppose_item_edit w_oppose_item_edit
- on w_oppose_item_edit.create
- int iCurrent
- call super::create
- this.cb_view=create cb_view
- iCurrent=UpperBound(this.Control)
- this.Control[iCurrent+1]=this.cb_view
- end on
- on w_oppose_item_edit.destroy
- call super::destroy
- destroy(this.cb_view)
- end on
- type cb_func from w_publ_edit_choice`cb_func within w_oppose_item_edit
- end type
- type cb_exit from w_publ_edit_choice`cb_exit within w_oppose_item_edit
- end type
- type cb_add from w_publ_edit_choice`cb_add within w_oppose_item_edit
- end type
- event cb_add::clicked;call super::clicked;if not f_power_ind(283) then
- messagebox('提示','你没有使用权限!', Information!, OK! )
- return
- end if
- long ll_newid,i
- string errmsg
- IF dw_edit_mode THEN
- dw_uc.accepttext()
- if dw_uc.GetNextModified(0, Primary!)=0 then
- MESSAGEBOX('提示','没有任何修改,不可以保存!', Information!, OK! )
- RETURN
- end if
- DW_UC.OBJECT.itemname[DW_UC.GETROW()]=TRIM(DW_UC.OBJECT.itemname[DW_UC.GETROW()])
-
-
- IF DW_UC.OBJECT.itemname[DW_UC.GETROW()]='' THEN
- MESSAGEBOX('提示','请输入项目名称!', Information!, OK! )
- RETURN
- END IF
-
- if dw_uc.object.itemid[dw_uc.getrow()]=0 then
- ll_newid=f_sys_scidentity(0,"u_oppose_item","itemid",errmsg,false,sqlca)
- if ll_newid<=0 then
- messagebox('提示',errmsg, Information!, OK! )
- return
- else
- dw_uc.object.itemid[DW_UC.GETROW()]=ll_newid
- end if
- end if
- end if
- IF dw_edit_mode THEN
- string ls_errmsg
- if dw_UC.Update() = -1 then
- if pos(ins_sqlerrtext,"Cannot insert duplicate key row")>0 then
- ls_errmsg="关键内容重复"
- else
- ls_errmsg="因为网络或其他原因>"+ins_sqlerrtext
- end if
- rollback;
- MessageBox ('提示',ls_errmsg+",保存操作失败!", Information!, OK! )
- LS_UPDATE_FLAG=FALSE
- RETURN
- else
- commit;
- for i=1 to 4
- dw_UC.SetTabOrder ( i, 0 )
- next
- LS_UPDATE_FLAG=TRUE
- end if
- ins_sqlerrtext=""
- ELSE
- long li_row, li_cur_row
- li_cur_row = dw_UC.GetRow()
- li_row = dw_UC.InsertRow (0)
- for i=1 to 4
- dw_UC.SetTabOrder ( i, i*10 )
- next
- dw_uc.selectrow(0,false)
- dw_UC.ScrollToRow (li_row)
- dw_uc.selectrow(li_row,true)
- dw_UC.SetFocus()
- modifyrow_no= li_row
- END IF
- dw_edit_mode= NOT dw_edit_mode
- WF_FACE_CHANGE()
- end event
- type cb_edit from w_publ_edit_choice`cb_edit within w_oppose_item_edit
- end type
- event cb_edit::clicked;call super::clicked;if not f_power_ind(283) then
- messagebox('提示','你没有使用权限!', Information!, OK! )
- return
- end if
- Long i
- IF dw_edit_mode THEN
- IF dw_uc.GetItemStatus(dw_uc.GetRow(), 0, Primary!) = NewModified! OR dw_uc.GetItemStatus(dw_uc.GetRow(), 0, Primary!) = New! THEN
- dw_uc.DeleteRow(dw_uc.GetRow())
- ELSE
- dw_uc.ReselectRow(dw_uc.GetRow())
- END IF
- FOR i = 1 TO 4
- dw_uc.SetTabOrder ( i, 0 )
- NEXT
- modifyrow_no = 0
- ELSE
- modifyrow_no = dw_uc.GetRow()
- FOR i = 1 TO 4
- dw_uc.SetTabOrder ( i, i*10 )
- NEXT
- dw_uc.SetFocus()
-
- dw_uc.SelectRow(0,FALSE)
- dw_uc.ScrollToRow (modifyrow_no)
- dw_uc.SelectRow(modifyrow_no,TRUE)
-
- END IF
- dw_edit_mode = NOT dw_edit_mode
- WF_FACE_CHANGE()
- end event
- type cb_delet from w_publ_edit_choice`cb_delet within w_oppose_item_edit
- end type
- event cb_delet::clicked;call super::clicked;if not f_power_ind(283) then
- messagebox('提示','你没有使用权限!', Information!, OK! )
- return
- end if
- IF MessageBox ('提示',"是否确定要删除当前记录?(选择确定后记录将不可恢复)",Question!,YesNo! ) = 2 THEN
- RETURN
- END IF
- string arg_msg
- IF DW_UC.GETROW()<=0 THEN
- MESSAGEBOX('提示','没有操作目标记录!', Information!, OK! )
- RETURN
- END IF
- long LS_LONG,ll_itemid
- ll_itemid = DW_UC.object.itemid[DW_UC.GETROW()]
- LS_LONG = 0
- SELECT COUNT(*) INTO :LS_LONG FROM u_oppose Where itemid = :ll_itemid ;
- IF SQLCA.SQLCode <> 0 THEN
- MessageBox ("提示","数据查询操作失败!(请重试!)", Information!, OK! )
- RETURN
- END IF
- IF LS_LONG > 0 THEN
- MessageBox ("提示","该资料已经使用于投诉单,不可以删除!", Information!, OK! )
- RETURN
- END IF
- dw_uc.SetRedraw (false)
- dw_UC.DeleteRow (0)
- dw_UC.TriggerEvent (rowfocuschanged!)
- if dw_UC.Update() = -1 then
- rollback;
- MessageBox ('提示',"删除记录操作失败!",Exclamation!,OK!)
- else
- commit;
- end if
- dw_uc.SetRedraw (true)
- end event
- type cb_choice from w_publ_edit_choice`cb_choice within w_oppose_item_edit
- boolean visible = false
- integer x = 1248
- boolean enabled = false
- end type
- type dw_uc from w_publ_edit_choice`dw_uc within w_oppose_item_edit
- integer width = 1559
- string dataobject = "dw_oppose_item"
- end type
- type cb_rtr from w_publ_edit_choice`cb_rtr within w_oppose_item_edit
- end type
- type cb_help from w_publ_edit_choice`cb_help within w_oppose_item_edit
- end type
- type ln_bar from w_publ_edit_choice`ln_bar within w_oppose_item_edit
- integer endx = 1563
- end type
- type ln_bar2 from w_publ_edit_choice`ln_bar2 within w_oppose_item_edit
- integer endx = 1563
- end type
- type r_bar from w_publ_edit_choice`r_bar within w_oppose_item_edit
- integer x = 1426
- end type
- type cb_view from uo_imflatbutton within w_oppose_item_edit
- integer x = 837
- integer width = 151
- integer height = 164
- integer taborder = 30
- boolean bringtotop = true
- string text = "预览"
- string normalpicname = "preview.bmp"
- integer picsize = 16
- toolbaralignment pic_align = alignattop!
- boolean border = false
- end type
- event clicked;call super::clicked;S_print_MSG LS_PRMSG
- LS_PRMSG.obj_dwNAME = 'dw_rp_oppose_item'
- LS_PRMSG.SHARE_DW = DW_UC
- LS_PRMSG.TAG_TEXT = parent.title
- LS_PRMSG.SETUP_FLAG = 0
- LS_PRMSG.PAGECH_FLAG = 1
- OpenWithParm(w_publ_preview,LS_PRMSG)
- end event
|