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

SF.net SVN: ledger-smb:[5875] trunk



Revision: 5875
          http://sourceforge.net/p/ledger-smb/code/5875
Author:   einhverfr
Date:     2013-05-27 07:31:04 +0000 (Mon, 27 May 2013)
Log Message:
-----------
Fixing addresses disappearing on invoice/order update

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

Modified: trunk/Changelog
===================================================================
--- trunk/Changelog	2013-05-26 20:50:49 UTC (rev 5874)
+++ trunk/Changelog	2013-05-27 07:31:04 UTC (rev 5875)
@@ -103,6 +103,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: trunk/bin/aa.pl
===================================================================
--- trunk/bin/aa.pl	2013-05-26 20:50:49 UTC (rev 5874)
+++ trunk/bin/aa.pl	2013-05-27 07:31:04 UTC (rev 5875)
@@ -548,7 +548,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: trunk/bin/ir.pl
===================================================================
--- trunk/bin/ir.pl	2013-05-26 20:50:49 UTC (rev 5874)
+++ trunk/bin/ir.pl	2013-05-27 07:31:04 UTC (rev 5875)
@@ -462,7 +462,7 @@
     $form->hide_form(
         qw(id title vc type terms creditlimit creditremaining closedto locked 
            shipped oldtransdate recurring reverse batch_id subtype form_id
-           separate_duties nextsub default_reportable)
+           separate_duties nextsub default_reportable address city)
     );
 
     print qq|

Modified: trunk/bin/is.pl
===================================================================
--- trunk/bin/is.pl	2013-05-26 20:50:49 UTC (rev 5874)
+++ trunk/bin/is.pl	2013-05-27 07:31:04 UTC (rev 5875)
@@ -472,7 +472,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 separate_duties nextsub default_reportable)
+           meta_number separate_duties nextsub default_reportable address city)
     );
 
     if ($form->{notice}){

Modified: trunk/bin/oe.pl
===================================================================
--- trunk/bin/oe.pl	2013-05-26 20:50:49 UTC (rev 5874)
+++ trunk/bin/oe.pl	2013-05-27 07:31:04 UTC (rev 5875)
@@ -615,7 +615,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.