Browse Source

#24827 Promotional Rate setup

feature/19315_Customer-Registration
Leeza Baidar 8 months ago
parent
commit
f1a9f7c568
  1. 5
      CustomerOnlineV2/CustomerOnlineV2/Views/Transaction/SendMoney.cshtml

5
CustomerOnlineV2/CustomerOnlineV2/Views/Transaction/SendMoney.cshtml

@ -50,7 +50,8 @@
<div class="col-md-10">
<div class="mb-3">
<div class="form-floating">
<select asp-for="SchemeId" asp-items="@CustomerOnlineV2.Helper.HelperClass.GetDropdownData("howToPay", true)" class="form-select" required></select>
@* <select asp-for="SchemeId" asp-items="@CustomerOnlineV2.Helper.HelperClass.GetDropdownData("howToPay", true)" class="form-select" required></select> *@
<select asp-for="SchemeId" class="form-select" required></select>
<label class="form-label">How do like to pay? </label>
</div>
</div>
@ -310,6 +311,7 @@
$('#ReceivingCountry').change(function () {
if ($(this).val() != '') {
PopulateDDL('DeliveryMethod', 'pMode', $(this).val(), true, '');
PopulateDDL('SchemeId', 'paymentOption', $(this).val(), true, '');
// PopulateDDL('Receiver', 'receiverList', $(this).val(), true, '');
}
@ -328,7 +330,6 @@
}
});
$('#SchemeId').on('change', function () {
var collectionAmount = $('#CollectAmount').val();
var payoutAmount = $('#PayoutAmount').val();

Loading…
Cancel
Save