예제 #1
0
 private void btnSave_Click(object sender, EventArgs e)
 {
     try
     {
         exp.insSalary(txtName.Text, Convert.ToDouble(txtSal.Text), dateTimePicker1.Value);
         MessageBox.Show("تم العملية بنجاح", "الرواتب", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
         rpt.set_seasonal_disbursements_invo_sal_dis(Convert.ToDouble(txtSal.Text));
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
예제 #2
0
        private void btnSave_Click(object sender, EventArgs e)
        {
            try
            {
                int rAmount; int.TryParse(txtAmountReceived.Text, out rAmount);
                int total; int.TryParse(txtTotal.Text, out total);
                if (txtName.Text == string.Empty)
                {
                    MessageBox.Show("الرجاء ادخال اسم الزبون");
                }
                else if (txtAmountReceived.Text == string.Empty)
                {
                    MessageBox.Show("الرجاء ادخال المبلغ الواصل");
                }
                else if ((totalMoney - rAmount) == 0) // If the invoice is paid
                {
                    //insert the informations of invoive
                    ord.add_order(Convert.ToInt32(txtCusID.Text), txtID.Text, txtNote.Text, Convert.ToDouble(txtTotal.Text),
                                  Convert.ToDouble(rAmount), "YES", bunifuDatepicker1.Value);

                    //insert the detiles of invoive
                    for (int i = 0; i < dataGridView1.Rows.Count - 1; i++)
                    {
                        ord.add_order_detail(Convert.ToInt32(dataGridView1.Rows[i].Cells[0].Value), dataGridView1.Rows[i].Cells[1].Value.ToString(), Convert.ToInt32(txtID.Text)
                                             , Convert.ToInt32(dataGridView1.Rows[i].Cells[3].Value), Convert.ToDouble(dataGridView1.Rows[i].Cells[2].Value)
                                             , Convert.ToDouble(dataGridView1.Rows[i].Cells[4].Value)
                                             );
                    }

                    if (MessageBox.Show("تم الحفظ بنجاح هل تريد طباعة الفاتورة ", "الطباعه", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                    {
                        try
                        {
                            Report.invoice    rpt = new Report.invoice();
                            Report.ReportForm frm = new Report.ReportForm();
                            rpt.SetDataSource(ord.printinvoice(Convert.ToInt32(
                                                                   ord.getLastInvoiceForPrint().Rows[0][0])));
                            frm.crystalReportViewer1.ReportSource = rpt;

                            frm.ShowDialog();
                            //frm.crystalReportViewer1.PrintReport();
                        }
                        catch (Exception ex)
                        {
                            MessageBox.Show(ex.Message);
                        }
                    }
                }
                //if there are debt
                else if ((totalMoney - rAmount) > 1)
                {
                    //insert the informations of invoive
                    ord.add_order(Convert.ToInt32(txtCusID.Text), txtID.Text, txtNote.Text, Convert.ToDouble(txtTotal.Text),
                                  Convert.ToDouble(rAmount), "NO", bunifuDatepicker1.Value);

                    //insert the detiles of invoive
                    for (int i = 0; i < dataGridView1.Rows.Count - 1; i++)
                    {
                        ord.add_order_detail(Convert.ToInt32(dataGridView1.Rows[i].Cells[0].Value), dataGridView1.Rows[i].Cells[1].Value.ToString(), Convert.ToInt32(txtID.Text)
                                             , Convert.ToInt32(dataGridView1.Rows[i].Cells[3].Value), Convert.ToDouble(dataGridView1.Rows[i].Cells[2].Value)
                                             , Convert.ToDouble(dataGridView1.Rows[i].Cells[4].Value)
                                             );
                    }

                    BL.debtClass debt = new BL.debtClass();
                    debt.add_debt_detail(Convert.ToInt32(txtID.Text), Convert.ToInt32(txtCusID.Text)
                                         , Convert.ToDouble(totalMoney - rAmount));


                    if (MessageBox.Show("تم حفظ الفاتورة و الدين هل تريد طباعة الفاتورة", "الطباعه", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                    {
                        try
                        {
                            Report.invoice    rpt = new Report.invoice();
                            Report.ReportForm frm = new Report.ReportForm();
                            rpt.SetDataSource(ord.printinvoice(Convert.ToInt32(
                                                                   ord.getLastInvoiceForPrint().Rows[0][0])));
                            frm.crystalReportViewer1.ReportSource = rpt;

                            frm.ShowDialog();
                            //frm.crystalReportViewer1.PrintReport();
                        }
                        catch (Exception ex)
                        {
                            MessageBox.Show(ex.Message);
                        }
                    }
                }



                // set Seasonal_revenue from invoice

                rpt.set_Seasonal_revenue_from_invoice(totalMoney);

                // coumput Prices of articles

                for (int i = 0; i < dataGridView1.Rows.Count - 1; i++)
                {
                    Seasonal_disbursements += Convert.ToInt32(dataGridView1.Rows[i].Cells[3].Value) *
                                              Convert.ToDouble(rpt.get_purchasing_price(Convert.ToInt32(dataGridView1.Rows[i].Cells[0].Value)).Rows[0][0]);
                }
                // set Seasonal_disbursements
                rpt.set_seasonal_disbursements_invo_sal_dis(Seasonal_disbursements);
                Seasonal_disbursements = 0.0;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }