[freeside-commits] freeside/rt/share/html/Elements/RT__Ticket ColumnMap, 1.4, 1.5

Mark Wells mark at wavetail.420.am
Sat Apr 30 13:28:56 PDT 2011


Update of /home/cvs/cvsroot/freeside/rt/share/html/Elements/RT__Ticket
In directory wavetail.420.am:/tmp/cvs-serv19840/share/html/Elements/RT__Ticket

Modified Files:
	ColumnMap 
Log Message:
Excel date formatting, #12659

Index: ColumnMap
===================================================================
RCS file: /home/cvs/cvsroot/freeside/rt/share/html/Elements/RT__Ticket/ColumnMap,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -w -d -r1.4 -r1.5
--- ColumnMap	8 Apr 2011 00:27:00 -0000	1.4
+++ ColumnMap	30 Apr 2011 20:28:54 -0000	1.5
@@ -220,26 +220,31 @@
     Starts => {
         title     => 'Starts', # loc
         attribute => 'Starts',
+        date      => sub { return $_[0]->StartsObj },
         value     => sub { return $_[0]->StartsObj->AsString }
     },
     Started => {
         title     => 'Started', # loc
         attribute => 'Started',
+        date      => sub { return $_[0]->StartedObj },
         value     => sub { return $_[0]->StartedObj->AsString }
     },
     Told => {
         title     => 'Told', # loc
         attribute => 'Told',
+        date      => sub { return $_[0]->ToldObj },
         value     => sub { return $_[0]->ToldObj->AsString }
     },
     Due => {
         title     => 'Due', # loc
         attribute => 'Due',
+        date      => sub { return $_[0]->DueObj },
         value     => sub { return $_[0]->DueObj->AsString }
     },
     Resolved => {
         title     => 'Resolved', # loc
         attribute => 'Resolved',
+        date      => sub { return $_[0]->ResolvedObj },
         value     => sub { return $_[0]->ResolvedObj->AsString }
     },
     UpdateStatus => {



More information about the freeside-commits mailing list