Breaking Changes. Upgrade Script in Sql directory. Deployed
This commit is contained in:
@ -10,14 +10,14 @@ using Tanshu.Accounts.Entities;
|
||||
|
||||
namespace Tanshu.Accounts.PointOfSale
|
||||
{
|
||||
public partial class AdjustAdvanceForm : Form
|
||||
public partial class frmAdjustAdvance : Form
|
||||
{
|
||||
bool loading = true;
|
||||
public AdjustAdvanceForm()
|
||||
public frmAdjustAdvance()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
private void AdjustAdvancesForm_Load(object sender, EventArgs e)
|
||||
private void frmAdjustAdvance_Load(object sender, EventArgs e)
|
||||
{
|
||||
dtpFrom.Format = DateTimePickerFormat.Custom;
|
||||
dtpFrom.CustomFormat = "dd-MMM-yyyy";
|
||||
@ -1,6 +1,6 @@
|
||||
namespace Tanshu.Accounts.PointOfSale
|
||||
{
|
||||
partial class AdjustAdvanceForm
|
||||
partial class frmAdjustAdvance
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
@ -212,7 +212,7 @@
|
||||
this.dgExpenses.Size = new System.Drawing.Size(378, 356);
|
||||
this.dgExpenses.TabIndex = 112;
|
||||
//
|
||||
// AdjustAdvanceForm
|
||||
// frmAdjustAdvance
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
@ -236,10 +236,10 @@
|
||||
this.Controls.Add(this.dtpFrom);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "AdjustAdvanceForm";
|
||||
this.Name = "frmAdjustAdvance";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Payment Details";
|
||||
this.Load += new System.EventHandler(this.AdjustAdvancesForm_Load);
|
||||
this.Load += new System.EventHandler(this.frmAdjustAdvance_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.dgExpenses)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
@ -9,10 +9,10 @@ using Tanshu.Accounts.Entities;
|
||||
|
||||
namespace Tanshu.Accounts.PointOfSale
|
||||
{
|
||||
public partial class RecieveAdvanceForm : Form
|
||||
public partial class frmRecieveAdvance : Form
|
||||
{
|
||||
bool loading = true;
|
||||
public RecieveAdvanceForm()
|
||||
public frmRecieveAdvance()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
@ -32,7 +32,7 @@ namespace Tanshu.Accounts.PointOfSale
|
||||
}
|
||||
|
||||
|
||||
private void RecieveAdvanceForm_Load(object sender, EventArgs e)
|
||||
private void frmRecieveAdvance_Load(object sender, EventArgs e)
|
||||
{
|
||||
dtpFrom.Format = DateTimePickerFormat.Custom;
|
||||
dtpFrom.CustomFormat = "dd-MMM-yyyy";
|
||||
@ -1,6 +1,6 @@
|
||||
namespace Tanshu.Accounts.PointOfSale
|
||||
{
|
||||
partial class RecieveAdvanceForm
|
||||
partial class frmRecieveAdvance
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
@ -204,7 +204,7 @@
|
||||
this.dgExpenses.Size = new System.Drawing.Size(378, 356);
|
||||
this.dgExpenses.TabIndex = 110;
|
||||
//
|
||||
// RecieveAdvanceForm
|
||||
// frmRecieveAdvance
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
@ -226,10 +226,10 @@
|
||||
this.Controls.Add(this.dtpTo);
|
||||
this.Controls.Add(this.dtpFrom);
|
||||
this.MaximizeBox = false;
|
||||
this.Name = "RecieveAdvanceForm";
|
||||
this.Name = "frmRecieveAdvance";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Received Advance";
|
||||
this.Load += new System.EventHandler(this.RecieveAdvanceForm_Load);
|
||||
this.Load += new System.EventHandler(this.frmRecieveAdvance_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.dgExpenses)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
Reference in New Issue
Block a user