[freeside-commits] branch master updated. 672d03e59170ce51e02a7577677f5ee0ed542f39

Ivan ivan at 420.am
Mon Jun 9 20:19:55 PDT 2014


The branch, master has been updated
       via  672d03e59170ce51e02a7577677f5ee0ed542f39 (commit)
      from  26a32660f45092621bf21b445692b3e1f6e820ad (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 672d03e59170ce51e02a7577677f5ee0ed542f39
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Mon Jun 9 20:19:51 2014 -0700

    don't allow empty dates in payables

diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index fb02e6b..c579c2b 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -6455,7 +6455,8 @@ sub tables_hashref {
       'columns' => [
         'vendbillnum',    'serial',     '',      '', '', '', 
         'vendnum',           'int',     '',      '', '', '', 
-        '_date',        @date_type,                  '', '', 
+        #'_date',        @date_type,                  '', '', 
+        '_date',     'int', '', '',                   '', '', 
         'charged',     @money_type,                  '', '', 
       ],
       'primary_key'  => 'vendbillnum',
@@ -6472,7 +6473,8 @@ sub tables_hashref {
       'columns' => [
         'vendpaynum',   'serial',    '',       '', '', '',
         'vendnum',         'int',    '',       '', '', '', 
-        '_date',     @date_type,                   '', '', 
+        #'_date',     @date_type,                   '', '', 
+        '_date',     'int', '', '',                   '', '', 
         'paid',      @money_type,                  '', '', 
       ],
       'primary_key'  => 'vendpaynum',

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/Schema.pm |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)




More information about the freeside-commits mailing list