@model ParcelWeb.Core.Dto.CreateEditInvoiceDto @{ ViewBag.Title = "New Invoice"; }
@using (Html.BeginForm()) { @Html.AntiForgeryToken()

New Invoice

@Html.LabelFor(model => model.CustomerName, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.DropDownListFor(model => model.CustomerName, ViewBag.Customer as SelectList, "--Select Customer--", new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.CustomerName, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.InvoicNo, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.EditorFor(model => model.InvoicNo, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.InvoicNo, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.InvoiceDate, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.EditorFor(model => model.InvoiceDate, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.InvoiceDate, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DueDate, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.EditorFor(model => model.DueDate, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DueDate, "", new { @class = "text-danger" })

@Html.LabelFor(model => model.Gateway, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.DropDownListFor(model => model.Gateway, ViewBag.PaymentGateway as SelectList, "--Select Gateway--", new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.Gateway, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.CurrencyCode, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.DropDownListFor(model => model.CurrencyCode, ViewBag.currency as SelectList, "--Select Currency--", new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.CurrencyCode, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Remarks, htmlAttributes: new { @class = "control-label col-md-12" })
@Html.EditorFor(model => model.Remarks, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Remarks, "", new { @class = "text-danger" })

Product Service Description Qty Unit Weight Rate Per Kg Total

@* *@
Total Billed Amount

Conversion Rates

Net Balance:

0


} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }