12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- $PBExportHeader$m_rsgz_fz.srm
- forward
- global type m_rsgz_fz from menu
- end type
- type m_0 from menu within m_rsgz_fz
- end type
- type m_1 from menu within m_rsgz_fz
- end type
- global type m_rsgz_fz from menu
- m_0 m_0
- m_1 m_1
- end type
- end forward
- global type m_rsgz_fz from menu
- m_0 m_0
- m_1 m_1
- end type
- global m_rsgz_fz m_rsgz_fz
- on m_rsgz_fz.create
- m_rsgz_fz=this
- call super::create
- this.text = "m_rsgz_fz"
- this.m_0=create m_0
- this.m_1=create m_1
- this.Item[UpperBound(this.Item)+1]=this.m_0
- this.Item[UpperBound(this.Item)+1]=this.m_1
- end on
- on m_rsgz_fz.destroy
- call super::destroy
- destroy(this.m_0)
- destroy(this.m_1)
- end on
- type m_0 from menu within m_rsgz_fz
- end type
- event clicked;f_sys_main(329)
- end event
- on m_0.create
- call super::create
- this.text = "扣费品单"
- end on
- on m_0.destroy
- call super::destroy
- end on
- type m_1 from menu within m_rsgz_fz
- end type
- on m_1.create
- call super::create
- this.text = "借支单"
- end on
- on m_1.destroy
- call super::destroy
- end on
- event clicked;f_sys_main(721)
- end event
|