Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34111 ranu 1
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
2
<style>
3
    .collection-div {
4
        text-align: center;
5
        background: #ccc;
6
        max-width: max-content;
7
        padding: 5px 10px;
8
        border-radius: 8px;
9
        float: right;
10
        margin-right: 20px;
11
        margin-bottom: 10px;
12
    }
13
 
14
    .mr-lr-5 {
15
        margin-right: 5px;
16
        margin-left: 5px;
17
    }
18
</style>
19
 
20
 
21
<section class="wrapper">
22
    <div class="row">
23
        <div class="col-lg-12">
24
            <h3 class="page-header">
25
                <i class="icon_document_alt"></i>Up-Selling Report
26
            </h3>
27
            <div class="row">
28
                <div class="col-md-12">
29
                    <ol class="breadcrumb">
30
                        <li><i class="fa fa-home"></i><a
31
                                href="${rc.contextPath}/dashboard">Home</a></li>
32
                        <li><i class="icon_document_alt"></i> Upselling Report</li>
33
                    </ol>
34
                </div>
35
            </div>
36
        </div>
37
    </div>
38
 
39
    <div class="row col-lg-12">
40
 
41
        <div class="form-group">
42
            <table>
43
                <tr>
44
                    <td style="padding: 5px 10px;">
45
                        <input placeholder="Set Duration" name="upsellingPeriod"
46
                               id="upsellingPeriod"
47
                               type="text" value="" class="form-control input-sm">
48
                    </td>
49
                    <td style="padding: 5px 10px;">
50
                        <input class="btn btn-primary fetch-upselling-report"
51
                               type="button"
52
                               value="Submit">
53
                    </td>
54
                    <td style="padding: 5px 10px;">
55
                        <input
56
                                class="btn btn-primary download-upselling-report" type="button"
57
                                value="Download">
58
                    </td>
59
                </tr>
60
            </table>
61
        </div>
62
 
63
    </div>
64
    <div class="col-lg-12">
65
        <div class="table-responsive" id="upselling-report-list">
66
 
67
        </div>
68
    </div>
69
 
70
</section>
71
 
72
<script type="text/javascript">
73
    $('input[name="upsellingPeriod"]').daterangepicker(getRangedDatePicker());
74
</script>
75
 
76