[MERGE]with main branch

bzr revid: jpr@tinyerp.com-20140424050125-c58ek4dlw5805k29
This commit is contained in:
Jitendra Prajapati (OpenERP) 2014-04-24 10:31:25 +05:30
commit 9c051c5bd9
5724 changed files with 19979 additions and 15990 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

@ -1628,6 +1628,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 +2444,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

@ -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

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"
#. 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

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