本文整理汇总了C#中bycar.DataAccess.getProfileBankAccountCurrent方法的典型用法代码示例。如果您正苦于以下问题:C# DataAccess.getProfileBankAccountCurrent方法的具体用法?C# DataAccess.getProfileBankAccountCurrent怎么用?C# DataAccess.getProfileBankAccountCurrent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bycar.DataAccess
的用法示例。
在下文中一共展示了DataAccess.getProfileBankAccountCurrent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Window_Activated
//.........这里部分代码省略.........
case 6:
mnth = "июня";
break;
case 7:
mnth = "июля";
break;
case 8:
mnth = "августа";
break;
case 9:
mnth = "сентября";
break;
case 10:
mnth = "октября";
break;
case 11:
mnth = "ноября";
break;
case 12:
mnth = "декабря";
break;
}
strDate += " " + mnth + " " + Outgo.InvoiceDate.Value.Year + " г.";
data.ReportDocumentValues.Add("ReportDate", strDate); // print date is now
data.ReportDocumentValues.Add("TTS", asum);
settings_profile profile = da.getProfileCurrent();
ProfileBankAccountView ProfileBankAccount = da.getProfileBankAccountCurrent();
string w1 = "не указано";
string w2 = "не указано";
string w3 = "не указано";
if (ProfileBankAccount != null)
{
w1 = ProfileBankAccount.BankAccount; ;
w2 = ProfileBankAccount.BankName;
w3 = ProfileBankAccount.BankMFO;
}
//string p1 = profile.CompanyName + ", " + profile.AddressJur + ", УНП " + Regex.Replace(profile.UNN, " +", " ");
//p1 = Regex.Replace(p1, " +", " ");
// ПРАВИЛЬНЫЕ ПАРАМЕТРЫ
invoice inv = Outgo;
string q1 = profile.CompanyName + ", " + profile.AddressJur + ", УНН:" + profile.UNN;
data.ReportDocumentValues.Add("p1", q1);
string q2 = w1;
data.ReportDocumentValues.Add("p2", q2);
string q3 = w2 + ", МФО:" + w3;
data.ReportDocumentValues.Add("p3", q3);
string q4 = profile.CompanyName;
data.ReportDocumentValues.Add("p4", q4);
string q5 = profile.LoadPoint;
data.ReportDocumentValues.Add("p5", q5);
string q6 = inv.AccountName + ", " + inv.AccountAddress + ", УНН:" + inv.AccountUNN;
data.ReportDocumentValues.Add("p6", q6);
string BankAccount = "р/с не указан";
if (inv.BankAccountID != null)
{
BankAccountView ba = da.BankAccountView(inv.BankAccountID.Value);