private void Print_OnAttachExport(object sender, EventArgs e)
 {
     if (m_print == null || m_Entity == null) return;
     Print print = new Print();
     //B_Finance cEntity = this.ControlToEntity(false) as B_Finance;
     print.SetPrintAttachExport(m_print, m_Entity);
 }
Ejemplo n.º 2
0
        private void Print_OnAttachExport(object sender, EventArgs e)
        {
            if (m_print == null || m_Entity == null)
            {
                return;
            }
            Print print = new Print();

            //B_Finance cEntity = this.ControlToEntity(false) as B_Finance;
            print.SetPrintAttachExport(m_print, m_Entity);
        }
Ejemplo n.º 3
0
        private void ucPrint_OnAttachExport(object sender, EventArgs e)
        {
            Print print = new Print();
            //B_Finance cEntity = new B_Finance();
            //GetFormData(cEntity, Submit.保存);
            B_Finance cEntity = null;

            if (base.IsPreview)
            {
                cEntity = base.EntityData != null ? base.EntityData as B_Finance : new B_Finance();
            }
            else
            {
                cEntity = this.ControlToEntity(false) as B_Finance;
            }
            print.SetPrintAttachExport(ucPrint, cEntity);
        }
 private void ucPrint_OnAttachExport(object sender, EventArgs e)
 {
     Print print = new Print();
     //B_Finance cEntity = new B_Finance();
     //GetFormData(cEntity, Submit.保存);
     B_Finance cEntity = null;
     if (base.IsPreview)
     {
         cEntity = base.EntityData != null ? base.EntityData as B_Finance : new B_Finance();
     }
     else
     {
         cEntity = this.ControlToEntity(false) as B_Finance;
     }
     print.SetPrintAttachExport(ucPrint, cEntity);
 }