[MERGE] from trunk

bzr revid: rim@openerp.com-20140429124452-5cvpmtpyz2daj8w2
This commit is contained in:
Richard Mathot (OpenERP) 2014-04-29 14:44:52 +02:00
commit d0e9ba289f
5650 changed files with 18778 additions and 17213 deletions

View File

@ -116,12 +116,10 @@ for a particular financial year and for preparation of vouchers there is a modul
'account_assert_test.xml', 'account_assert_test.xml',
'ir_sequence_view.xml', 'ir_sequence_view.xml',
'company_view.xml', 'company_view.xml',
'board_account_view.xml',
'edi/invoice_action_data.xml', 'edi/invoice_action_data.xml',
'account_bank_view.xml', 'account_bank_view.xml',
'res_config_view.xml', 'res_config_view.xml',
'account_pre_install.yml', 'account_pre_install.yml',
'views/report_vat.xml', 'views/report_vat.xml',
'views/report_invoice.xml', 'views/report_invoice.xml',
'views/report_trialbalance.xml', 'views/report_trialbalance.xml',

View File

@ -430,6 +430,19 @@ class account_move_line(osv.osv):
elif line.reconcile_partial_id: elif line.reconcile_partial_id:
res[line.id] = str(line.reconcile_partial_id.name) res[line.id] = str(line.reconcile_partial_id.name)
return res 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 = { _columns = {
'name': fields.char('Name', size=64, required=True), '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), '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_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_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_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_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."), '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_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, '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_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']), (_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..."> <group expand="0" string="Group By...">
<filter string="User" context="{'group_by':'user_id'}" icon="terp-personal"/> <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="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> </group>
</search> </search>
</field> </field>
@ -881,6 +882,7 @@
<field name="price_include"/> <field name="price_include"/>
<field name="description"/> <field name="description"/>
<field name="company_id" widget="selection" groups="base.group_multi_company"/> <field name="company_id" widget="selection" groups="base.group_multi_company"/>
<field name="type_tax_use" invisible="1"/>
</tree> </tree>
</field> </field>
</record> </record>
@ -891,6 +893,12 @@
<search string="Search Taxes"> <search string="Search Taxes">
<field name="name" filter_domain="['|', ('name','ilike',self), ('description','ilike',self)]" string="Tax"/> <field name="name" filter_domain="['|', ('name','ilike',self), ('description','ilike',self)]" string="Tax"/>
<field name="company_id" groups="base.group_multi_company"/> <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> </search>
</field> </field>
</record> </record>
@ -1628,6 +1636,7 @@
<field name="name"/> <field name="name"/>
<field name="active"/> <field name="active"/>
</group> </group>
<label for="note"/>
<field name="note" placeholder="Payment term explanation for the customer..."/> <field name="note" placeholder="Payment term explanation for the customer..."/>
<separator string="Computation"/> <separator string="Computation"/>
<field name="line_ids"/> <field name="line_ids"/>
@ -2443,7 +2452,7 @@
<field name="sign"/> <field name="sign"/>
<field name="style_overwrite"/> <field name="style_overwrite"/>
</group> </group>
<notebook> <notebook attrs="{'invisible': [('type','not in',['accounts','account_type'])]}">
<page string="Report"> <page string="Report">
<group> <group>
<field name="display_detail" attrs="{'invisible': [('type','not in',['accounts','account_type'])]}"/> <field name="display_detail" attrs="{'invisible': [('type','not in',['accounts','account_type'])]}"/>

View File

@ -1,46 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="action_company_analysis_tree" model="ir.actions.act_window">
<field name="name">Company Analysis</field>
<field name="res_model">account.entries.report</field>
<field name="view_type">form</field>
<field name="view_mode">tree,graph</field>
<field name="context">{'group_by':['user_type'], 'group_by_no_leaf':1}</field>
<field name="view_id" ref="account.view_account_entries_report_tree"/>
<field name="domain">[('year','=',time.strftime('%Y'))]</field>
</record>
<record id="board_account_form" model="ir.ui.view">
<field name="name">board.account.form</field>
<field name="model">board.board</field>
<field name="arch" type="xml">
<form string="Account Board" version="7.0">
<board style="2-1">
<column>
<action name="%(action_company_analysis_tree)d" string="Company Analysis"/>
</column>
</board>
</form>
</field>
</record>
<record id="open_board_account" model="ir.actions.act_window">
<field name="name">Accounting</field>
<field name="res_model">board.board</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="usage">menu</field>
<field name="view_id" ref="board_account_form"/>
</record>
<menuitem id="menu_board_account"
action="open_board_account"
icon="terp-graph"
parent="base.menu_reporting_dashboard"
groups="group_account_user,group_account_manager"
sequence="45"/>
</data>
</openerp>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -13,8 +13,8 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-12 07:23+0000\n" "X-Launchpad-Export-Date: 2014-04-22 06:47+0000\n"
"X-Generator: Launchpad (build 16976)\n" "X-Generator: Launchpad (build 16985)\n"
#. module: account #. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0 #: 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="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<page name="sales_purchases" position="after" version="7.0"> <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>
<group> <group>
<field name="property_account_position" widget="selection"/> <field name="property_account_position" widget="selection"/>
@ -127,7 +127,7 @@
</tree> </tree>
</field> </field>
</page> </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> <div>
<p>Accounting-related settings are managed on <button name="open_commercial_entity" type="object" string="the parent company" class="oe_link"/></p> <p>Accounting-related settings are managed on <button name="open_commercial_entity" type="object" string="the parent company" class="oe_link"/></p>
</div> </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): def onchange_tax_rate(self, cr, uid, ids, rate, context=None):
return {'value': {'purchase_tax_rate': rate or False}} 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): def onchange_start_date(self, cr, uid, id, start_date):
if start_date: if start_date:
start_date = datetime.datetime.strptime(start_date, "%Y-%m-%d") start_date = datetime.datetime.strptime(start_date, "%Y-%m-%d")

