36 lines
942 B
C#
36 lines
942 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
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();
|
|
}
|
|
|
|
private void FixInvoiceProblems_Load(object sender, EventArgs e)
|
|
{
|
|
grid.DataSource = MisMatches;
|
|
btnOK.Text = util.AyaTranslations["OK"];
|
|
}
|
|
|
|
private void btnOK_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
}
|
|
}
|