Ejemplo n.º 1
0
        private void oTree1_TreeItemSelected(object sender, TreeItemEventArgs e)
        {
            //this.node = e.Node.PrevNode
            OrObsAandLabDTO tree = oTree1.GetUserObject(e.Node) as OrObsAandLabDTO;

            this.FireSelected(tree);
        }
Ejemplo n.º 2
0
        void otree_TreeItemSelected(object sender, xap.rui.control.tree.events.TreeItemEventArgs e)
        {
            OrObsAandLabDTO labdto = this.otree.FocusedUserObject as OrObsAandLabDTO;

            if (labdto == null)
            {
                return;
            }
            this.FireSelected(labdto);
        }
Ejemplo n.º 3
0
 public void UpdatePatientInfo(object sender, DictionaryEventArgs eventArgs)
 {
     model.AggDo = null;
     labdto = null;
     title.ValueText = "";
     appno.ValueText = "";
     repdate.ValueText = "";
     status.ValueText = "";
     if (Created)
         LoadData();
 }
Ejemplo n.º 4
0
 public void UpdatePatientInfo(object sender, DictionaryEventArgs eventArgs)
 {
     this.model.CiRptObsDo  = null;
     this.labdto            = null;
     this.title.ValueText   = "";
     this.appno.ValueText   = "";
     this.repdate.ValueText = "";
     this.status.ValueText  = "";
     if (Created)
     {
         this.LoadData();
     }
 }
Ejemplo n.º 5
0
 public override void OnSelected(object sender, TargetEventArgs e)
 {
     if (sender == this) //del
         return;
     //obsDTO = e.Object as OrObsAandLabDTO;
     labdto = e.Object as OrObsAandLabDTO;
     if (labdto != null)
     {
         if (Created)
         {
             LoadData();
         }
     }
 }
Ejemplo n.º 6
0
 public void setPatholdto(string id_or, string type)
 {
     this.pathgydto = this.model.GetObsAandLabDto(id_or, type);
 }
Ejemplo n.º 7
0
 public void setlabdto(string id_or, string type)
 {
     labdto = this.model.GetObsAandLabDto(id_or, type);
 }
Ejemplo n.º 8
0
        /// <summary>
        ///     通过医嘱获取检查检验明细
        /// </summary>
        public OrObsAandLabDTO GetObsAandLabDto(string id_or, string type)
        {
            OrObsAandLabDTO obsAandLabDto = qryservice.getObsAndLabDto(id_or, type);

            return(obsAandLabDto);
        }
Ejemplo n.º 9
0
 public void setlabdto(string id_or, string type, CliTestView testView)
 {
     this.TestView = testView;
     labdto=this.model.GetObsAandLabDto(id_or, type);
 }