changes
This commit is contained in:
parent
ef35d12e21
commit
da50f5a8f7
BIN
.vs/OSS/v16/.suo
BIN
.vs/OSS/v16/.suo
Binary file not shown.
|
|
@ -57,7 +57,6 @@
|
||||||
<a class="btn btn-primary btn-lg mt-2 " href="/NewCOI/">Go back</a>
|
<a class="btn btn-primary btn-lg mt-2 " href="/NewCOI/">Go back</a>
|
||||||
@if (!string.IsNullOrEmpty(projCode))
|
@if (!string.IsNullOrEmpty(projCode))
|
||||||
{
|
{
|
||||||
<a class="btn btn-success btn-lg mt-2" href="@Url.Action("Payment","NewCOI")">Go to Payment</a>
|
|
||||||
<a class="btn btn-warning btn-lg mt-2" href="@Url.Action("AdditionalPayment","NewCOI", new { projectCode = projCode })">Pay Additional Amount</a>
|
<a class="btn btn-warning btn-lg mt-2" href="@Url.Action("AdditionalPayment","NewCOI", new { projectCode = projCode })">Pay Additional Amount</a>
|
||||||
}
|
}
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
|
|
@ -176,14 +176,7 @@ columns.AddFor(m => m.CompanyEmail).Caption("Company Email").Visible(true).Allow
|
||||||
bool.TryParse(ViewBag.HideAdditionalButton.ToString(), out hideAdditionalBtn);
|
bool.TryParse(ViewBag.HideAdditionalButton.ToString(), out hideAdditionalBtn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@if (!string.IsNullOrEmpty(additionalProjectCode) && !hideAdditionalBtn)
|
|
||||||
{
|
|
||||||
<div class="mt-3">
|
|
||||||
<a class="btn btn-warning" href="@Url.Action("AdditionalPayment","NewCOI", new { projectCode = additionalProjectCode })">
|
|
||||||
Pay Additional Amount
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
|
|
||||||
@if (TempData["HidePaidInvoices"] != null)
|
@if (TempData["HidePaidInvoices"] != null)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -196,7 +196,6 @@
|
||||||
<label for="validationCustom05" class="text-black">Currency</label>
|
<label for="validationCustom05" class="text-black">Currency</label>
|
||||||
@Html.DropDownListFor(m => m.Currency, new List<SelectListItem>{
|
@Html.DropDownListFor(m => m.Currency, new List<SelectListItem>{
|
||||||
//new SelectListItem{ Text="List of allowed currency", Value = "" ,Selected= true},
|
//new SelectListItem{ Text="List of allowed currency", Value = "" ,Selected= true},
|
||||||
new SelectListItem{ Text="Select Allowed Currency", Value = "" ,Selected= true},
|
|
||||||
new SelectListItem{ Text="TZS", Value = "TZS" },
|
new SelectListItem{ Text="TZS", Value = "TZS" },
|
||||||
//new SelectListItem{ Text="USD", Value = "USD" },
|
//new SelectListItem{ Text="USD", Value = "USD" },
|
||||||
}, new { @class = "selectpicker form-control", @id = "Currency", @name = "Currency", @placeholder = "Sex Type", @required = "true" })
|
}, new { @class = "selectpicker form-control", @id = "Currency", @name = "Currency", @placeholder = "Sex Type", @required = "true" })
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue