This commit is contained in:
2022-07-09 23:37:24 +00:00
parent 059546b868
commit ce9278b146
6 changed files with 17 additions and 12 deletions

View File

@@ -12,6 +12,9 @@ namespace AyaNovaQBI
{
public partial class FixInvoiceProblems : Form
{
public List<util.MisMatch> MisMatches { get; set; }
public List<long> PartPriceOverrides { get; set; }
public bool ChangesMade { get; set; } = false;
public FixInvoiceProblems()
{
InitializeComponent();
@@ -19,6 +22,7 @@ namespace AyaNovaQBI
private void FixInvoiceProblems_Load(object sender, EventArgs e)
{
grid.DataSource = MisMatches;
btnOK.Text = util.AyaTranslations["OK"];
}