本文整理汇总了C#中BusinessObjects.MasterDataBLL.IsOneTimeVendorNull方法的典型用法代码示例。如果您正苦于以下问题:C# MasterDataBLL.IsOneTimeVendorNull方法的具体用法?C# MasterDataBLL.IsOneTimeVendorNull怎么用?C# MasterDataBLL.IsOneTimeVendorNull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BusinessObjects.MasterDataBLL
的用法示例。
在下文中一共展示了MasterDataBLL.IsOneTimeVendorNull方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FillFormByVendorID
public void FillFormByVendorID(int VendorID)
{
MasterData.VendorRow vendorRow = new MasterDataBLL().GetVendorByID(VendorID);
txtVendorName.Text = vendorRow.VendorName;
txtVendorAddress.Text = vendorRow.VendorAddress;
txtCity.Text = vendorRow.City;
txtPostal.Text = vendorRow.Postal;
txtContactName.Text = vendorRow.ContactName;
this.VendorTypeControl.VendorTypeID = vendorRow.VendorTypeID.ToString();
MasterDataBLL ma = new MasterDataBLL();
MasterData.VendorTypeRow VendorTypeRow = ma.GetVendorTypeById(vendorRow.VendorTypeID);
VendorTypeControl.VendorTypeName = VendorTypeRow.VendorTypeName;
txtCurrency.Text = ma.GetCurrencyByID(VendorTypeRow.CurrencyID).CurrencyFullName;
txtCompany.Text = ma.GetCompanyById(VendorTypeRow.CompanyID).CompanyName;
txtCompanyCode.Text = ma.GetCompanyById(VendorTypeRow.CompanyID).CompanyCode;
if (!vendorRow.IsPhoneNumberNull()) {
this.txtPhoneNumber.Text = vendorRow.PhoneNumber;
}
if (!vendorRow.IsOneTimeVendorNull()) {
this.ddlOneTimeVendor.SelectedValue = Convert.ToInt32(vendorRow.OneTimeVendor).ToString();
}
if (!vendorRow.IsHoldVendorNull()) {
this.ddlHoldVendor.SelectedValue = Convert.ToInt32(vendorRow.HoldVendor).ToString();
}
if (!vendorRow.IsPurchaseingPostalCodeNull()) {
this.txtPurchaseingPostalCode.Text = vendorRow.PurchaseingPostalCode;
}
if (!vendorRow.IsAlphaSearchKeyNull()) {
this.txtAlphaSearchKey.Text = vendorRow.AlphaSearchKey;
}
if (!vendorRow.IsPurchasingCityNull()) {
this.txtPurchasingCity.Text = vendorRow.PurchasingCity;
}
if (!vendorRow.IsPurchasingContactNull()) {
this.txtPurchasingContact.Text = vendorRow.PurchasingContact;
}
if (!vendorRow.IsPurchasingAddressNull()) {
this.txtPurchasingAddress.Text = vendorRow.PurchasingAddress;
}
if (!vendorRow.IsPurchasePhoneNumberNull()) {
this.txtPurchasePhoneNumber.Text = vendorRow.PurchasePhoneNumber;
}
this.ddlPaymentTerm.SelectedValue = vendorRow.PaymentTermID.ToString();
if (!vendorRow.IsTransTypeIDNull()) {
this.ddlTransType.SelectedValue = vendorRow.TransTypeID.ToString();
}
this.ddlBankCode.DataBind();
if (!vendorRow.IsBankCodeIDNull()) {
this.ddlBankCode.SelectedValue = vendorRow.BankCodeID.ToString();
}
ddlVatRate.SelectedValue = vendorRow.VATTypeID.ToString();
txtBankName.Text = vendorRow.BankName.ToString();
txtAccountNo.Text = vendorRow.AccountNo;
if (!vendorRow.IsRemarkNull()) {
this.txtRemark.Text = vendorRow.Remark;
}
if (!vendorRow.IsBankNoNull()) {
this.txtBankNo.Text = vendorRow.BankNo;
}
ddlACType.SelectedValue = vendorRow.ACTypeID.ToString();
if (int.Parse(this.ViewState["ActionType"].ToString()) == (int)SystemEnums.VendorActionType.Add) {
this.trModifyReason.Visible = true;
}
if (int.Parse(this.ViewState["ActionType"].ToString()) == (int)SystemEnums.VendorActionType.Delete || int.Parse(this.ViewState["ActionType"].ToString()) == (int)SystemEnums.VendorActionType.Reactive) {
DisableWhenDelete();
}
}