Add a Commodity to a vendor
Name | Type | Length | Description |
---|---|---|---|
vendorNumber | numeric | 10 | [Required] Vendor number |
companyNumber | numeric | 3 | Customer number |
commodityCode | System.String | 3 | [Required] Commodity Code |
subCommodityCode | System.String | 3 | Sub-commodity code |
POST http://localhost/FusionServices/v3/Naviline/ProductInventory/AddCommSubComm
Name | Description |
---|---|
ErrorCode | 0000=Success, 2001=Already on file for vendor |
ErrorMessage | Error message describing any error that occurred |
using System.Net;
using Newtonsoft.Json.Linq;
public void MethodName(parms)
{
string uri = "http://localhost/FusionServices/v3/Naviline/ProductInventory/AddCommSubComm";
System.Collections.Specialized.NameValueCollection postParms =
new System.Collections.Specialized.NameValueCollection();
// Set paramater values
postParms.Add("vendorNumber",System.Web.HttpUtility.UrlEncode("1056"));
postParms.Add("commodityCode",System.Web.HttpUtility.UrlEncode("FPO"));
postParms.Add("subCommodityCode",System.Web.HttpUtility.UrlEncode("FPO"));
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")
{
// TODO - YOUR CODE HERE
}
}
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 PostAddCommSubComm
{
// Add property for each input param in order to map a field to it
[Required(ErrorMessage = "Required")]
[RegularExpression("[0-9]{0,10}", ErrorMessage = "Numeric values only. Must be 10 digits or less. ")]
public string vendorNumber{get; set;}
[RegularExpression("[0-9]{0,3}", ErrorMessage = "Numeric values only. Must be 3 digits or less. ")]
public string companyNumber{get; set;}
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,3}$).*", ErrorMessage = "Must be 3 characters or less. ")]
public string commodityCode{get; set;}
[RegularExpression("^(?=.{0,3}$).*", ErrorMessage = "Must be 3 characters or less. ")]
public string subCommodityCode{get; set;}
public PostAddCommSubComm()
{
//Set any defaults here
}
}
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostAddCommSubComm 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.PostAddCommSubComm
@{
ViewBag.Title = "PostAddCommSubComm";
}
<h2>PostAddCommSubComm</h2>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>PostAddCommSubComm</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.companyNumber)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.companyNumber)
@Html.ValidationMessageFor(model => model.companyNumber)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.commodityCode)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.commodityCode)
@Html.ValidationMessageFor(model => model.commodityCode)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.subCommodityCode)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.subCommodityCode)
@Html.ValidationMessageFor(model => model.subCommodityCode)
</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/PostAddCommSubComm
public ActionResult PostAddCommSubComm()
{
// Create a new instance of the model to pick up any default values.
PostAddCommSubComm model = new PostAddCommSubComm();
// pass model to set to default values
// NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
return View("~/Views/MyFolderPath/PostAddCommSubComm.cshtml", model);
}
//
// POST: /MyController/PostAddCommSubComm
[HttpPost]
public ActionResult PostAddCommSubComm(FormCollection collection)
{
string url = "v3/Naviline/ProductInventory/AddCommSubComm";
// Get the value from each input field
NameValueCollection inputParms = new NameValueCollection();
inputParms.Add("vendorNumber", collection["vendorNumber"]);
inputParms.Add("companyNumber", collection["companyNumber"]);
inputParms.Add("commodityCode", collection["commodityCode"]);
inputParms.Add("subCommodityCode", collection["subCommodityCode"]);
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", "PostAddCommSubComm");
return View("Error", info);
}
}