[FIX] fix wrong spelling

This commit is contained in:
Sebastien Beau
2014-03-11 00:41:33 +01:00
parent 3e0c34c00f
commit a0651738d1
3 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@
'description': """This module allows you to use check deposits.
With a new model : account_check_deposit you can select all
the checks payments and create a global deposit for the selected checks.
You may have to create an account for recieved checks and a journal for payment by checks.""",
You may have to create an account for received checks and a journal for payment by checks.""",
'author': 'Akretion',
'website': 'http://www.akretion.com/',
'depends': ['account_accountant',

View File

@@ -54,7 +54,7 @@
<field name="check_payment_ids" nolabel="1"
colspan="4" widget="many2many"
domain="[('reconcile_id','=',False),
('account_id.user_type.code','=','recieved_check')]">
('account_id.user_type.code','=','received_check')]">
<tree string="Check Payment">
<field name="journal_id" />
<field name="period_id" />

View File

@@ -11,8 +11,8 @@
<!-- New account.account.type -->
<record model="account.account.type" id="data_account_type_received_check">
<field name="name">Recieved Checks</field>
<field name="code">recieved_check</field>
<field name="name">Received Checks</field>
<field name="code">received_check</field>
<field name="close_method">none</field>
</record>