2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using Tanshu.Accounts.Helpers;
|
|
|
|
|
using Tanshu.Accounts.Print;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
|
using Tanshu.Accounts.BI;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.PointOfSale
|
|
|
|
|
{
|
|
|
|
|
public partial class RecieveAdvanceForm : Form
|
|
|
|
|
{
|
|
|
|
|
bool loading = true;
|
|
|
|
|
public RecieveAdvanceForm()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void btnAdd_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (Convert.ToDecimal(txtAmount.Text) == 0)
|
|
|
|
|
return;
|
|
|
|
|
AdvanceBO adv = new AdvanceBO();
|
|
|
|
|
adv.Narration = txtNarration.Text;
|
|
|
|
|
adv.Amount = Convert.ToDecimal(txtAmount.Text.Trim());
|
|
|
|
|
adv.CashierIn = new Guid(txtCashier.Tag.ToString());
|
|
|
|
|
adv.DateIn = DateTime.Now;
|
|
|
|
|
new AdvanceBI().Insert(adv);
|
|
|
|
|
GridBind();
|
|
|
|
|
PrintAdvances();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void RecieveAdvanceForm_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
dtpFrom.Format = DateTimePickerFormat.Custom;
|
|
|
|
|
dtpFrom.CustomFormat = "dd-MMM-yyyy";
|
|
|
|
|
dtpFrom.Value = DateTime.Now;
|
|
|
|
|
dtpTo.Format = DateTimePickerFormat.Custom;
|
|
|
|
|
dtpTo.CustomFormat = "dd-MMM-yyyy";
|
|
|
|
|
dtpTo.Value = DateTime.Now;
|
2011-01-06 07:17:00 +00:00
|
|
|
|
txtCashier.Text = Session.User.Name;
|
|
|
|
|
txtCashier.Tag = Session.User.UserID;
|
2010-03-02 17:56:21 +00:00
|
|
|
|
loading = false;
|
|
|
|
|
GridBind();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void GridBind()
|
|
|
|
|
{
|
|
|
|
|
List<AdvanceDisplayBO> advance = new AdvanceBI().GetAdvances(dtpFrom.Value, dtpTo.Value, true);
|
|
|
|
|
dgExpenses.DataSource = advance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dtpFrom_ValueChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!loading)
|
|
|
|
|
GridBind();
|
|
|
|
|
}
|
|
|
|
|
private void PrintAdvances()
|
|
|
|
|
{
|
2011-01-17 14:55:43 +00:00
|
|
|
|
Thermal.PrintAdvance(Session.User.Name, txtAmount.Text.Trim(), txtNarration.Text.Trim());
|
2010-03-02 17:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
private string AddDate(string SqlStringP, DateTime FromDate, DateTime ToDate)
|
|
|
|
|
{
|
|
|
|
|
return SqlStringP.Replace("$From$", string.Format(FromDate.ToString(), "dd-MMM-yyyy" + " 05:00:00")).Replace("$To$", string.Format(ToDate.ToString(), "dd-MMM-yyyy" + " 23:59:59"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void txtAmount_TextChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void txtAmount_Leave(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (txtAmount.Text.Trim() == "")
|
|
|
|
|
{
|
|
|
|
|
txtAmount.Focus();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|