Subversion Repositories SmartDukaan

Rev

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

Rev 33269 Rev 33273
Line 2... Line 2...
2
    #transactionList_wrapper .col-sm-6 {
2
    #transactionList_wrapper .col-sm-6 {
3
        padding: 2px !important;
3
        padding: 2px !important;
4
    }
4
    }
5
 
5
 
6
    .active-tr {
6
    .active-tr {
7
        background-color: lightyellow;
7
        background-color: #f8f8a7;
8
    }
8
    }
9
 
9
 
10
    #transactionList_length, #transactionList_filter {
10
    #transactionList_length, #transactionList_filter {
11
        padding: 8px !important;
11
        padding: 8px !important;
12
    }
12
    }
Line 44... Line 44...
44
                            <th>Retailer Name</th>
44
                            <th>Retailer Name</th>
45
                            <th>Created</th>
45
                            <th>Created</th>
46
                        </tr>
46
                        </tr>
47
                        </thead>
47
                        </thead>
48
                        <tbody>
48
                        <tbody>
49
                            #foreach($order in $transactionIdByOrder)
49
                            #foreach($transaction in $transactionIdByOrder)
50
                            <tr class="order_by_transaction" data-transaction="$order.getTransactionId()">
50
                            <tr class="order_by_transaction" data-transaction="$transaction.getTransactionId()">
51
                                <td>$order.getTransactionId()</td>
51
                                <td>$transaction.getTransactionId()</td>
52
                                <td>
52
                                <td>
53
                                    <span>
53
                                    <span>
54
                                        #if($order.getRetailerName())
54
                                        #if($transaction.getRetailerName())
55
                                            $order.getRetailerName()
55
                                            $transaction.getRetailerName()
56
                                        #end
56
                                        #end
57
                                        #if($order.getRetailerCity() && $order.getRetailerState())
57
                                        #if($transaction.getRetailerCity() && $transaction.getRetailerState())
58
                                            ($order.getRetailerCity(), $order.getRetailerState())
58
                                            ($transaction.getRetailerCity(), $transaction.getRetailerState())
59
                                        #end
59
                                        #end
60
                                    </span>
60
                                    </span>
61
                                </td>
61
                                </td>
62
                                <td>$order.getCreateTimestamp().format($dateFormatter)</td>
62
                                <td>$transaction.getCreateTimestamp().format($dateFormatter)</td>
63
                            </tr>
63
                            </tr>
64
                            #end
64
                            #end
65
                        </tbody>
65
                        </tbody>
66
                    </table>
66
                    </table>
67
                </div>
67
                </div>