| 28437 |
tejbeer |
1 |
|
|
|
2 |
<div class="modal-header">
|
|
|
3 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
|
4 |
<h4 class="modal-title">Cancellation Reason</h4>
|
|
|
5 |
</div>
|
|
|
6 |
<div class="modal-body">
|
|
|
7 |
<div class="row">
|
|
|
8 |
<div class="col-lg-12">
|
|
|
9 |
<select class="form-control input-sm" id="fofo-users"
|
|
|
10 |
name="fofo-users" placeholder="Partners">
|
|
|
11 |
<option value="" disabled selected>Partners</option>
|
|
|
12 |
#foreach($fofoId in $customRetailersMap.keySet()) #if($fofoId ==
|
|
|
13 |
$pendingOrder.getFofoId())
|
|
|
14 |
<option value="$fofoId" selected>$customRetailersMap.get($fofoId).getBusinessName()</option>
|
|
|
15 |
|
|
|
16 |
#else
|
|
|
17 |
<option value="$fofoId">$customRetailersMap.get($fofoId).getBusinessName()</option>
|
|
|
18 |
|
|
|
19 |
#end #end
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
</select>
|
|
|
23 |
|
|
|
24 |
</div>
|
|
|
25 |
</div>
|
|
|
26 |
</div>
|
|
|
27 |
<div class="modal-footer">
|
|
|
28 |
<button type="button" data-dismiss="modal"
|
|
|
29 |
class="btn btn-default cancel-order-request">Cancel</button>
|
|
|
30 |
<button type="button" data-poid="$pendingOrder.getId()"
|
|
|
31 |
class="btn btn-default change-partner-po">Submit</button>
|
|
|
32 |
|
|
|
33 |
</div>
|