Add Valuation
Name | Type | Length | Description |
---|---|---|---|
locationID | numeric | 9 | [Required] Location ID |
valuationCode | System.String | 4 | [Required] Valuation code. This indicates who did the assessment |
valuationYear | numeric | 2 | Year valuation was done. 2 digit year. Defaults to current year |
century | numeric | 1 | Century indicator. Defaults to 1=Current century. |
currentValuation | dollar | 2 | Current value of location |
adjustedValuation | dollar | 2 | Adjusted value of location |
marketUseValue | System.String | 1 | Market or Use Value indicator. M=Market, U=User |
displayPriority | numeric | 3 | Display priority |
includeExclude | numeric | 1 | Include in total. 1=Yes, 0=No |
relPartyCode | System.String | 1 | Related Party included. Blank=Use Location ID, Y=Use Related party number |
relPartyNumber | numeric | 9 | Related Party number |
sourceRef | System.String | 9 | Source Reference. Updates TX history TX141AP/TXVHSD field |
changeDate | numeric | 7 | Change date. Format: CyyMMdd. Defaults to current date |
POST http://localhost/FusionServices/v3/Naviline/Land/AddValuation
Name | Description |
---|---|
ErrorCode | 0=Success |
using System.Net;
using Newtonsoft.Json.Linq;
public void MethodName(parms)
{
string uri = "http://localhost/FusionServices/v3/Naviline/Land/AddValuation";
System.Collections.Specialized.NameValueCollection postParms =
new System.Collections.Specialized.NameValueCollection();
// Set paramater values
postParms.Add("locationID",System.Web.HttpUtility.UrlEncode("39796"));
postParms.Add("valuationCode",System.Web.HttpUtility.UrlEncode("CNTY"));
postParms.Add("valuationYear",System.Web.HttpUtility.UrlEncode("15"));
postParms.Add("century",System.Web.HttpUtility.UrlEncode("1"));
postParms.Add("currentValuation",System.Web.HttpUtility.UrlEncode("225000"));
postParms.Add("adjustedValuation",System.Web.HttpUtility.UrlEncode("250001.07"));
postParms.Add("marketUseValue",System.Web.HttpUtility.UrlEncode("M"));
postParms.Add("displayPriority",System.Web.HttpUtility.UrlEncode("1"));
postParms.Add("includeExclude",System.Web.HttpUtility.UrlEncode("1"));
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 == "0")
{
// 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 PostAddValuation
{
// Add property for each input param in order to map a field to it
[Required(ErrorMessage = "Required")]
[RegularExpression("[0-9]{0,9}", ErrorMessage = "Numeric values only. Must be 9 digits or less. ")]
public string locationID{get; set;}
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,4}$).*", ErrorMessage = "Must be 4 characters or less. ")]
public string valuationCode{get; set;}
[RegularExpression("[0-9]{0,2}", ErrorMessage = "Numeric values only. Must be 2 digits or less. ")]
public string valuationYear{get; set;}
[RegularExpression("[0-9]{0,1}", ErrorMessage = "Numeric values only. Must be 1 digits or less. ")]
public string century{get; set;}
[RegularExpression("^(?=.{0,2}$).*", ErrorMessage = "Must be 2 characters or less. ")]
public string currentValuation{get; set;}
[RegularExpression("^(?=.{0,2}$).*", ErrorMessage = "Must be 2 characters or less. ")]
public string adjustedValuation{get; set;}
[RegularExpression("^(?=.{0,1}$).*", ErrorMessage = "Must be 1 characters or less. ")]
public string marketUseValue{get; set;}
[RegularExpression("[0-9]{0,3}", ErrorMessage = "Numeric values only. Must be 3 digits or less. ")]
public string displayPriority{get; set;}
[RegularExpression("[0-9]{0,1}", ErrorMessage = "Numeric values only. Must be 1 digits or less. ")]
public string includeExclude{get; set;}
[RegularExpression("^(?=.{0,1}$).*", ErrorMessage = "Must be 1 characters or less. ")]
public string relPartyCode{get; set;}
[RegularExpression("[0-9]{0,9}", ErrorMessage = "Numeric values only. Must be 9 digits or less. ")]
public string relPartyNumber{get; set;}
[RegularExpression("^(?=.{0,9}$).*", ErrorMessage = "Must be 9 characters or less. ")]
public string sourceRef{get; set;}
[RegularExpression("[0-9]{0,7}", ErrorMessage = "Numeric values only. Must be 7 digits or less. ")]
public string changeDate{get; set;}
public PostAddValuation()
{
//Set any defaults here
}
}
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostAddValuation 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.PostAddValuation
@{
ViewBag.Title = "PostAddValuation";
}
<h2>PostAddValuation</h2>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>PostAddValuation</legend>
<div class="editor-label">
@Html.LabelFor(model => model.locationID)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.locationID)
@Html.ValidationMessageFor(model => model.locationID)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.valuationCode)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.valuationCode)
@Html.ValidationMessageFor(model => model.valuationCode)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.valuationYear)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.valuationYear)
@Html.ValidationMessageFor(model => model.valuationYear)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.century)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.century)
@Html.ValidationMessageFor(model => model.century)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.currentValuation)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.currentValuation)
@Html.ValidationMessageFor(model => model.currentValuation)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.adjustedValuation)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.adjustedValuation)
@Html.ValidationMessageFor(model => model.adjustedValuation)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.marketUseValue)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.marketUseValue)
@Html.ValidationMessageFor(model => model.marketUseValue)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.displayPriority)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.displayPriority)
@Html.ValidationMessageFor(model => model.displayPriority)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.includeExclude)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.includeExclude)
@Html.ValidationMessageFor(model => model.includeExclude)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.relPartyCode)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.relPartyCode)
@Html.ValidationMessageFor(model => model.relPartyCode)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.relPartyNumber)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.relPartyNumber)
@Html.ValidationMessageFor(model => model.relPartyNumber)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.sourceRef)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.sourceRef)
@Html.ValidationMessageFor(model => model.sourceRef)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.changeDate)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.changeDate)
@Html.ValidationMessageFor(model => model.changeDate)
</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/PostAddValuation
public ActionResult PostAddValuation()
{
// Create a new instance of the model to pick up any default values.
PostAddValuation model = new PostAddValuation();
// pass model to set to default values
// NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
return View("~/Views/MyFolderPath/PostAddValuation.cshtml", model);
}
//
// POST: /MyController/PostAddValuation
[HttpPost]
public ActionResult PostAddValuation(FormCollection collection)
{
string url = "v3/Naviline/Land/AddValuation";
// Get the value from each input field
NameValueCollection inputParms = new NameValueCollection();
inputParms.Add("locationID", collection["locationID"]);
inputParms.Add("valuationCode", collection["valuationCode"]);
inputParms.Add("valuationYear", collection["valuationYear"]);
inputParms.Add("century", collection["century"]);
inputParms.Add("currentValuation", collection["currentValuation"]);
inputParms.Add("adjustedValuation", collection["adjustedValuation"]);
inputParms.Add("marketUseValue", collection["marketUseValue"]);
inputParms.Add("displayPriority", collection["displayPriority"]);
inputParms.Add("includeExclude", collection["includeExclude"]);
inputParms.Add("relPartyCode", collection["relPartyCode"]);
inputParms.Add("relPartyNumber", collection["relPartyNumber"]);
inputParms.Add("sourceRef", collection["sourceRef"]);
inputParms.Add("changeDate", collection["changeDate"]);
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", "PostAddValuation");
return View("Error", info);
}
}