commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue/gnue-config/accounting/gl/classes gl_acct....


From: Neil Tiffin
Subject: gnue/gnue-config/accounting/gl/classes gl_acct....
Date: Wed, 27 Jun 2001 11:43:03 -0700

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Neil Tiffin <address@hidden>    01/06/27 11:43:03

Modified files:
        gnue-config/accounting/gl/classes: gl_acct.gcd gl_post.gcd 

Log message:
        Correct syntax and add enum for posting type.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-config/accounting/gl/classes/gl_acct.gcd.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-config/accounting/gl/classes/gl_post.gcd.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: gnue/gnue-config/accounting/gl/classes/gl_acct.gcd
diff -u gnue/gnue-config/accounting/gl/classes/gl_acct.gcd:1.3 
gnue/gnue-config/accounting/gl/classes/gl_acct.gcd:1.4
--- gnue/gnue-config/accounting/gl/classes/gl_acct.gcd:1.3      Wed Jun 27 
09:18:29 2001
+++ gnue/gnue-config/accounting/gl/classes/gl_acct.gcd  Wed Jun 27 11:43:03 2001
@@ -24,7 +24,7 @@
 # Based on concepts and documents from Louis Charbonneau and
 # Stanley A. Klein.
 #
-# $Id: gl_acct.gcd,v 1.3 2001/06/27 16:18:29 ntiffin Exp $
+# $Id: gl_acct.gcd,v 1.4 2001/06/27 18:43:03 ntiffin Exp $
 #
 
 module gl_acct
@@ -67,7 +67,7 @@
     char    name<16>;       # GL Account Activity Status Active,
                             # Inactive, Deactivated
     boolean post;           # Can post to this account.
-  }
+  };
   
   # the account class defines the natural account code exclusive
   # of the other segments of the full account code.
Index: gnue/gnue-config/accounting/gl/classes/gl_post.gcd
diff -u gnue/gnue-config/accounting/gl/classes/gl_post.gcd:1.1 
gnue/gnue-config/accounting/gl/classes/gl_post.gcd:1.2
--- gnue/gnue-config/accounting/gl/classes/gl_post.gcd:1.1      Wed Jun 27 
10:44:50 2001
+++ gnue/gnue-config/accounting/gl/classes/gl_post.gcd  Wed Jun 27 11:43:03 2001
@@ -24,38 +24,39 @@
 # Based on concepts and documents from Louis Charbonneau and
 # Stanley A. Klein.
 #
-# $Id: gl_post.gcd,v 1.1 2001/06/27 17:44:50 ntiffin Exp $
+# $Id: gl_post.gcd,v 1.2 2001/06/27 18:43:03 ntiffin Exp $
 #
 
 module gl_post
 {
-  # types of posting available, real time, batch, or
-  # batch detailed.
-  class type
+  # types of posting available
+  enum type
   {
-    char   name<16>;
+    realtime,
+    batch,
+    detail     # batch detail
   };
   
   class parameters
   {
     char       enterprise_code<8>; # Enterprise Code
-    char       sj_posting<16>   ;  # Sales Journal posting to GL This
+    enum gl_post::type   sj;       # Sales Journal posting to GL This
                                    # parameter can take 3 values : Real
                                    # Time = Simultaneaously post to AR
                                    # Sub.
-    gl_post::type       *cr;       # Cash Receipt posting to GL Real Time,
+    enum gl_post::type   cr;       # Cash Receipt posting to GL Real Time,
                                    # Batch or Batch Detailed
-    gl_post::type       *pj;       # Purchase Journal posting to GL Real
+    enum gl_post::type   pj;       # Purchase Journal posting to GL Real
                                    # Time, Batch or Batch Detailed
-    gl_post::type       *pj;       # Purchase Journal posting to GL Real
+    enum gl_post::type   pj;       # Purchase Journal posting to GL Real
                                    # Time, Batch or Batch Detailed
-    gl_post::type       *cd;       # Cash Disbursement posting to GL Real
+    enum gl_post::type   cd;       # Cash Disbursement posting to GL Real
                                    # Time, Batch or Batch Detailed
-    gl_post::type       *ic;       # Stocks Receiving posting to GL Real
+    enum gl_post::type   ic;       # Stocks Receiving posting to GL Real
                                    # Time, Batch or Batch Detailed
-    gl_post::type       *pr;       # Payroll posting to GL Real Time,
+    enum gl_post::type   pr;       # Payroll posting to GL Real Time,
                                    # Batch or Batch Detailed
-    gl_post::type       *br;       # Bank reconciliation posting to GL
+    enum gl_post::type   br;       # Bank reconciliation posting to GL
                                    # Real Time, Batch or Batch Detailed
                                    
     # TODO these next three should be reviewed



reply via email to

[Prev in Thread] Current Thread [Next in Thread]