Method PostInvoices

Summary

Get list of invoices for a vendor

Remarks

Returns all invoices for a vendor.

Input Parameters

NameTypeLengthDescription
vendorNumber numeric 7 [Required] Vendor number. This must be an approved vendor (7-digit), not a non-system vendor (10-digit).
rows numeric 4 Number of rows to return
pageNumber numeric 5 Page number. Used with rows for paging of results

Example

POST http://localhost/FusionServices/v3/Naviline/ProductInventory/Invoices

Sample Responses

Sample Code

using System.Net;
using Newtonsoft.Json.Linq;

public void MethodName(parms)
{
   string uri = "http://localhost/FusionServices/v3/Naviline/ProductInventory/Invoices";
   System.Collections.Specialized.NameValueCollection postParms = 
     new System.Collections.Specialized.NameValueCollection(); 
   // Set paramater values
   postParms.Add("vendorNumber",System.Web.HttpUtility.UrlEncode("843"));

   WebClient req = new WebClient();
   wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
   wc.Headers.Set("X-APPID", "YOURID");
   wc.Headers.Set("X-APPKEY", "YOURKEY");

   byte[] responseBytes = wc.UploadValues(new Uri(uri), "POST", postParms);
   string stringResult = Encoding.UTF8.GetString(responseBytes); 
   JObject response = JObject.Parse(stringResult);
   string error = response["OutputParms"]["ErrorCode"].ToString();
   if (error == "0000")
   {
        JArray jRows = (JArray)response["Rows"];
        foreach (JObject row in jRows)
        {
             string InvoiceNumber = row["InvoiceNumber"].ToString();
             string TransmissionMonth = row["TransmissionMonth"].ToString();
             string TransmissionDay = row["TransmissionDay"].ToString();
             string TransmissionYear = row["TransmissionYear"].ToString();
             string TransactionAmount = row["TransactionAmount"].ToString();
             string PaymentNumber = row["PaymentNumber"].ToString();
             string PaymentMonth = row["PaymentMonth"].ToString();
             string PaymentDay = row["PaymentDay"].ToString();
             string PaymentYear = row["PaymentYear"].ToString();
             string PurchaseOrderNumber = row["PurchaseOrderNumber"].ToString();
             string BatchNumber = row["BatchNumber"].ToString();
             string TransactionNumber = row["TransactionNumber"].ToString();
             string AccountingPeriodYear = row["AccountingPeriodYear"].ToString();
             string AccountingPeriodMonth = row["AccountingPeriodMonth"].ToString();
             // TODO - YOUR CODE HERE
        }
   }
}

C# Razor MVC Sample Code

using System;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.Collections.Specialized;
using FusionServiceHelper.Models;

// NOTE: Use the namespace generated when you add the class, so that it is correct.
namespace FusionRazor.Models
{
   public class PostInvoices
   {
       // Add property for each input param in order to map a field to it
       [Required(ErrorMessage = "Required")]
       [RegularExpression("[0-9]{0,7}", ErrorMessage = "Numeric values only. Must be 7 digits or less. ")]
       public string vendorNumber{get; set;}

       [RegularExpression("[0-9]{0,4}", ErrorMessage = "Numeric values only. Must be 4 digits or less. ")]
       public string rows{get; set;}

       [RegularExpression("[0-9]{0,5}", ErrorMessage = "Numeric values only. Must be 5 digits or less. ")]
       public string pageNumber{get; set;}

       public PostInvoices()
       {
           //Set any defaults here
       }
   }
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostInvoices class. *@
@* NOTE: Select Edit as the Scaffold template. *@
@* NOTE: Use the @model line that is generated at the top.  Replace the rest with the lines below.
@model FusionRazor.Models.PostInvoices

@{
   ViewBag.Title = "PostInvoices";
}

<h2>PostInvoices</h2>
@using (Html.BeginForm()) {
   @Html.AntiForgeryToken()
   @Html.ValidationSummary(true)
   <fieldset>
   <legend>PostInvoices</legend>
       <div class="editor-label">
           @Html.LabelFor(model => model.vendorNumber)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.vendorNumber)
           @Html.ValidationMessageFor(model => model.vendorNumber)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.rows)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.rows)
           @Html.ValidationMessageFor(model => model.rows)
       </div>
       <div class="editor-label">
           @Html.LabelFor(model => model.pageNumber)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.pageNumber)
           @Html.ValidationMessageFor(model => model.pageNumber)
       </div>
       <p>
       <input type="submit" value="Submit"/>
       </p>
   </fieldset>

}

@section Scripts {
   @Scripts.Render("~/bundles/jqueryval")
}
using System;
using System.Collections.Specialized;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using FusionServiceHelper.Models;

// NOTE: Replace 'MyController' with the name of your controller.

// 
// GET: /MyController/PostInvoices
public ActionResult PostInvoices()
{
   // Create a new instance of the model to pick up any default values.
   PostInvoices model =  new PostInvoices();

   // pass model to set to default values
   // NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
   return View("~/Views/MyFolderPath/PostInvoices.cshtml", model);
}

// 
// POST: /MyController/PostInvoices
[HttpPost]
public ActionResult PostInvoices(FormCollection collection)
{
   string url = "v3/Naviline/ProductInventory/Invoices";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();
   inputParms.Add("vendorNumber", collection["vendorNumber"]);
   inputParms.Add("rows", collection["rows"]);
   inputParms.Add("pageNumber", collection["pageNumber"]);

   try
   {
       // Send the request
       FusionServiceRequest request = new FusionServiceRequest();
       FusionServiceResult result = request.Post(url, inputParms);

       return View("Result", result);
   }
   catch(Exception e)
   {
       HandleErrorInfo info = new HandleErrorInfo(e, "MyController", "PostInvoices");
       return View("Error", info);
   }
}