public Form_Wait_FVI_SLO_Response(string fVI_MessageID, string fVI_UniqueInvoiceID, InvoiceData xInvoiceData, GlobalData.ePaymentType paymentType, string sPaymentMethod, string sAmountReceived, string sToReturn, DateTime_v issue_time)
 {
     InitializeComponent();
     this.fVI_MessageID = fVI_MessageID;
     this.fVI_UniqueInvoiceID = fVI_UniqueInvoiceID;
     this.xInvoiceData = xInvoiceData;
     this.paymentType = paymentType;
     this.sPaymentMethod = sPaymentMethod;
     this.sAmountReceived = sAmountReceived;
     this.sToReturn = sToReturn;
     this.issue_time = issue_time;
 }
Esempio n. 2
0
        public Form_Print_A4(InvoiceData xInvoiceData, GlobalData.ePaymentType paymentType, string sPaymentMethod, long durationType, long duration, DateTime_v issue_time, Navigation xnav)
        {
            InitializeComponent();
            nav = xnav;

            this.m_InvoiceData = xInvoiceData;
            this.paymentType = paymentType;
            this.sPaymentMethod = sPaymentMethod;
            this.issue_time = issue_time;
            this.durationType = durationType;
            this.duration = duration;
            lngRPM.s_Template.Text(lbl_Template, ":");
        }
Esempio n. 3
0
        public Form_Print_A4(InvoiceData xInvoiceData, GlobalData.ePaymentType paymentType, string sPaymentMethod, string sAmountReceived, string sToReturn, DateTime_v issue_time, NavigationButtons.Navigation xnav)
        {
            InitializeComponent();
            nav = xnav;

            this.m_InvoiceData = xInvoiceData;
            this.paymentType = paymentType;
            this.sPaymentMethod = sPaymentMethod;
            this.sAmountReceived = sAmountReceived;
            this.sToReturn = sToReturn;
            this.issue_time = issue_time;

            lngRPM.s_Template.Text(lbl_Template, ":");
        }
Esempio n. 4
0
 public bool Init(byte[] xdoc, InvoiceData xInvoiceData, GlobalData.ePaymentType xpaymentType, string sPaymentMethod, string sAmountReceived, string sToReturn, DateTime_v issue_time)
 {
     m_InvoiceData = xInvoiceData;
     m_Doc = xdoc;
     m_paymentType = xpaymentType;
     m_sPaymentMethod = sPaymentMethod;
     m_sAmountReceived = sAmountReceived;
     m_sToReturn = sToReturn;
     m_issue_time = issue_time;
     string shtml_doc_text = html_doc_text;
     string s = m_InvoiceData.CreateHTML_Invoice(ref shtml_doc_text);
     this.m_webBrowser.DocumentText = s;
     this.m_webBrowser.Refresh();
     this.btn_Print.Enabled = true;
     return true;
 }