Subversion Repositories SmartDukaan

Rev

Rev 32449 | Rev 32452 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32449 Rev 32451
Line 1... Line 1...
1
$billingMilestoneCountMap.toString()
1
##$billingMilestoneCountMap.toString()
2
<html lang="en">
2
<html lang="en">
3
<head>
3
<head>
4
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
4
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
5
    <meta http-equiv="refresh" content="180">
5
    <meta http-equiv="refresh" content="180">
6
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
6
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
Line 27... Line 27...
27
        }
27
        }
28
 
28
 
29
        td {
29
        td {
30
            font-size: 24px;
30
            font-size: 24px;
31
        }
31
        }
-
 
32
 
-
 
33
        th.gold {
-
 
34
            background-color: #F8E59C;
-
 
35
        }
-
 
36
 
-
 
37
        tr.gold:nth-child(odd) {
-
 
38
            background-color: #FDF8E3;
-
 
39
        }
-
 
40
 
32
    </style>
41
    </style>
33
    <link href="../resources/css/brand-logo.css" rel="stylesheet"/>
42
    <link href="../resources/css/brand-logo.css" rel="stylesheet"/>
34
</head>
43
</head>
35
<body>
44
<body>
36
<div class="container-fluid">
45
<div class="container-fluid">
37
    <table class="table table-bordered table-striped">
46
    <table class="table table-bordered">
38
        <thead>
47
        <thead>
39
        <tr>
48
        <tr>
40
            #set($colspan=$milestones.size()*3+1)
49
            #set($colspan=$milestones.size()*3+1)
41
            <th colspan="$colspan" style="text-align: center;vertical-align: middle;">Partners Split By Actual Billing
50
            <th colspan="$colspan" style="text-align: center;vertical-align: middle;background-color:#EBCA58">Partners
-
 
51
                Split By Actual Billing
42
            </th>
52
            </th>
43
        </tr>
53
        </tr>
44
        <tr>
54
        <tr>
45
            <th rowspan="2" style="text-align: center;vertical-align: middle;">RBM</th>
55
            <th class="gold" rowspan="2" style="text-align: center;vertical-align: middle;">RBM</th>
46
            #*<th rowspan="2" style="text-align: center;vertical-align: middle;">State</th>*#
-
 
47
            #foreach($milestone in $milestones)
56
            #foreach($milestone in $milestones)
-
 
57
                <th class="gold" colspan="3"
48
                <th colspan="3" style="text-align: center;vertical-align: middle;">$milestone.getValue()</th>
58
                    style="text-align: center;vertical-align: middle;">$milestone.getValue()</th>
49
            #end
59
            #end
50
        </tr>
60
        </tr>
51
        <tr>
61
        <tr>
52
            #foreach($milestone in $milestones)
62
            #foreach($milestone in $milestones)
53
                <th>PMTD</th>
63
                <th class="gold">PMTD</th>
54
                <th>MTD</th>
64
                <th class="gold">MTD</th>
55
                <th>DIFF</th>
65
                <th class="gold">DIFF</th>
56
            #end
66
            #end
57
        </tr>
67
        </tr>
58
        </thead>
68
        </thead>
59
        <tbody>
69
        <tbody>
60
            #foreach($rbmBillingMilestoneCountEntry in $billingMilestoneCountMap.entrySet())
70
            #foreach($rbmBillingMilestoneCountEntry in $billingMilestoneCountMap.entrySet())
61
                #set($rbmName = $rbmBillingMilestoneCountEntry.getKey())
71
                #set($rbmName = $rbmBillingMilestoneCountEntry.getKey())
62
            <tr>
72
            <tr class="gold">
63
                <td style="text-align: center;vertical-align: middle;">
73
                <td style="text-align: center;vertical-align: middle;">
64
                    $rbmName
74
                    $rbmName
65
                </td>
75
                </td>
66
                #foreach($milestone in $milestones)
76
                #foreach($milestone in $milestones)
67
                    #set($diff = 0)
77
                    #set($diff = 0)