Hidden check boxes now update to reflect whether or not they are in need of updating or not.
This commit is contained in:
@@ -2041,6 +2041,7 @@ namespace AdvertsingProfitControl
|
|||||||
var id = status.Id;
|
var id = status.Id;
|
||||||
isCommentDirtyCheckBox.Tag = id;
|
isCommentDirtyCheckBox.Tag = id;
|
||||||
isCommentDirtyCheckBox.Text = @"IsCommentDirty (" + id + @")";
|
isCommentDirtyCheckBox.Text = @"IsCommentDirty (" + id + @")";
|
||||||
|
isCommentDirtyCheckBox.Checked = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -2055,6 +2056,7 @@ namespace AdvertsingProfitControl
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
isCommentDirtyCheckBox.Checked = false;
|
||||||
informationLabel.Text += @"Comment(s) processed successfully.";
|
informationLabel.Text += @"Comment(s) processed successfully.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2087,6 +2089,7 @@ namespace AdvertsingProfitControl
|
|||||||
informationLabel.Text += @"Weekly Sales processed successfully.";
|
informationLabel.Text += @"Weekly Sales processed successfully.";
|
||||||
isWeeklySalesDirtyCheckBox.Tag = status.Id;
|
isWeeklySalesDirtyCheckBox.Tag = status.Id;
|
||||||
isWeeklySalesDirtyCheckBox.Text = @"IsWeeklySalesDirty (" + status.Id + @")";
|
isWeeklySalesDirtyCheckBox.Text = @"IsWeeklySalesDirty (" + status.Id + @")";
|
||||||
|
isWeeklySalesDirtyCheckBox.Checked = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -2099,6 +2102,7 @@ namespace AdvertsingProfitControl
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
isWeeklySalesDirtyCheckBox.Checked = false;
|
||||||
informationLabel.Text += @"Weekly Sales updated successfully.";
|
informationLabel.Text += @"Weekly Sales updated successfully.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2131,6 +2135,7 @@ namespace AdvertsingProfitControl
|
|||||||
informationLabel.Text += @"Taxable processed successfully.";
|
informationLabel.Text += @"Taxable processed successfully.";
|
||||||
isTaxableDirtyCheckBox.Tag = status.Id;
|
isTaxableDirtyCheckBox.Tag = status.Id;
|
||||||
isTaxableDirtyCheckBox.Text = @"IsTaxableDirty (" + status.Id + @")";
|
isTaxableDirtyCheckBox.Text = @"IsTaxableDirty (" + status.Id + @")";
|
||||||
|
isTaxableDirtyCheckBox.Checked = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -2143,6 +2148,7 @@ namespace AdvertsingProfitControl
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
isTaxableDirtyCheckBox.Checked = false;
|
||||||
informationLabel.Text += @"Taxable updated successfully.";
|
informationLabel.Text += @"Taxable updated successfully.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2171,6 +2177,7 @@ namespace AdvertsingProfitControl
|
|||||||
informationLabel.Text += @"Costs analysis processed successfully.";
|
informationLabel.Text += @"Costs analysis processed successfully.";
|
||||||
isCostAnalysisDirtyCheckBox.Tag = status.Id;
|
isCostAnalysisDirtyCheckBox.Tag = status.Id;
|
||||||
isCostAnalysisDirtyCheckBox.Text = @"IsCostAnalysisDirty (" + status.Id + @")";
|
isCostAnalysisDirtyCheckBox.Text = @"IsCostAnalysisDirty (" + status.Id + @")";
|
||||||
|
isCostAnalysisDirtyCheckBox.Checked = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -2183,6 +2190,7 @@ namespace AdvertsingProfitControl
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
isCostAnalysisDirtyCheckBox.Checked = false;
|
||||||
informationLabel.Text += @"Cost analysis updated successfully.";
|
informationLabel.Text += @"Cost analysis updated successfully.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user