View File

@ -122,7 +122,7 @@
<label for="id" string="Features"/> <label for="id" string="Features"/>
<div> <div>
<div name="group_multi_currency"> <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"/> <label for="group_multi_currency"/>
</div> </div>
<div> <div>

View File

@ -35,7 +35,7 @@ in one place. OpenERP's user interface is designed with productivity in mind.
<div class="oe_span6"> <div class="oe_span6">
<img class="oe_picture oe_screenshot" src="account_sc_01.png"> <img class="oe_picture oe_screenshot" src="account_sc_01.png">
</div> </div>
</div> </div>
</section> </section>
@ -60,7 +60,7 @@ Share access to your latest business numbers with your team and your accountant
<p class='oe_mt32'> <p class='oe_mt32'>
Import your bank statements and reconcile them in just a few clicks. Prepare payment orders based on your supplier invoices and payment terms. Import your bank statements and reconcile them in just a few clicks. Prepare payment orders based on your supplier invoices and payment terms.
</p> </p>
</div> </div>
<div class="oe_span6"> <div class="oe_span6">
<img class="oe_picture" src="account_illu_01.png"> <img class="oe_picture" src="account_illu_01.png">
</div> </div>
@ -90,7 +90,7 @@ Create and send professional invoices &amp; get paid online. Get rid of the stre
<p class='oe_mt32'> <p class='oe_mt32'>
Automatically create invoices from sales orders, delivery orders or base them on time and material. Re-invoice expenses on projects to your customer in just a few clicks. Automatically create invoices from sales orders, delivery orders or base them on time and material. Re-invoice expenses on projects to your customer in just a few clicks.
</p> </p>
</div> </div>
<div class="oe_span6"> <div class="oe_span6">
<img class="oe_picture oe_screenshot" src="account_sc_04.png"> <img class="oe_picture oe_screenshot" src="account_sc_04.png">
</div> </div>
@ -119,7 +119,7 @@ Control supplier invocies based on purchase orders. Get real-time inventory valu
<p class='oe_mt32'> <p class='oe_mt32'>
Integrate your analytic accounting operations with timesheets, projects, invoices, expenses, etc. No need to record transactions, all analytic entries are posted automatically following your business rules. Integrate your analytic accounting operations with timesheets, projects, invoices, expenses, etc. No need to record transactions, all analytic entries are posted automatically following your business rules.
</p> </p>
</div> </div>
<div class="oe_span6"> <div class="oe_span6">
<img class="oe_picture oe_screenshot" src="account_sc_06.png"> <img class="oe_picture oe_screenshot" src="account_sc_06.png">
</div> </div>
@ -133,7 +133,7 @@ Integrate your analytic accounting operations with timesheets, projects, invoice
<div class="oe_span6"> <div class="oe_span6">
<img src="account_illu_02.png"> <img src="account_illu_02.png">
</div> </div>
<div class="oe_span6"> <div class="oe_span6">
<p class='oe_mt32'> <p class='oe_mt32'>
Manage your assets, track expenses, control budgets, multi-level analytic accounting; OpenERP has all the features you need to sustain all your business activities. Manage your assets, track expenses, control budgets, multi-level analytic accounting; OpenERP has all the features you need to sustain all your business activities.
</p> </p>
@ -143,34 +143,21 @@ Manage your assets, track expenses, control budgets, multi-level analytic accoun
<section class="oe_container oe_dark"> <section class="oe_container oe_dark">
<div class="oe_row"> <div class="oe_row">
<h2 class="oe_slogan">Scale With Your Organization</h2> <h2 class="oe_slogan">Scale With Your Organization</h2>
<h3 class="oe_slogan">Used by very small to very large organizations</h3> <h3 class="oe_slogan">Used by very small to very large organizations</h3>
<div class="oe_span6"> <div class="oe_span6">
<p class='oe_mt32'> <p class='oe_mt32'>
OpenERP supports multiple currencies, multiple users with different access rights, multiple companies with real time consolidation and unlimited analytic plans. OpenERP supports multiple currencies, multiple users with different access rights, multiple companies with real time consolidation and unlimited analytic plans.
</p> </p>
</div> </div>
<div class="oe_span6"> <div class="oe_span6">
<img class="oe_picture oe_screenshot" src="account_illu_03.png"> <img class="oe_picture oe_screenshot" src="account_illu_03.png">
</div> </div>
</div> </div>
</section> </section>
<section class="oe_container"> <section class="oe_container">
<div class="oe_row">
<h2 class="oe_slogan">Dashboard & KPIs</h2>
<div class="oe_span6">
<img class="oe_picture oe_screenshot" src="account_sc_06.png">
</div>
<div class="oe_span6">
<p class='oe_mt32'>
Get direct access to key information with dynamic and customizable dashboards. Analyse your financial activities with the drill-up, drill-down, drill-across and filter features.
</p>
</div>
</div>
</section>
<section class="oe_container oe_dark">
<div class="oe_row"> <div class="oe_row">
<div class="oe_span12"> <div class="oe_span12">
<h2 class="oe_slogan">Many companies already enjoy it</h2> <h2 class="oe_slogan">Many companies already enjoy it</h2>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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