[freeside-commits] freeside/rt/etc initialdata, 1.2, 1.2.2.1 schema.Pg, 1.6, 1.6.4.1 schema.mysql-4.1, 1.2, 1.2.4.1

Mark Wells mark at wavetail.420.am
Tue Aug 23 14:46:36 PDT 2011


Update of /home/cvs/cvsroot/freeside/rt/etc
In directory wavetail.420.am:/tmp/cvs-serv19603/rt/etc

Modified Files:
      Tag: FREESIDE_2_3_BRANCH
	initialdata schema.Pg schema.mysql-4.1 
Log Message:
RT future ticket resolve, #13853

Index: schema.mysql-4.1
===================================================================
RCS file: /home/cvs/cvsroot/freeside/rt/etc/schema.mysql-4.1,v
retrieving revision 1.2
retrieving revision 1.2.4.1
diff -u -w -d -r1.2 -r1.2.4.1
--- schema.mysql-4.1	2 Oct 2010 20:54:26 -0000	1.2
+++ schema.mysql-4.1	23 Aug 2011 21:46:34 -0000	1.2.4.1
@@ -289,6 +289,7 @@
   Due DATETIME NULL  ,
   Resolved DATETIME NULL  ,
 
+  WillResolve DATETIME NULL  ,
 
   LastUpdatedBy integer NOT NULL DEFAULT 0  ,
   LastUpdated DATETIME NULL  ,

Index: schema.Pg
===================================================================
RCS file: /home/cvs/cvsroot/freeside/rt/etc/schema.Pg,v
retrieving revision 1.6
retrieving revision 1.6.4.1
diff -u -w -d -r1.6 -r1.6.4.1
--- schema.Pg	1 Sep 2010 23:39:23 -0000	1.6
+++ schema.Pg	23 Aug 2011 21:46:34 -0000	1.6.4.1
@@ -404,6 +404,7 @@
   Due TIMESTAMP NULL  ,
   Resolved TIMESTAMP NULL  ,
 
+  WillResolve TIMESTAMP NULL  ,
 
   LastUpdatedBy integer NOT NULL DEFAULT 0  ,
   LastUpdated TIMESTAMP NULL  ,

Index: initialdata
===================================================================
RCS file: /home/cvs/cvsroot/freeside/rt/etc/initialdata,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -w -d -r1.2 -r1.2.2.1
--- initialdata	13 May 2011 23:20:52 -0000	1.2
+++ initialdata	23 Aug 2011 21:46:34 -0000	1.2.2.1
@@ -104,6 +104,16 @@
       ExecModule  => 'SetPriority',
       Argument    => '',
     },
+    { Name        => 'Cancel Scheduled Resolve',
+      Description => 'Set ticket not to resolve in the future',
+      ExecModule  => 'SetWillResolve',
+      Argument    => '',
+    },
+    { Name        => 'Scheduled Resolve',
+      Description => 'Resolve ticket if its WillResolve date has passed',
+      ExecModule  => 'ScheduledResolve',
+      Argument    => '',
+    },
 );
 
 @ScripConditions = (
@@ -564,6 +574,10 @@
        ScripCondition => 'On Transaction',
        ScripAction    => 'Extract Subject Tag',
        Template       => 'Blank' },
+    {  Description    => 'On Correspond, cancel future resolve',
+       ScripCondition => 'On Correspond',
+       ScripAction    => 'Cancel Scheduled Resolve',
+       Template       => 'Blank' },
 );
 
 @ACL = (



More information about the freeside-commits mailing list