From: Benjamin L. <ben...@co...> - 2001-05-31 22:15:14
|
In reference to v1.4.4, I think there is a small bug in rp.pl, where the Retained Earnings should be the last equity account, so should be pushed after the call to ->balance_sheet, not before. In this order: $form->{period} = $form->current_date(\%myconfig); RP->balance_sheet(\%myconfig, \%$form); # define Retained Earnings account push(@{$form->{equity_account}}, $locale->text('Retained Earnings')); Not this: # define Retained Earnings account push(@{$form->{equity_account}}, $locale->text('Retained Earnings')); $form->{period} = $form->current_date(\%myconfig); RP->balance_sheet(\%myconfig, \%$form); -- B. http://makelinux.org/ "Always real." http://realthought.net/ __________________________________________________________________________ He who despises himself nevertheless esteems himself as a self-despiser. -- Friedrich Nietzsche |