[freeside-commits] branch master updated. f5dc45e3e21fc7c3948dd19072fd6448984d31de

Ivan ivan at 420.am
Wed Jul 17 12:12:17 PDT 2013


The branch, master has been updated
       via  f5dc45e3e21fc7c3948dd19072fd6448984d31de (commit)
       via  77df4fc41788698051632d4918da8c69c85125f5 (commit)
       via  e45e9d7f8d717987c08edcb046c6c3e5193c9a7e (commit)
      from  91dbe4c3834f38d428367d9a1e2c6cf9ea9d84a4 (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 f5dc45e3e21fc7c3948dd19072fd6448984d31de
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Jul 17 12:12:16 2013 -0700

    fix invoice un-voids, RT#23857

diff --git a/FS/FS/cust_bill_pkg_tax_location_void.pm b/FS/FS/cust_bill_pkg_tax_location_void.pm
index 9e0794b..a683227 100644
--- a/FS/FS/cust_bill_pkg_tax_location_void.pm
+++ b/FS/FS/cust_bill_pkg_tax_location_void.pm
@@ -119,6 +119,7 @@ sub check {
     || $self->ut_foreign_key('pkgnum', 'cust_pkg', 'pkgnum' )
     || $self->ut_foreign_key('locationnum', 'cust_location', 'locationnum' )
     || $self->ut_money('amount')
+    || $self->ut_foreign_key('taxable_billpkgnum', 'cust_bill_pkg_void', 'billpkgnum')
   ;
   return $error if $error;
 

commit 77df4fc41788698051632d4918da8c69c85125f5
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Jul 17 12:08:12 2013 -0700

    fix invoice un-voids, RT#23857

diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 67e4474..0b47065 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -948,6 +948,7 @@ sub tables_hashref {
         'locationnum',              'int',     '',      '', '', '', #redundant?
         'amount',             @money_type,                  '', '',
         'currency',                'char', 'NULL',       3, '', '',
+        'taxable_billpkgnum',       'int', 'NULL',      '', '', '',
       ],
       'primary_key' => 'billpkgtaxlocationnum',
       'unique' => [],

commit e45e9d7f8d717987c08edcb046c6c3e5193c9a7e
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Jul 17 12:02:42 2013 -0700

    remove redundant column

diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 21af3a4..67e4474 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -841,7 +841,6 @@ sub tables_hashref {
         'locationnum',              'int',     '',      '', '', '', #redundant
         'amount',             @money_type,                  '', '',
         'currency',                'char', 'NULL',       3, '', '',
-        'amount',             @money_type,                  '', '',
         'taxable_billpkgnum',       'int', 'NULL',      '', '', '',
       ],
       'primary_key' => 'billpkgtaxlocationnum',

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

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




More information about the freeside-commits mailing list