Method PostSearchInvoices

Summary

Search Invoices

Remarks

Infisys (MA) accounting system only. Allows you to search invoices by either a vendor number or PO number. It returns a list of invoice lines that meet the above-mentioned criteria.

Requires

Input Parameters

NameTypeLengthDescription
vendorNumber System.String 7 Vendor number to search by.
poNumber System.String 6 PO number to search by.

Example

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

Return Values

NameDescription
ErrorCode 0000 = Success.
ErrorDescription Success if success, otherwise returns a descriptive error message.
Other See fields returned below in sample responses

Sample Responses

Sample Code

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

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

   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 INVOICE# = row["INVOICE#"].ToString();
             string VENDOR# = row["VENDOR#"].ToString();
             string PO# = row["PO#"].ToString();
             string BATCH# = row["BATCH#"].ToString();
             string TRANSACTION# = row["TRANSACTION#"].ToString();
             string PAYMENT# = row["PAYMENT#"].ToString();
             string TRANSACTIONAMOUNT = row["TRANSACTIONAMOUNT"].ToString();
             string PAYMENTDATE = row["PAYMENTDATE"].ToString();
             string ACCOUNTINGYEAR = row["ACCOUNTINGYEAR"].ToString();
             string ACCOUNTINGPERIOD = row["ACCOUNTINGPERIOD"].ToString();
             string POSTINGDATE = row["POSTINGDATE"].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 PostSearchInvoices
   {
       // Add property for each input param in order to map a field to it
       [RegularExpression("^(?=.{0,7}$).*", ErrorMessage = "Must be 7 characters or less. ")]
       public string vendorNumber{get; set;}

       [RegularExpression("^(?=.{0,6}$).*", ErrorMessage = "Must be 6 characters or less. ")]
       public string poNumber{get; set;}

       public PostSearchInvoices()
       {
           //Set any defaults here
       }
   }
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostSearchInvoices 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.PostSearchInvoices

@{
   ViewBag.Title = "PostSearchInvoices";
}

<h2>PostSearchInvoices</h2>
@using (Html.BeginForm()) {
   @Html.AntiForgeryToken()
   @Html.ValidationSummary(true)
   <fieldset>
   <legend>PostSearchInvoices</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.poNumber)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.poNumber)
           @Html.ValidationMessageFor(model => model.poNumber)
       </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/PostSearchInvoices
public ActionResult PostSearchInvoices()
{
   // Create a new instance of the model to pick up any default values.
   PostSearchInvoices model =  new PostSearchInvoices();

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

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

   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", "PostSearchInvoices");
       return View("Error", info);
   }
}