This commit is contained in:
2022-07-04 14:05:15 +00:00
parent 0aee758735
commit 11cfe45fef
5 changed files with 375 additions and 96 deletions

View File

@@ -0,0 +1,32 @@
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 SetQBImportServiceRateAccounts : Form
{
public SetQBImportServiceRateAccounts()
{
InitializeComponent();
}
private void SetQBImportServiceRateAccounts_Load(object sender, EventArgs e)
{
btnCancel.Text = util.AyaTranslations["Cancel"];
btnOK.Text = util.AyaTranslations["OK"];
cbIncomeAccount.DisplayMember = "FullName";
cbIncomeAccount.ValueMember = "ID";
cbIncomeAccount.DataSource = util.QBAccounts;
if (!string.IsNullOrEmpty(util.QDat.QBServiceIncomeAccountRef))
cbIncomeAccount.SelectedValue = util.QDat.QBServiceIncomeAccountRef;
}
}
}