68 lines
2.8 KiB
Plaintext
68 lines
2.8 KiB
Plaintext
@model OrderModel
|
|
|
|
@{
|
|
Layout = "_AdminPopupLayout";
|
|
|
|
//page title
|
|
ViewBag.PageTitle = T("Admin.Orders.Fields.PartialRefund").Text;
|
|
}
|
|
|
|
@if (ViewBag.RefreshPage == true)
|
|
{
|
|
<script>
|
|
try {window.opener.document.forms['@(Context.Request.Query["formId"])'].@(Context.Request.Query["btnId"]).click();}
|
|
catch (e){}
|
|
window.close();
|
|
</script>
|
|
}
|
|
|
|
|
|
<form asp-controller="Order" asp-action="PartiallyRefundOrderPopup"
|
|
asp-route-online="@Context.Request.Query["online"]"
|
|
asp-route-btnId="@Context.Request.Query["btnId"]"
|
|
asp-route-formId="@Context.Request.Query["formId"]">
|
|
<div class="content-header clearfix">
|
|
<h1 class="float-left">
|
|
@T("Admin.Orders.Fields.PartialRefund")
|
|
</h1>
|
|
<div class="float-right">
|
|
|
|
@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.OrderPartiallyRefundButtons, additionalData = Model })
|
|
</div>
|
|
</div>
|
|
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
<div asp-validation-summary="All"></div>
|
|
<div class="form-horizontal">
|
|
<div class="cards-group">
|
|
<div class="card card-default card-popup">
|
|
<div class="card-header">
|
|
@string.Format(T("Admin.Orders.Fields.PartialRefund.OrderInfo").Text, Model.Id)
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="form-group row">
|
|
<div class="col-sm-5">
|
|
<nop-label asp-for="AmountToRefund" />
|
|
</div>
|
|
<div class="col-sm-7">
|
|
<nop-editor asp-for="AmountToRefund" />
|
|
<span style="white-space: nowrap">
|
|
@string.Format(T("Admin.Orders.Fields.PartialRefund.AmountToRefund.Max").Text, Model.MaxAmountToRefund.ToString("G29"), Model.PrimaryStoreCurrencyCode)
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<div class="col-sm-7 offset-sm-5">
|
|
<button type="submit" name="partialrefundorder" id="partialrefundorder" class="btn btn-primary">
|
|
@T("Admin.Orders.Fields.Refund")
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form> |