In this article, we will learn how to add a bill in Quickbooks online from .NET MVC web application using SDK.
Before using any Quickbooks online API we need access token, if you don’t know how to get access token then you can find it here.
VendorRef and Line elements are required for creating a bill, we will use these two required elements for creating a bill.
We have to give the vendor reference in VendorRef, and account reference in Line.
Account must be already added in Quickbooks before adding it to the bill.
Let’s create a Bill.
public ActionResult CreateBill() { try { OAuth2RequestValidator oauthValidator = new OAuth2RequestValidator(Access_token); // Create a ServiceContext with Auth tokens and realmId ServiceContext serviceContext = new ServiceContext(RealmId, IntuitServicesType.QBO, oauthValidator); serviceContext.IppConfiguration.MinorVersion.Qbo = "23"; serviceContext.IppConfiguration.BaseUrl.Qbo = QboBaseUrl; Bill ObjBill = new Bill(); ObjBill.VendorRef = new ReferenceType(); ObjBill.VendorRef.Value = "60";//Quickbooks online Vendor Id List<Line> LineList = new List<Line>(); Line objLine = new Line(); objLine.DetailTypeSpecified = true; objLine.DetailType = LineDetailTypeEnum.AccountBasedExpenseLineDetail; objLine.AmountSpecified = true; objLine.Amount = 100; AccountBasedExpenseLineDetail ItemLineDetail = new AccountBasedExpenseLineDetail(); ItemLineDetail.AccountRef = new ReferenceType(); ItemLineDetail.AccountRef.Value = "78"; //Quickbooks online Account Id // We can give Account Name insted of Account Id, if we give Account Id and Account Name both then Account name will be ignore. //ItemLineDetail.AccountRef.name = "Purchases"; //Quickbooks online Account Name objLine.AnyIntuitObject = ItemLineDetail; LineList.Add(objLine); ObjBill.Line = LineList.ToArray(); DataService dataService = new DataService(serviceContext); Bill BillAdd = dataService.Add(ObjBill); if (BillAdd != null && !string.IsNullOrEmpty(BillAdd.Id)) { //you can write Database code here ViewBag.IsSuccess = true; } return View(); } catch (IdsException ex) { ViewBag.IsSuccess = false; if (ex.InnerException != null && !string.IsNullOrEmpty(ex.InnerException.Message)) { ViewBag.Message = ex.InnerException.Message; } else if (!string.IsNullOrEmpty(ex.Message)) { ViewBag.Message = ex.Message; } else { ViewBag.Message = "Something went wrong,IdsException occurs"; } return View(); } catch (Exception ex) { ViewBag.IsSuccess = false; if (ex.InnerException != null && !string.IsNullOrEmpty(ex.InnerException.Message)) { ViewBag.Message = ex.InnerException.Message; } else if (!string.IsNullOrEmpty(ex.Message)) { ViewBag.Message = ex.Message; } else { ViewBag.Message = "Something went wrong,Exception occurs"; } return View(); } }
@{ ViewBag.Title = "CreateBill"; } <h2>Create Bill</h2> @if (ViewBag.IsSuccess != null && ViewBag.IsSuccess == true) { <div class="row"> <label class="label label-success"> Bill Created Successfully </label> </div> } else if (ViewBag.IsSuccess != null && ViewBag.IsSuccess == false) { <div class="row"> <label class="label label-danger">@ViewBag.Message</label> </div> }
OUTPUT:(bill preview on Quickbook online)
In this article, we have to show Create and Used PIPE in angular
In this article, we have to show Create and Used PIPE in angular
In this article, we have to show Create and Used PIPE in angular