Subversion Repositories SmartDukaan

Rev

Rev 24087 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<style>
.row{
        margin:0 auto;
}
.modal-content{
                background : white;
        }
        .modelHeaderCustom{
                font-size:14px;
                font-weight:bold;
        }
        .border-highlight{
                border : 3px solid red;
        }
        hr{
                background-color:#007aff;
                border:none;
                height:1px;
                background:#007aff;
        }
        .control-label {
                margin-top: 0;
                margin-bottom: 0;
                padding-top: 7px;
                font-weight:bold;
                font-size:14px;
        }
        .form-group{
                border-bottom: 1px solid #eff2f7;
                padding-bottom: 15px;
                margin-bottom: 15px;
        }
        .right{
                float:right;
        }
        .form-control{
                color:black;
        }
.table-align-center{
        text-align:center;
}
.bold-details {
        text-transform:capitalize;
        font-weight:600;
        color:#212121;
}
</style>

#if(!$prebookingOrders.isEmpty())
        <div id="customer-details" style="background:white;background-color:white;padding:10px;">
                <h4 class="modelHeaderCustom" style="font-size:22px;">Prebooking Orders</h4>
                <div id="prebooking-order-details-table">
                        <div class="row">
                                <div class="col-lg-12">
                                        <table class="table table-striped table-advance">
                                                <tbody>
                                                        <tr>
                                                                <th>Item Id</th>
                                                                <th>Description</th>
                                                                <th>Advance Amount</th>
                                                                <th>Tentative Amount</th>
                                                                <th>Total Quantity</th>
                                                                <th>Available Quantity</th>
                                                                <th>Use</th>
                                                        </tr>
                                                        #foreach( $prebookingOrder in $prebookingOrders )
                                                                #set($prebookingListing = $itemIdPrebookingListingMap.get($prebookingOrder.getCatalogId()))
                                                                <tr class="prebooking-order-details" data="$prebookingOrder.getId()">
                                                                        <td class="prebooking-item-id">$prebookingOrder.getItemId()</td>
                                                                        <td>$itemIdDescriptionMap.get($prebookingOrder.getItemId())</td>
                                                                        <td class="prebooking-advance-amount">$prebookingListing.getAdvanceAmount()</td>
                                                                        <td>$prebookingListing.getTentativeAmount()</td>
                                                                        <td>$prebookingOrder.getQuantity()</td>
                                                                        <td class="prebooking-available-quantity">$prebookingOrder.getAvailableQuantity()</td>
                                                                        <td>
                                                                                <input placeholder = "Use Advance Amount" class="useAdvanceAmount" catalogId = "$prebookingOrder.getCatalogId()" type="checkbox" value="false">
                                                                        </td>
                                                                </tr>
                                                        #end
                                                </tbody>
                                        </table>
                                </div>
                        </div>
                </div>
        </div>
        <div id="customer-otp-details">
                
        </div>
#end