[MERGE] from trunk

bzr revid: rim@openerp.com-20140429081937-hhqcg84o7iha78fq
This commit is contained in:
Richard Mathot (OpenERP) 2014-04-29 10:19:37 +02:00
commit 65f2db5c21
5873 changed files with 19496 additions and 57133 deletions

View File

@ -840,16 +840,11 @@ class account_journal(osv.osv):
def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=100):
if not args:
args = []
if context is None:
context = {}
ids = []
if context.get('journal_type', False):
args += [('type','=',context.get('journal_type'))]
if name:
ids = self.search(cr, user, [('code', 'ilike', name)]+ args, limit=limit, context=context)
if not ids:
ids = self.search(cr, user, [('name', 'ilike', name)]+ args, limit=limit, context=context)#fix it ilike should be replace with operator
if operator in expression.NEGATIVE_TERM_OPERATORS:
domain = [('code', operator, name), ('name', operator, name)]
else:
domain = ['|', ('code', operator, name), ('name', operator, name)]
ids = self.search(cr, user, expression.AND([domain, args]), limit=limit, context=context)
return self.name_get(cr, user, ids, context=context)
@ -938,13 +933,11 @@ class account_fiscalyear(osv.osv):
def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80):
if args is None:
args = []
if context is None:
context = {}
ids = []
if name:
ids = self.search(cr, user, [('code', 'ilike', name)]+ args, limit=limit)
if not ids:
ids = self.search(cr, user, [('name', operator, name)]+ args, limit=limit)
if operator in expression.NEGATIVE_TERM_OPERATORS:
domain = [('code', operator, name), ('name', operator, name)]
else:
domain = ['|', ('code', operator, name), ('name', operator, name)]
ids = self.search(cr, user, expression.AND([domain, args]), limit=limit, context=context)
return self.name_get(cr, user, ids, context=context)
@ -1040,19 +1033,11 @@ class account_period(osv.osv):
def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=100):
if args is None:
args = []
if context is None:
context = {}
ids = []
if name:
ids = self.search(cr, user,
[('code', 'ilike', name)] + args,
limit=limit,
context=context)
if not ids:
ids = self.search(cr, user,
[('name', operator, name)] + args,
limit=limit,
context=context)
if operator in expression.NEGATIVE_TERM_OPERATORS:
domain = [('code', operator, name), ('name', operator, name)]
else:
domain = ['|', ('code', operator, name), ('name', operator, name)]
ids = self.search(cr, user, expression.AND([domain, args]), limit=limit, context=context)
return self.name_get(cr, user, ids, context=context)
def write(self, cr, uid, ids, vals, context=None):
@ -1187,36 +1172,6 @@ class account_move(osv.osv):
'company_id': company_id,
}
def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80):
"""
Returns a list of tupples containing id, name, as internally it is called {def name_get}
result format: {[(id, name), (id, name), ...]}
@param cr: A database cursor
@param user: ID of the user currently logged in
@param name: name to search
@param args: other arguments
@param operator: default operator is 'ilike', it can be changed
@param context: context arguments, like lang, time zone
@param limit: Returns first 'n' ids of complete result, default is 80.
@return: Returns a list of tuples containing id and name
"""
if not args:
args = []
ids = []
if name:
ids += self.search(cr, user, [('name','ilike',name)]+args, limit=limit, context=context)
if not ids and name and type(name) == int:
ids += self.search(cr, user, [('id','=',name)]+args, limit=limit, context=context)
if not ids:
ids += self.search(cr, user, args, limit=limit, context=context)
return self.name_get(cr, user, ids, context=context)
def name_get(self, cursor, user, ids, context=None):
if isinstance(ids, (int, long)):
ids = [ids]
@ -1842,10 +1797,12 @@ class account_tax_code(osv.osv):
def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80):
if not args:
args = []
if context is None:
context = {}
ids = self.search(cr, user, ['|',('name',operator,name),('code',operator,name)] + args, limit=limit, context=context)
return self.name_get(cr, user, ids, context)
if operator in expression.NEGATIVE_TERM_OPERATORS:
domain = [('code', operator, name), ('name', operator, name)]
else:
domain = ['|', ('code', operator, name), ('name', operator, name)]
ids = self.search(cr, user, expression.AND([domain, args]), limit=limit, context=context)
return self.name_get(cr, user, ids, context=context)
def name_get(self, cr, uid, ids, context=None):
if isinstance(ids, (int, long)):
@ -1974,15 +1931,11 @@ class account_tax(osv.osv):
"""
if not args:
args = []
if context is None:
context = {}
ids = []
if name:
ids = self.search(cr, user, [('description', '=', name)] + args, limit=limit, context=context)
if not ids:
ids = self.search(cr, user, [('name', operator, name)] + args, limit=limit, context=context)
if operator in expression.NEGATIVE_TERM_OPERATORS:
domain = [('description', operator, name), ('name', operator, name)]
else:
ids = self.search(cr, user, args, limit=limit, context=context or {})
domain = ['|', ('description', operator, name), ('name', operator, name)]
ids = self.search(cr, user, expression.AND([domain, args]), limit=limit, context=context)
return self.name_get(cr, user, ids, context=context)
def write(self, cr, uid, ids, vals, context=None):

View File

@ -672,25 +672,14 @@ class account_invoice(osv.osv):
self.create_workflow(cr, uid, ids)
return True
# ----------------------------------------
# Mail related methods
# ----------------------------------------
def _get_formview_action(self, cr, uid, id, context=None):
def get_formview_id(self, cr, uid, id, context=None):
""" Update form view id of action to open the invoice """
action = super(account_invoice, self)._get_formview_action(cr, uid, id, context=context)
obj = self.browse(cr, uid, id, context=context)
if obj.type == 'in_invoice':
model, view_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account', 'invoice_supplier_form')
action.update({
'views': [(view_id, 'form')],
})
else:
model, view_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account', 'invoice_form')
action.update({
'views': [(view_id, 'form')],
})
return action
return view_id
# Workflow stuff
#################

View File

@ -430,6 +430,19 @@ class account_move_line(osv.osv):
elif line.reconcile_partial_id:
res[line.id] = str(line.reconcile_partial_id.name)
return res
def _get_move_from_reconcile(self, cr, uid, ids, context=None):
move = {}
for r in self.pool.get('account.move.reconcile').browse(cr, uid, ids, context=context):
for line in r.line_partial_ids:
move[line.move_id.id] = True
for line in r.line_id:
move[line.move_id.id] = True
move_line_ids = []
if move:
move_line_ids = self.pool.get('account.move.line').search(cr, uid, [('journal_id','in',move.keys())], context=context)
return move_line_ids
_columns = {
'name': fields.char('Name', size=64, required=True),
@ -445,7 +458,8 @@ class account_move_line(osv.osv):
'statement_id': fields.many2one('account.bank.statement', 'Statement', help="The bank statement used for bank reconciliation", select=1),
'reconcile_id': fields.many2one('account.move.reconcile', 'Reconcile', readonly=True, ondelete='set null', select=2),
'reconcile_partial_id': fields.many2one('account.move.reconcile', 'Partial Reconcile', readonly=True, ondelete='set null', select=2),
'reconcile': fields.function(_get_reconcile, type='char', string='Reconcile Ref'),
'reconcile': fields.function(_get_reconcile, type='char', string='Reconcile Ref', store={
'account.move.line': (lambda self, cr, uid, ids, c={}: ids, ['reconcile_id','reconcile_partial_id'], 50),'account.move.reconcile': (_get_move_from_reconcile, None, 50)}),
'amount_currency': fields.float('Amount Currency', help="The amount expressed in an optional other currency if it is a multi-currency entry.", digits_compute=dp.get_precision('Account')),
'amount_residual_currency': fields.function(_amount_residual, string='Residual Amount in Currency', multi="residual", help="The residual amount on a receivable or payable of a journal entry expressed in its currency (maybe different of the company currency)."),
'amount_residual': fields.function(_amount_residual, string='Residual Amount', multi="residual", help="The residual amount on a receivable or payable of a journal entry expressed in the company currency."),
@ -628,7 +642,7 @@ class account_move_line(osv.osv):
(_check_date, 'The date of your Journal Entry is not in the defined period! You should change the date or remove this constraint from the journal.', ['date']),
(_check_currency, 'The selected account of your Journal Entry forces to provide a secondary currency. You should remove the secondary currency on the account or select a multi-currency view on the journal.', ['currency_id']),
(_check_currency_and_amount, "You cannot create journal items with a secondary currency without recording both 'currency' and 'amount currency' field.", ['currency_id','amount_currency']),
(_check_currency_amount, 'The amount expressed in the secondary currency must be positive when the journal item is a debit and negative when if it is a credit.', ['amount_currency']),
(_check_currency_amount, 'The amount expressed in the secondary currency must be positive when account is debited and negative when account is credited.', ['amount_currency']),
(_check_currency_company, "You cannot provide a secondary currency if it is the same than the company one." , ['currency_id']),
]

View File

@ -384,6 +384,7 @@
<group expand="0" string="Group By...">
<filter string="User" context="{'group_by':'user_id'}" icon="terp-personal"/>
<filter string="Type" context="{'group_by':'type'}" icon="terp-stock_symbol-selection"/>
<filter string="Company" context="{'group_by':'company_id'}" icon="terp-go-home" groups="base.group_multi_company"/>
</group>
</search>
</field>
@ -881,6 +882,7 @@
<field name="price_include"/>
<field name="description"/>
<field name="company_id" widget="selection" groups="base.group_multi_company"/>
<field name="type_tax_use" invisible="1"/>
</tree>
</field>
</record>
@ -891,6 +893,12 @@
<search string="Search Taxes">
<field name="name" filter_domain="['|', ('name','ilike',self), ('description','ilike',self)]" string="Tax"/>
<field name="company_id" groups="base.group_multi_company"/>
<filter string="Sale" domain="[('type_tax_use','=','sale')]" />
<filter string="Purchase" domain="[('type_tax_use','=','purchase')]" />
<group string="Group By...">
<filter string="Company" domain="[]" context="{'group_by':'company_id'}"/>
<filter string="Tax Application" domain="[]" context="{'group_by':'type_tax_use'}"/>
</group>
</search>
</field>
</record>
@ -1628,6 +1636,7 @@
<field name="name"/>
<field name="active"/>
</group>
<label for="note"/>
<field name="note" placeholder="Payment term explanation for the customer..."/>
<separator string="Computation"/>
<field name="line_ids"/>
@ -2443,7 +2452,7 @@
<field name="sign"/>
<field name="style_overwrite"/>
</group>
<notebook>
<notebook attrs="{'invisible': [('type','not in',['accounts','account_type'])]}">
<page string="Report">
<group>
<field name="display_detail" attrs="{'invisible': [('type','not in',['accounts','account_type'])]}"/>

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:08+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:30+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:08+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:30+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:09+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:31+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:09+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:31+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:08+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:31+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:09+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:32+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:09+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:32+0000\n"
"X-Generator: Launchpad (build 16985)\n"
"X-Poedit-Language: Czech\n"
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:10+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:32+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:11+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:34+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:12+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:35+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:22+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:46+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:21+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:44+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:19+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:42+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:22+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:45+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:23+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:46+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:23+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:47+0000\n"
"X-Generator: Launchpad (build 16985)\n"
"Language: \n"
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:22+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:46+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -17,8 +17,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:24+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:48+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:24+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:48+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:25+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:49+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:24+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:48+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:24+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:48+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:22+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:45+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:10+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:33+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:08+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:30+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:16+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:39+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:25+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:49+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:10+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:33+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:11+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:34+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: code:addons/account/wizard/account_move_bank_reconcile.py:49

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:21+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:44+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:23+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:46+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:11+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:34+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:12+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:35+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:12+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:35+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:12+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:35+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:41+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:12+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:36+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:13+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:36+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:12+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:36+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:13+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:36+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:13+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:37+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -673,7 +673,7 @@ msgstr "主となる順序は現在と異なる必要があります。"
#: code:addons/account/wizard/account_change_currency.py:70
#, python-format
msgid "Current currency is not configured properly."
msgstr ""
msgstr "現在通貨が正しく設定されていません。"
#. module: account
#: field:account.journal,profit_account_id:0
@ -709,6 +709,8 @@ msgid ""
"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' "
"and 'draft' or ''}"
msgstr ""
"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' "
"and 'draft' or ''}"
#. module: account
#: view:account.period:0
@ -1638,7 +1640,7 @@ msgstr ""
#. module: account
#: view:account.config.settings:0
msgid "eInvoicing & Payments"
msgstr "請求と支払"
msgstr "請求と支払"
#. module: account
#: view:account.analytic.cost.ledger.journal.report:0
@ -2870,7 +2872,7 @@ msgstr "分析勘定"
#: field:account.config.settings,default_purchase_tax:0
#: field:account.config.settings,purchase_tax:0
msgid "Default purchase tax"
msgstr "デフォルト消費税(購入)"
msgstr "デフォルト購買税"
#. module: account
#: view:account.account:0
@ -2883,7 +2885,7 @@ msgstr "デフォルト消費税(購入)"
#: model:ir.ui.menu,name:account.menu_action_account_form
#: model:ir.ui.menu,name:account.menu_analytic
msgid "Accounts"
msgstr "アカウント"
msgstr "勘定科目"
#. module: account
#: code:addons/account/account.py:3541
@ -2955,7 +2957,7 @@ msgstr "参照"
#. module: account
#: view:wizard.multi.charts.accounts:0
msgid "Purchase Tax"
msgstr ""
msgstr "購買税"
#. module: account
#: help:account.move.line,tax_code_id:0
@ -3244,7 +3246,7 @@ msgstr "基本コードの金額"
#. module: account
#: field:wizard.multi.charts.accounts,sale_tax:0
msgid "Default Sale Tax"
msgstr "デフォルト消費税(売上)"
msgstr "デフォルト販売税"
#. module: account
#: help:account.model.line,date_maturity:0
@ -3330,7 +3332,7 @@ msgstr "会計年度の選択"
#: view:account.config.settings:0
#: view:account.installer:0
msgid "Date Range"
msgstr ""
msgstr "日付範囲"
#. module: account
#: view:account.period:0
@ -3416,7 +3418,7 @@ msgstr "合計数量"
#. module: account
#: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0
msgid "Write-Off account"
msgstr "償却アカウント"
msgstr "償却勘定"
#. module: account
#: field:account.model.line,model_id:0
@ -3992,7 +3994,7 @@ msgstr "詳細"
#. module: account
#: help:account.config.settings,default_purchase_tax:0
msgid "This purchase tax will be assigned by default on new products."
msgstr "購税はデフォルトで新製品に割り当てられます。"
msgstr "購税はデフォルトで新製品に割り当てられます。"
#. module: account
#: report:account.invoice:0
@ -5002,7 +5004,7 @@ msgstr "会社の通貨と異なる場合はレポートに通貨欄を追加し
#: code:addons/account/account.py:3394
#, python-format
msgid "Purchase Tax %.2f%%"
msgstr "消費税(仕入) %.2f%%"
msgstr "購買税 %.2f%%"
#. module: account
#: view:account.subscription.generate:0
@ -5046,7 +5048,7 @@ msgstr "新規"
#. module: account
#: view:wizard.multi.charts.accounts:0
msgid "Sale Tax"
msgstr ""
msgstr "販売税"
#. module: account
#: field:account.tax,ref_tax_code_id:0
@ -6303,7 +6305,7 @@ msgstr "日数"
msgid ""
"You cannot validate this journal entry because account \"%s\" does not "
"belong to chart of accounts \"%s\"."
msgstr ""
msgstr "勘定科目「%s」は勘定科目表「%s」に含まれないため、この仕訳を確定できません。"
#. module: account
#: view:account.financial.report:0
@ -7593,7 +7595,7 @@ msgstr "請求年によるグループ"
#. module: account
#: field:account.config.settings,purchase_tax_rate:0
msgid "Purchase tax (%)"
msgstr ""
msgstr "購買税(%)"
#. module: account
#: help:res.partner,credit:0
@ -7647,7 +7649,7 @@ msgstr "銀行取引明細書行"
#. module: account
#: field:wizard.multi.charts.accounts,purchase_tax:0
msgid "Default Purchase Tax"
msgstr "デフォルト消費税(仕入)"
msgstr "デフォルト購買税"
#. module: account
#: field:account.chart.template,property_account_income_opening:0
@ -9326,7 +9328,7 @@ msgstr "会計データ設定"
#. module: account
#: field:wizard.multi.charts.accounts,purchase_tax_rate:0
msgid "Purchase Tax(%)"
msgstr "消費税(仕入)(%"
msgstr "購買税(%)"
#. module: account
#: code:addons/account/account_invoice.py:901
@ -9706,7 +9708,7 @@ msgstr "一般的なレポート"
#: field:account.config.settings,default_sale_tax:0
#: field:account.config.settings,sale_tax:0
msgid "Default sale tax"
msgstr "デフォルト消費税(販売)"
msgstr "デフォルト販売税"
#. module: account
#: report:account.overdue:0
@ -9943,7 +9945,7 @@ msgstr "分析勘定より"
#. module: account
#: view:account.installer:0
msgid "Configure your Fiscal Year"
msgstr ""
msgstr "会計年度設定"
#. module: account
#: field:account.period,name:0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:13+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:37+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:13+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:37+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:14+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:37+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:14+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:37+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:14+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:38+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:14+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:38+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:14+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:38+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:15+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:38+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:15+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:39+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:10+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:33+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#, python-format
#~ msgid "Integrity Error !"
@ -1372,7 +1372,7 @@ msgstr "Vervangende belasting"
#. module: account
#: selection:account.move.line,centralisation:0
msgid "Credit Centralisation"
msgstr "Credit centralisatie"
msgstr "Totaal credit"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form
@ -2891,7 +2891,7 @@ msgstr "Grondslag teken (+/-)"
#. module: account
#: selection:account.move.line,centralisation:0
msgid "Debit Centralisation"
msgstr "Verzameld debet"
msgstr "Totaal debet"
#. module: account
#: view:account.invoice.confirm:0
@ -3333,8 +3333,8 @@ msgid ""
"You need an Opening journal with centralisation checked to set the initial "
"balance."
msgstr ""
"U dient een peningsbalans opgeven in een openingsdagboek met de instelling "
"'gecentraliseerde tegenboeking'."
"U dient een openingsbalans opgeven in een openingsdagboek met de instelling "
"'Centrale tegenrekening'."
#. module: account
#: model:ir.actions.act_window,name:account.action_tax_code_list
@ -6271,7 +6271,7 @@ msgstr "Vul dit formulier in als u geld in de kassa stopt."
#: view:account.payment.term.line:0
#: field:account.payment.term.line,value_amount:0
msgid "Amount To Pay"
msgstr "Te betalen bedrag"
msgstr "Bedrag te betalen"
#. module: account
#: help:account.partner.reconcile.process,to_reconcile:0
@ -7367,7 +7367,7 @@ msgstr "Boekingsregels"
#. module: account
#: field:account.move.line,centralisation:0
msgid "Centralisation"
msgstr "Centralisatie"
msgstr "Balansboekingen"
#. module: account
#: view:account.account:0
@ -9691,7 +9691,7 @@ msgstr ""
#: code:addons/account/account_move_line.py:1006
#, python-format
msgid "The account move (%s) for centralisation has been confirmed."
msgstr "De boeking (%s) voor voor centralisatie is bevestigd."
msgstr "De balansboeking (%s) is bevestigd."
#. module: account
#: report:account.analytic.account.journal:0
@ -10491,7 +10491,7 @@ msgstr "Directe betaling"
#: code:addons/account/account.py:1502
#, python-format
msgid " Centralisation"
msgstr " Centralisatie"
msgstr " Balansboeking"
#. module: account
#: help:account.journal,type:0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:23+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:47+0000\n"
"X-Generator: Launchpad (build 16985)\n"
"Language: nl\n"
#. module: account

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:15+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:39+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:16+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:39+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -184,6 +184,13 @@ msgid ""
" </p>\n"
" "
msgstr ""
"<p class=\"oe_view_nocontent_create\">\n"
"Kliknij aby utworzyć okres rozliczeniowy.\n"
"</p><p>\n"
"Typowo, rozliczeniowym okresem księgowym jest miesiąc lub kwartał.\n"
"On odpowiada okresom rozliczeń podatkowych.\n"
"</p>\n"
" "
#. module: account
#: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard
@ -718,6 +725,8 @@ msgid ""
"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' "
"and 'draft' or ''}"
msgstr ""
"Faktura_${(object.number or '').replace('/','_')}_${object.state == 'draft' "
"and 'draft' or ''}"
#. module: account
#: view:account.period:0
@ -1793,7 +1802,7 @@ msgstr "Konto podatku dla korekt"
#. module: account
#: model:ir.model,name:account.model_ir_sequence
msgid "ir.sequence"
msgstr ""
msgstr "ir.sequence"
#. module: account
#: view:account.bank.statement:0
@ -2356,7 +2365,7 @@ msgstr "Dobra robota!"
#. module: account
#: field:account.config.settings,module_account_asset:0
msgid "Assets management"
msgstr "Środku trwałe"
msgstr "Środki trwałe"
#. module: account
#: view:account.account:0
@ -7563,7 +7572,7 @@ msgstr ""
#. module: account
#: field:account.invoice,paypal_url:0
msgid "Paypal Url"
msgstr ""
msgstr "Paypal Url"
#. module: account
#: field:account.config.settings,module_account_voucher:0
@ -8352,7 +8361,7 @@ msgstr ""
#. module: account
#: model:ir.model,name:account.model_cash_box_in
msgid "cash.box.in"
msgstr ""
msgstr "cash.box.in"
#. module: account
#: help:account.invoice,move_id:0
@ -8362,7 +8371,7 @@ msgstr "Połącz z automatycznie generowanymi pozycjami zapisów"
#. module: account
#: model:ir.model,name:account.model_account_config_settings
msgid "account.config.settings"
msgstr ""
msgstr "account.config.settings"
#. module: account
#: selection:account.config.settings,period:0
@ -8677,7 +8686,7 @@ msgstr "Brak roku podatkowego dla firmy"
#. module: account
#: view:account.invoice:0
msgid "Proforma"
msgstr ""
msgstr "Proforma"
#. module: account
#: report:account.analytic.account.cost_ledger:0
@ -8951,7 +8960,7 @@ msgstr "Typy kont"
#. module: account
#: model:email.template,subject:account.email_template_edi_invoice
msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})"
msgstr ""
msgstr "${object.company_id.name} Faktura (Odn. ${object.number or 'n/a'})"
#. module: account
#: code:addons/account/account_move_line.py:1210

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:16+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:21+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:45+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:17+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:17+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:41+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:41+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:42+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:08+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:29+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:17+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:41+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:25+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:49+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:19+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:42+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:19+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:42+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:19+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:43+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:19+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:43+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:19+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:43+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:20+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:43+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:20+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:43+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:20+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:44+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:20+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:44+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:21+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:44+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:24+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:47+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:21+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:44+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:23+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 06:47+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0

View File

@ -97,7 +97,7 @@
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<page name="sales_purchases" position="after" version="7.0">
<page string="Accounting" col="4" name="accounting" attrs="{'invisible': [('is_company','=',False),('parent_id','!=',False)]}">
<page string="Accounting" col="4" name="accounting" attrs="{'invisible': [('is_company','=',False),('parent_id','!=',False)]}" groups="account.group_account_invoice">
<group>
<group>
<field name="property_account_position" widget="selection"/>
@ -127,7 +127,7 @@
</tree>
</field>
</page>
<page string="Accounting" name="accounting_disabled" attrs="{'invisible': ['|',('is_company','=',True),('parent_id','=',False)]}">
<page string="Accounting" name="accounting_disabled" attrs="{'invisible': ['|',('is_company','=',True),('parent_id','=',False)]}" groups="account.group_account_invoice">
<div>
<p>Accounting-related settings are managed on <button name="open_commercial_entity" type="object" string="the parent company" class="oe_link"/></p>
</div>

View File

@ -259,6 +259,12 @@ class account_config_settings(osv.osv_memory):
def onchange_tax_rate(self, cr, uid, ids, rate, context=None):
return {'value': {'purchase_tax_rate': rate or False}}
def onchange_multi_currency(self, cr, uid, ids, group_multi_currency, context=None):
res = {}
if not group_multi_currency:
res['value'] = {'income_currency_exchange_account_id': False, 'expense_currency_exchange_account_id': False}
return res
def onchange_start_date(self, cr, uid, id, start_date):
if start_date:
start_date = datetime.datetime.strptime(start_date, "%Y-%m-%d")

View File

@ -122,7 +122,7 @@
<label for="id" string="Features"/>
<div>
<div name="group_multi_currency">
<field name="group_multi_currency" class="oe_inline"/>
<field name="group_multi_currency" class="oe_inline" on_change="onchange_multi_currency(group_multi_currency)"/>
<label for="group_multi_currency"/>
</div>
<div>

View File

@ -165,7 +165,7 @@ class account_invoice_refund(osv.osv_memory):
to_reconcile_ids = {}
for line in movelines:
if line.account_id.id == inv.account_id.id:
to_reconcile_ids[line.account_id.id] = [line.id]
to_reconcile_ids.setdefault(line.account_id.id, []).append(line.id)
if line.reconcile_id:
line.reconcile_id.unlink()
inv_obj.signal_invoice_open(cr, uid, [refund.id])

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -14,8 +14,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
#. module: account_accountant
#: model:ir.actions.client,name:account_accountant.action_client_account_menu

View File

@ -15,8 +15,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 08:18+0000\n"
"X-Generator: Launchpad (build 16976)\n"
"X-Launchpad-Export-Date: 2014-04-22 07:40+0000\n"
"X-Generator: Launchpad (build 16985)\n"
"Language: es\n"
#. module: account_accountant

Some files were not shown because too many files have changed in this diff Show More