[REF] Account: Code clean

bzr revid: mra@mra-laptop-20101005041950-dkfe831bwepwyfmh
This commit is contained in:
Mustufa Rangwala 2010-10-05 09:49:50 +05:30
parent 4deea22ac8
commit 2e3de2d694
2 changed files with 2 additions and 3 deletions

View File

@ -18,7 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from osv import osv, fields
from osv import osv
class account_central_journal(osv.osv_memory):
_name = 'account.central.journal'

View File

@ -29,8 +29,6 @@ class account_partner_balance(osv.osv_memory):
_name = 'account.partner.balance'
_description = 'Print Account Partner Balance'
_columns = {
# 'initial_balance': fields.boolean('Include Initial Balances'
# ,help='It adds initial balance row on report which display previous sum amount of debit/credit/balance'),
'display_partner': fields.selection([('non-zero_balance', 'With balance is not equal to 0'), ('all', 'All Partners')]
,'Display Partners'),
}