This commit is contained in:
2022-06-30 22:55:06 +00:00
parent 4d5c92338e
commit aa4f17416f
6 changed files with 556 additions and 509 deletions

View File

@@ -33,6 +33,13 @@ namespace AyaNovaQBI
}
else
{
//Confirm main settings and set any that are missing:
if (await util.ValidateSettings(false) == util.pfstat.Cancel)
{
await util.IntegrationLog("PFC: User settings not completed, user selected cancel");
Close();
}
//check if setup is required
if (util.QBIntegration.Items.Count == 0)
{
@@ -100,5 +107,11 @@ namespace AyaNovaQBI
{
MessageBox.Show("STUB: REFRESH INVOICES");
}
private async void preferencesToolStripMenuItem_Click(object sender, EventArgs e)
{
await util.ValidateSettings(true);
//TODO: CODE THIS InitInvoices();
}
}
}