bzr revid: fp@tinyerp.com-aa2df8032645d0ff0620281032043dab141b59da
This commit is contained in:
Fabien Pinckaers 2007-06-06 12:25:36 +00:00
parent a1f9d51cba
commit 9d7f377b52
4 changed files with 8 additions and 8 deletions

View File

@ -350,9 +350,9 @@ class account_journal(osv.osv):
'view_id': fields.many2one('account.journal.view', 'View', required=True, help="Gives the view used when writing or browsing entries in this journal. The view tell Tiny ERP which fields should be visible, required or readonly and in which order. You can create your own view for a faster encoding in each journal."),
'default_credit_account_id': fields.many2one('account.account', 'Default Credit Account'),
'default_debit_account_id': fields.many2one('account.account', 'Default Debit Account'),
'centralisation': fields.boolean('Centralisation', help="Use a centralisation journal if you want that each entry doesn't create a counterpart but share the same counterpart for each entry of this journal."),
'centralisation': fields.boolean('Centralised counterpart', help="Check this box if you want that each entry doesn't create a counterpart but share the same counterpart for each entry of this journal."),
'update_posted': fields.boolean('Allow Cancelling Entries'),
'sequence_id': fields.many2one('ir.sequence', 'Entry Sequence', help="The sequence gives the display order for a list of journals"),
'sequence_id': fields.many2one('ir.sequence', 'Entry Sequence', help="The sequence gives the display order for a list of journals", required=True),
'user_id': fields.many2one('res.users', 'User', help="The responsible user of this journal"),
'groups_id': fields.many2many('res.groups', 'account_journal_group_rel', 'journal_id', 'group_id', 'Groups'),
}

View File

@ -9,7 +9,7 @@
auto="False"
menu="False"/>
<report id="account_3rdparty_ledger"
string="Third party ledger"
string="Partner ledger"
model="res.partner"
name="account.third_party_ledger"
rml="account/report/third_party_ledger.rml"
@ -23,7 +23,7 @@
auto="False"
menu="False"/>
<report id="account_3rdparty_account_balance"
string="Third party balance"
string="Partner balance"
model="account.account"
name="account.partner.balance"
rml="account/report/partner_balance.rml"

View File

@ -132,19 +132,19 @@
menu="False"
id="wizard_partner_balance_report"/>
<menuitem
name="Financial Management/Reporting/Third party balance"
name="Financial Management/Reporting/Partner balance"
action="wizard_partner_balance_report"
type="wizard"
id="menu_partner_balance"/>
<wizard
string="Third party ledger"
string="Partner ledger"
model="res.partner"
name="account.third_party_ledger.report"
menu="False"
id="wizard_third_party_ledger"/>
<menuitem
name="Financial Management/Reporting/Third party ledger"
name="Financial Management/Reporting/Partner ledger"
action="wizard_third_party_ledger"
type="wizard"
id="menu_third_party_ledger"/>

View File

@ -18,7 +18,7 @@
id="act_my_project"/>
<act_window name="My accounts to invoice"
domain="[('user_id','=',uid),('state','&ltk&gt;','close'),('partner_id','&lt;&gt;',False)]"
domain="[('user_id','=',uid),('state','&lt;&gt;','close'),('partner_id','&lt;&gt;',False)]"
res_model="account.analytic.account"
src_model="res.users"
view_type="form"