Subversion Repositories SmartDukaan

Rev

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

Rev 3339 Rev 3390
Line 27... Line 27...
27
                <td>
27
                <td>
28
                    <a alt="Show Ticket Details" title="Show Ticket Details" href="#" userEmailId="$ticket.getCustomerEmailId()" userId="$action.getUserId()" ticketId="$ticketId" class="show-ticket-details">
28
                    <a alt="Show Ticket Details" title="Show Ticket Details" href="#" userEmailId="$ticket.getCustomerEmailId()" userId="$action.getUserId()" ticketId="$ticketId" class="show-ticket-details">
29
                        $ticketId
29
                        $ticketId
30
                    </a>
30
                    </a>
31
                </td>
31
                </td>
-
 
32
                <td>
32
                #if($ticket.getCustomerId() && $ticket.getCustomerId() != 0)
33
                #if($ticket.isSetCustomerId())
33
                #set( $user = $action.getUser($ticket.getCustomerId()) )
34
                #set( $user = $action.getUser($ticket.getCustomerId()) )
34
                <td class="truncated-text">
-
 
35
                    <a alt="Show Customer Details" title="Show Customer Details" href="/crm?email=$user.getEmail()">
35
                    <a alt="Show Customer Details" title="Show Customer Details" href="/crm?email=$user.getEmail()">
-
 
36
                        <span class="truncated-text">
36
                        $user.getEmail()
37
                            $user.getEmail()
-
 
38
                        </span>
37
                    </a>
39
                    </a>
38
                </td>
-
 
39
                #else
40
                #else
-
 
41
                    <span class="truncated-text">
40
                    <td class="truncated-text">$ticket.getCustomerEmailId()</td>
42
                        $ticket.getCustomerEmailId()
-
 
43
                    </span>
41
                #end
44
                #end
-
 
45
                </td>
42
                <td class="truncated-text">$ticket.getCategory().name()</td>
46
                <td class="truncated-text">$ticket.getCategory().name()</td>
43
                <td title="$openDate"  class="truncated-text">$openDate</td>
47
                <td title="$openDate"  class="truncated-text">$openDate</td>
44
                <td title="$closeDate" class="truncated-text">$closeDate</td>
48
                <td title="$closeDate" class="truncated-text">$closeDate</td>
45
                <td class="truncated-text">
49
                <td class="truncated-text">
46
                    #if($ticket.isSetAssigneeId() && $ticket.getAssigneeId() != 0)
50
                    #if($ticket.isSetAssigneeId() && $ticket.getAssigneeId() != 0)
Line 58... Line 62...
58
</div>
62
</div>
59
<div id="bottom-infopane">
63
<div id="bottom-infopane">
60
</div>
64
</div>
61
#end
65
#end
62
<script>
66
<script>
63
$(document).ready(truncateText(70));
-
 
64
</script>
-
 
65
67
$(document).ready(truncateText(75));
-
 
68
</script>
-
 
69