| 24876 |
tejbeer |
1 |
<script type="text/javascript">
|
|
|
2 |
var customRetailers = ${customRetailers};
|
|
|
3 |
$("#FofoId").typeahead({
|
|
|
4 |
source: customRetailers,
|
|
|
5 |
autoSelect: true,
|
|
|
6 |
displayText:function(item){return item.businessName + "-" + item.address.city;},
|
|
|
7 |
afterSelect: function(currentItem){
|
|
|
8 |
currentFofoId = currentItem.partnerId;
|
|
|
9 |
}
|
|
|
10 |
});
|
|
|
11 |
|
|
|
12 |
</script>
|
|
|
13 |
|
|
|
14 |
<section class="wrapper">
|
|
|
15 |
<div class="row">
|
|
|
16 |
<div class="col-lg-12">
|
|
|
17 |
<h3 class="page-header"><i class="icon_document_alt"></i>Wallet-Edit</h3>
|
|
|
18 |
<ol class="breadcrumb">
|
|
|
19 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
20 |
<li><i class="icon_document_alt"></i>CREDIT/DEBIT</li>
|
|
|
21 |
</ol>
|
|
|
22 |
</div>
|
|
|
23 |
</div>
|
|
|
24 |
|
|
|
25 |
<div style="background:white;background-color:white;padding:10px;">
|
|
|
26 |
<h4 class="modelHeaderCustom" style="font-size:22px;">Credit/Debit</h4>
|
|
|
27 |
<div>
|
| 24992 |
tejbeer |
28 |
<form id = "wallet-form" >
|
| 24876 |
tejbeer |
29 |
<div class = "row">
|
|
|
30 |
<div class="col-lg-2 form-group">
|
| 24897 |
amit.gupta |
31 |
<input id="FofoId" type="text" class="typeahead form-control form-control-sm" placeholder="Partner Name" data-provide="typeahead"
|
|
|
32 |
#if(${retailerName}) value="${retailerName}" #end
|
|
|
33 |
autocomplete="off"/>
|
|
|
34 |
|
|
|
35 |
</div>
|
|
|
36 |
<div class="col-lg-2 form-group">
|
|
|
37 |
<button class="btn btn-primary fetchTransactions" type="button">Search Transactions</button>
|
|
|
38 |
</div>
|
|
|
39 |
</div>
|
|
|
40 |
|
|
|
41 |
<div class = "row">
|
|
|
42 |
<div class="col-lg-2 form-group">
|
| 24876 |
tejbeer |
43 |
<select class="form-control input-sm" id = "reference-type" name = "reference-type" placeholder="Reference Type">
|
|
|
44 |
<option value="" disabled selected>Reference Type</option>
|
|
|
45 |
#foreach($referenceType in $referenceTypes)
|
|
|
46 |
<option value="$referenceType">$referenceType</option>
|
|
|
47 |
#end
|
|
|
48 |
</select>
|
|
|
49 |
</div>
|
|
|
50 |
|
|
|
51 |
<div class="col-lg-2 form-group">
|
|
|
52 |
<input placeholder="Reference Id" id="reference_id" name="reference_id" type="text" value="" class="form-control input-sm">
|
|
|
53 |
</div>
|
|
|
54 |
|
|
|
55 |
<div class="col-lg-2 form-group">
|
|
|
56 |
<button class="btn btn-primary referenceSearch" type="button">Search</button>
|
|
|
57 |
</div>
|
|
|
58 |
</div>
|
| 24897 |
amit.gupta |
59 |
|
|
|
60 |
<div class = "row">
|
|
|
61 |
<div class="col-lg-2 form-group">
|
| 24876 |
tejbeer |
62 |
<select class="form-control input-sm" id = "transaction-type" name = "transaction-type" placeholder="Transaction Type">
|
|
|
63 |
<option value="" disabled selected>Transaction Type</option>
|
|
|
64 |
#foreach($transactionType in $transactionTypes)
|
|
|
65 |
<option value="$transactionType">$transactionType</option>
|
|
|
66 |
#end
|
|
|
67 |
</select>
|
|
|
68 |
</div>
|
|
|
69 |
|
|
|
70 |
<div class="col-lg-2 form-group">
|
|
|
71 |
<input placeholder="Amount" id="amount" name="amount" type="text" value="" class="form-control input-sm">
|
|
|
72 |
</div>
|
|
|
73 |
|
|
|
74 |
<div class="col-lg-2 form-group">
|
|
|
75 |
<input placeholder="Description" id="description" name="description" type="text" value="" class="form-control input-sm">
|
|
|
76 |
</div>
|
|
|
77 |
|
|
|
78 |
|
|
|
79 |
<div class="col-lg-2 form-group">
|
|
|
80 |
<button class="btn btn-primary transactionSubmit" type="button">Submit</button>
|
|
|
81 |
</div>
|
|
|
82 |
</div>
|
|
|
83 |
</div>
|
|
|
84 |
</div>
|
|
|
85 |
</div>
|
| 24992 |
tejbeer |
86 |
</form>
|
| 24876 |
tejbeer |
87 |
|
|
|
88 |
<div class="wallet-history-container">
|
|
|
89 |
</div>
|
|
|
90 |
</section>
|
|
|
91 |
|