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

SF.net SVN: ledger-smb:[5880] branches/1.3



Revision: 5880
          http://sourceforge.net/p/ledger-smb/code/5880
Author:   einhverfr
Date:     2013-05-30 09:41:30 +0000 (Thu, 30 May 2013)
Log Message:
-----------
Fixing addresses not showing up on refresh on customer/vendor invoices and transactions

Modified Paths:
--------------
    branches/1.3/Changelog
    branches/1.3/bin/aa.pl
    branches/1.3/bin/ir.pl
    branches/1.3/bin/is.pl
    branches/1.3/bin/oe.pl

Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog	2013-05-30 09:41:08 UTC (rev 5879)
+++ branches/1.3/Changelog	2013-05-30 09:41:30 UTC (rev 5880)
@@ -19,6 +19,7 @@
 * Fixed code references stringified on LaTeX templates (Chris T, 843)
 * Orders no longer change customer when changing date (Chris T)
 * Fixed toggling on-hold vendor invoices (Herman V)
+* Fixed disappearing addresses on update on invoice screen (Chris T)
 
 Herman V is Herman Vierendeels
 Chris T is Chris Travers

Modified: branches/1.3/bin/aa.pl
===================================================================
--- branches/1.3/bin/aa.pl	2013-05-30 09:41:08 UTC (rev 5879)
+++ branches/1.3/bin/aa.pl	2013-05-30 09:41:30 UTC (rev 5880)
@@ -568,7 +568,7 @@
     $form->hide_form(
         qw(batch_id approved id printed emailed sort closedto locked 
            oldtransdate audittrail recurring checktax reverse batch_id subtype
-           entity_control_code meta_number default_reportable)
+           entity_control_code meta_number default_reportable address city)
     );
 
     if ( $form->{vc} eq 'customer' ) {

Modified: branches/1.3/bin/ir.pl
===================================================================
--- branches/1.3/bin/ir.pl	2013-05-30 09:41:08 UTC (rev 5879)
+++ branches/1.3/bin/ir.pl	2013-05-30 09:41:30 UTC (rev 5880)
@@ -432,7 +432,7 @@
     $form->hide_form(
         qw(id title vc type terms creditlimit creditremaining closedto locked 
            shipped oldtransdate recurring reverse batch_id subtype form_id
-           nextsub default_reportable)
+           nextsub default_reportable address city)
     );
 
     print qq|

Modified: branches/1.3/bin/is.pl
===================================================================
--- branches/1.3/bin/is.pl	2013-05-30 09:41:08 UTC (rev 5879)
+++ branches/1.3/bin/is.pl	2013-05-30 09:41:30 UTC (rev 5880)
@@ -466,7 +466,7 @@
         qw(form_id id type printed emailed queued title vc terms discount 
            creditlimit creditremaining tradediscount business closedto locked 
            shipped oldtransdate recurring reverse batch_id subtype 
-           meta_number nextsub default_reportable)
+           meta_number nextsub default_reportable address city)
     );
 
     if ($form->{notice}){

Modified: branches/1.3/bin/oe.pl
===================================================================
--- branches/1.3/bin/oe.pl	2013-05-30 09:41:08 UTC (rev 5879)
+++ branches/1.3/bin/oe.pl	2013-05-30 09:41:30 UTC (rev 5880)
@@ -608,7 +608,7 @@
     if ($form->{notice}){
          print qq|$form->{notice}<br/>|;
     }
-    $form->hide_form(qw(entity_control_code meta_number));
+    $form->hide_form(qw(entity_control_code meta_number address city));
     $form->hide_form(
         qw(id type formname media format printed emailed queued vc title discount creditlimit creditremaining tradediscount business recurring form_id nextsub)
     );

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.