Merged with Master Branch

bzr revid: mso@mso-20100311070235-7c7vt03horm3bnjc
This commit is contained in:
mso 2010-03-11 12:32:35 +05:30
commit e50c9fa922
3774 changed files with 85959 additions and 11767 deletions

View File

@ -38,6 +38,7 @@
'website': 'http://www.openerp.com',
'init_xml': [],
'update_xml': [
#'test/test_parent_structure.yml',
'security/account_security.xml',
'security/ir.model.access.csv',
'account_menuitem.xml',
@ -62,6 +63,7 @@
'account_installer.xml',
],
'demo_xml': [
#'demo/price_accuracy00.yml',
'account_demo.xml',
'project/project_demo.xml',
'project/analytic_account_demo.xml',

View File

@ -25,7 +25,7 @@ write({'state':'proforma'})</field>
</record>
<record id="act_proforma2" model="workflow.activity">
<field name="wkf_id" ref="account.wkf"/>
<field name="wkf_id" ref="wkf"/>
<field name="name">proforma2</field>
<field name="action">write({'state':'proforma2'})</field>
<field name="kind">function</field>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="True">
<data noupdate="1">
<!--

View File

@ -0,0 +1,96 @@
- |
Tax Scenario:
In order to check that the accounting entries and tax engine works
efficiently with all kind of price accuracies we run this test scenario.
-
Given the price accuracy for the account module is configured with two
digits
-
!record {model: decimal.precision, id: product.decimal_account}:
digits: 2
-
And we have a tax defined
-
!record {model: account.tax, id: tax196}:
name: Tax 19.6%
amount: &tax 0.196
account_collected_id: account.a_recv
account_paid_id: account.a_recv
-
And we define an invoice with one invoice line with a tax of *tax
-
!record {model: account.invoice, id: invoice1}: &invoice
name: Precision Test
type: out_invoice
partner_id: base.res_partner_2
address_invoice_id: base.res_partner_address_1
account_id: account.a_recv
date_invoice: !eval time.strftime('%Y-%m-%d')
invoice_line:
- product_id: product.product_product_pc1
quantity: &qty 11.11
account_id: account.a_sale
uos_id: product.product_uom_unit
price_unit: &price 12.34
name: test
invoice_line_tax_id:
- tax196
-
When I press on the CREATE button on the invoice to open it.
-
!python {model: account.invoice}: |
self.action_move_create(cr, uid, [ref("invoice1")])
-
Then I should see an account entry linked to this invoice.
-
!assert {model: account.invoice, id: invoice1}:
test:
- bool(move_id)
-
# This is not working, find a way to do that in YAML, *qty is not
# interpreted because it's not a node.
And this account entry must have a credit equals to 163.97€ which is
equal to *qty x *price x (1 + *tax)
-
!assert {model: account.invoice, id: invoice1}:
test:
- abs(sum(x.credit for x in move_id.line_id) - 163.97) < 0.000001
-
And this account entry must have a credit equals to the debit
-
!assert {model: account.invoice, id: invoice1}:
test:
- abs(sum(x.credit - x.debit for x in move_id.line_id)) < 0.000001
-
Then, I change the precision of numbers to 3 digits.
-
!record {model: decimal.precision, id: product.decimal_account}:
digits: 3
-
And I create another invoice with the same content.
-
!record {model: account.invoice, id: invoice2}:
*invoice
-
When I press on the CREATE button on the invoice to open it.
-
!python {model: account.invoice}: |
self.action_move_create(cr, uid, [ref("invoice2")])
-
Then this account entry must have a credit equals to the debit
-
!assert {model: account.invoice, id: invoice2}:
test:
- abs(sum(x.credit - x.debit for x in move_id.line_id)) < 0.000001
-
And this account entry must have a credit equals to 163.968€ which is
equal to *qty x *price x (1 + *tax)
-
!python {model: account.invoice}: |
xid = "invoice2"
invoice = self.browse(cr, uid, ref(xid))
sum_of_credits = sum(x.credit for x in invoice.move_id.line_id)
log("The sum of credits for %s is %f", xid, sum_of_credits)
expected_value = 163.968
assert (sum_of_credits - expected_value) < 0.000001, "Wrong sum of credits: %f <> %f" % (sum_of_credits, expected_value)

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-25 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-19 04:33+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2155,8 +2155,7 @@ msgid "Analytic Entry"
msgstr "Аналитичен запис"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-17 04:55+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2153,8 +2153,7 @@ msgid "Analytic Entry"
msgstr "Stavka analitike"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -8,12 +8,13 @@ msgstr ""
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2009-12-31 12:45+0000\n"
"Last-Translator: Albert Cervera i Areny <albert@nan-tic.com>\n"
"Last-Translator: Albert Cervera i Areny - http://www.NaN-tic.com <albert@nan-"
"tic.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-01-01 05:02+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2183,8 +2184,7 @@ msgid "Analytic Entry"
msgstr "Assentament analític"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-01-14 04:49+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-25 04:41+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2151,8 +2151,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-03-01 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2181,8 +2181,7 @@ msgid "Analytic Entry"
msgstr "Buchung Analysekonto"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Text Zahlungserinnerung"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-17 04:44+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2186,8 +2186,7 @@ msgid "Analytic Entry"
msgstr "Αναλυτική Εγγραφή"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Μήνυμα καθυστερημένων πληρωμών"

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-09 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2185,8 +2185,7 @@ msgid "Analytic Entry"
msgstr "Asiento analítico"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Mensaje pagos vencidos"

View File

@ -8,12 +8,12 @@ msgstr ""
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2009-11-18 03:34+0000\n"
"Last-Translator: Carlos Macri - Daycrom <cmacri@daycrom.com.ar>\n"
"Last-Translator: Carlos Sebastián Macri - Daycrom <cmacri@daycrom.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2183,8 +2183,7 @@ msgid "Analytic Entry"
msgstr "Asiento analítico"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Mensaje de Pagos Vencidos"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:59+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2176,8 +2176,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2139,8 +2139,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-03-03 04:45+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2174,8 +2174,7 @@ msgid "Analytic Entry"
msgstr "Analyyttinen merkintä"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Myöhässä olevien maksujen viesti"

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-20 04:42+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2500,8 +2500,7 @@ msgid "Analytic Entry"
msgstr "Ecriture analytique"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Message pour les paiements en retard"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-25 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-04 04:47+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2161,8 +2161,7 @@ msgid "Analytic Entry"
msgstr "Registrazione analitica"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2152,8 +2152,7 @@ msgid "Analytic Entry"
msgstr "Analitinis įrašas"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-09 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2150,8 +2150,7 @@ msgid "Analytic Entry"
msgstr "Analītiskais Ieraksts"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-17 04:44+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:56+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2181,8 +2181,7 @@ msgid "Analytic Entry"
msgstr "Kostenplaatsboeking"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Aanmaningsbericht"

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2140,8 +2140,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -8,12 +8,12 @@ msgstr ""
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2010-02-20 16:07+0000\n"
"Last-Translator: Grzegorz Grzelak (Cirrus) <Unknown>\n"
"Last-Translator: Grzegorz Grzelak (Cirrus.pl) <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-25 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2173,8 +2173,7 @@ msgid "Analytic Entry"
msgstr "Zapis analityczny"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Komunikat przeterminowanych płatności"

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-28 04:50+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2174,8 +2174,7 @@ msgid "Analytic Entry"
msgstr "movimento analitico"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Mensagem de pagamentos em atraso"

View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2010-02-22 21:38+0000\n"
"Last-Translator: sbrianti <Unknown>\n"
"PO-Revision-Date: 2010-03-04 15:48+0000\n"
"Last-Translator: JCF <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-25 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -151,7 +151,7 @@ msgstr "Erro! A duração do(s) Periodo(s) é/são inválido(s) "
#: model:ir.actions.act_window,name:account.action_move_line_form
#: model:ir.ui.menu,name:account.menu_action_move_line_form
msgid "Entries"
msgstr "Lancamentos"
msgstr "Lançamentos"
#. module: account
#: selection:account.move.line,centralisation:0
@ -296,7 +296,7 @@ msgstr ""
#: selection:account.tax,type:0
#: selection:account.tax.template,type:0
msgid "Fixed"
msgstr "Fixado"
msgstr "Fixo"
#. module: account
#: model:ir.actions.report.xml,name:account.account_overdue
@ -339,7 +339,7 @@ msgstr "Calcular inscrição"
#. module: account
#: rml:account.central.journal:0
msgid "Account Num."
msgstr "Numero da conta"
msgstr "Número da conta"
#. module: account
#: rml:account.analytic.account.analytic.check:0
@ -419,7 +419,7 @@ msgstr "Diário de custos"
#. module: account
#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal
msgid "All Analytic Entries"
msgstr "Todos lançamentos analíticos"
msgstr "Todos os lançamentos analíticos"
#. module: account
#: rml:account.overdue:0
@ -493,7 +493,7 @@ msgstr "Ref"
#. module: account
#: field:account.tax.template,type_tax_use:0
msgid "Tax Use In"
msgstr "Usar Imposto Em"
msgstr "Usar Imposto em"
#. module: account
#: help:account.tax.template,include_base_amount:0
@ -518,12 +518,12 @@ msgstr "Estatísticas dos lançamentos analíticos"
#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form
#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form
msgid "Tax Code Templates"
msgstr "Modelo código de imposto"
msgstr "Modelos de código de imposto"
#. module: account
#: view:account.invoice:0
msgid "Supplier invoice"
msgstr "Fatura de"
msgstr "Fatura de fornecedor"
#. module: account
#: model:process.transition,name:account.process_transition_reconcilepaid0
@ -911,7 +911,7 @@ msgstr "Diário de Baixas"
#: field:account.model.line,amount_currency:0
#: field:account.move.line,amount_currency:0
msgid "Amount Currency"
msgstr "Moeda do valor"
msgstr ""
#. module: account
#: field:account.chart.template,property_account_expense_categ:0
@ -935,7 +935,7 @@ msgstr ""
#. module: account
#: wizard_field:account.open_closed_fiscalyear,init,fyear_id:0
msgid "Fiscal Year to Open"
msgstr "Ano fiscal a Abrir"
msgstr "Ano fiscal a ser aberto"
#. module: account
#: view:account.config.wizard:0
@ -2180,8 +2180,7 @@ msgid "Analytic Entry"
msgstr "Lançamento analítico"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Mensagem para Pagamentos Atrasados"

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2180,8 +2180,7 @@ msgid "Analytic Entry"
msgstr "Înregistrare analitică"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Mesaj plăţi restante"

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-03-03 04:45+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2159,8 +2159,7 @@ msgid "Analytic Entry"
msgstr "Проводка аналитики"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -8,13 +8,13 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2009-12-16 08:49+0000\n"
"PO-Revision-Date: 2010-03-05 09:17+0000\n"
"Last-Translator: Radoslav Sloboda <rado.sloboda@gmail.com>\n"
"Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-17 04:44+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -292,7 +292,7 @@ msgstr ""
#: model:ir.actions.report.xml,name:account.account_overdue
#: view:res.company:0
msgid "Overdue Payments"
msgstr ""
msgstr "Omeškané platby"
#. module: account
#: wizard_view:account.account.balance.report,checktype:0
@ -303,7 +303,7 @@ msgstr ""
#: wizard_view:account.analytic.account.quantity_cost_ledger.report,init:0
#: wizard_view:account.vat.declaration,init:0
msgid "Select period"
msgstr ""
msgstr "Výber periody"
#. module: account
#: field:account.invoice,origin:0
@ -329,7 +329,7 @@ msgstr ""
#. module: account
#: rml:account.central.journal:0
msgid "Account Num."
msgstr ""
msgstr "Číslo účtu"
#. module: account
#: rml:account.analytic.account.analytic.check:0
@ -2141,8 +2141,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2164,8 +2164,7 @@ msgid "Analytic Entry"
msgstr "Analitičen vnos"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Sporočilo za opomin za zapadle postavke"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-30 04:47+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2164,8 +2164,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:12+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:57+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2141,8 +2141,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-24 04:40+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-17 04:55+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "Vadesi Geçmiş Ödeme için Mesaj"

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2140,8 +2140,7 @@ msgid "Analytic Entry"
msgstr "Проводка аналітики"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-01-12 04:46+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2149,8 +2149,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-01-10 07:17+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:59+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2144,8 +2144,7 @@ msgid "Analytic Entry"
msgstr "核算凭证"
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr "逾期付款信息"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2138,8 +2138,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:13+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 04:58+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -2137,8 +2137,7 @@ msgid "Analytic Entry"
msgstr ""
#. module: account
#: view:res.company:0
#: field:res.company,overdue_msg:0
#: view:res.company:0 field:res.company,overdue_msg:0
msgid "Overdue Payments Message"
msgstr ""

View File

@ -91,7 +91,7 @@
<separator string="Supplier Debit" colspan="2"/>
<field name="debit" select="2"/>
</group>
<field colspan="4" context="address=address" name="bank_ids" nolabel="1" select="2">
<field colspan="4" context="{'address': address}" name="bank_ids" nolabel="1" select="2">
<form string="Bank account">
<field name="state" select="2"/>
<newline/>

View File

@ -1,64 +0,0 @@
- |
Tax Scenario:
In order to check that the accounting entries and tax engine works
efficiently with all kind of price accuracies we run this test scenario.
-
Given the price accuracy for the account module is configured with two
digits
-
!record {model: decimal.precision, id: product.decimal_account}:
digits: 2
-
And we have a tax defined
-
!record {model: account.tax, id: tax196}:
name: Tax 19.6%
amount: &tax 0.196
-
And we define an invoice with one invoice line with a tax of *tax
-
!record {model: account.invoice, id: invoice1}: &invoice
name: Precision Test
type: out_invoice
partner_id: base.xxx
address_contact_id:
address_invoice_id:
account_id:
invoice_lines:
- product_qty: &qty 11.11
product_uom: product.product_unit
price_unit: &price 12.34
-
When I press on the CREATE button on the invoice to open it.
-
# to be completed
-
Then I should see an account entry linked to this invoice.
-
!record {model: account.invoice, id: invoice1}:
test: bool(move_id)
-
# This is not working, find a way to do that in YAML, *qty is not
# interpreted because it's not a node.
And this account entry must have a credit equals to 163.70€ which is
equal to *qty x *price x (1 + *tax)
-
!record {model: account.invoice, id: invoice1}:
test: abs(move_id.credit - 163.70) < 0.000001
-
And this account entry must have a credit equals to the debit
-
!record {model: account.invoice, id: invoice1}:
test: abs(move_id.debit - move_id.credit) < 0.000001
-
Then, I change the precision of numbers to 3 digits.
-
!record {model: decimal.precision, id: product.decimal_account}:
digits: 3
-
And I create another invoice with the same content.
-
!record {model: account.invoice, id: invoice2}:
*invoice
-
to be completed, etc.

View File

@ -0,0 +1,20 @@
-
We retrieve all accounts and test they are in a tree data structure.
-
!python {model: account.account}: |
ids = self.search(cr, uid, [])
accounts_list = self.read(cr, uid, ids, ['parent_id','parent_left','parent_right'])
accounts = dict((x['id'], x) for x in accounts_list)
log("Testing parent structure for %d accounts", len(accounts_list))
for a in accounts_list:
if a['parent_id']:
assert a['parent_left'] > accounts[a['parent_id'][0]]['parent_left']
assert a['parent_right'] < accounts[a['parent_id'][0]]['parent_right']
assert a['parent_left'] < a['parent_right']
for a2 in accounts_list:
assert not ((a2['parent_right'] > a['parent_left']) and
(a2['parent_left'] < a['parent_left']) and
(a2['parent_right'] < a['parent_right']))
if a2['parent_id']==a['id']:
assert (a2['parent_left'] > a['parent_left']) and (a2['parent_right'] < a['parent_right'])

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-17 04:56+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -8,12 +8,12 @@ msgstr ""
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2009-12-22 16:08+0000\n"
"Last-Translator: Kuvaly <kuvaly@seznam.cz>\n"
"Last-Translator: Kuvaly [LCT] <kuvaly@seznam.cz>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-24 04:40+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -15,7 +15,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-30 04:47+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-17 04:56+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-17 04:56+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-04 04:47+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.0_rc3\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2010-01-16 12:06+0000\n"
"Last-Translator: Carlos Paiva <Unknown>\n"
"PO-Revision-Date: 2010-03-09 16:45+0000\n"
"Last-Translator: JCF <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-01-17 04:46+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis
@ -22,26 +22,27 @@ msgid ""
"Number of hours that can be invoiced plus those that already have been "
"invoiced."
msgstr ""
"Número de horas que podem ser faturadas além daquelas que já foram faturadas"
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user
msgid "Hours summary by user"
msgstr ""
msgstr "Resumo de horas por usuário"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_invoice_date:0
msgid "Last Invoice Date"
msgstr ""
msgstr "Data da Última fatura"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_ca:0
msgid "Computed using the formula: Max Invoice Price - Invoiced Amount."
msgstr ""
msgstr "Calculado utilizando a fórmula: preço máximo fatura - valor faturado"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_hours:0
msgid "Computed using the formula: Maximum Quantity - Hours Tot."
msgstr ""
msgstr "Calculado utilizando a fórmula: quantidade máxima - total de horas"
#. module: account_analytic_analysis
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_all
@ -52,12 +53,12 @@ msgstr "Todas as contas analíticas"
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed_open
#: model:ir.ui.menu,name:account_analytic_analysis.menu_analytic_account_to_valid_open
msgid "My Current Accounts"
msgstr ""
msgstr "Minhas contas atuais"
#. module: account_analytic_analysis
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr "Invalido XML para Arquitetura da View"
msgstr "XML inválido para a arquitetura de exibição"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
@ -67,25 +68,24 @@ msgstr "Data da última fatura criada para esta conta analítica."
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_theorical:0
msgid "Theorical Revenue"
msgstr ""
msgstr "Receita Projetada"
#. module: account_analytic_analysis
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr ""
msgstr "Nome de modelo inválido na definição da ação."
#. module: account_analytic_analysis
#: help:account.analytic.account,theorical_margin:0
msgid "Computed using the formula: Theorial Revenue - Total Costs"
msgstr ""
msgstr "Calculado usando a fórmula: Receita Projetada - Custos Totais"
#. module: account_analytic_analysis
#: constraint:ir.model:0
msgid ""
"The Object name must start with x_ and not contain any special character !"
msgstr ""
"O nome do objeto precisa iniciar com x_ e não conter nenhum caracter "
"especial!"
"O nome do objeto deve começar com x_ e não conter caracteres especiais!"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_new
@ -96,12 +96,12 @@ msgstr "Nova conta analítica"
#. module: account_analytic_analysis
#: field:account.analytic.account,theorical_margin:0
msgid "Theorical Margin"
msgstr ""
msgstr "Marem Projetada"
#. module: account_analytic_analysis
#: field:account.analytic.account,real_margin_rate:0
msgid "Real Margin Rate (%)"
msgstr "Taxa de margem real (%)"
msgstr "Taxa Real de Margem"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_all_open
@ -112,7 +112,7 @@ msgstr "Contas analíticas atuais"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_date:0
msgid "Date of the latest work done on this account."
msgstr ""
msgstr "Data do último trabalho realizado nesta conta."
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_invoiced_date:0
@ -120,11 +120,13 @@ msgid ""
"If invoice from the costs, this is the date of the latest work or cost that "
"have been invoiced."
msgstr ""
"Se for uma fatura a partir dos custos, esta é a data do último trabalho ou "
"custo que foi faturado."
#. module: account_analytic_analysis
#: model:ir.ui.menu,name:account_analytic_analysis.menu_invoicing
msgid "Invoicing"
msgstr ""
msgstr "Faturamento"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_date:0
@ -142,11 +144,13 @@ msgid ""
"Number of hours you spent on the analytic account (from timesheet). It "
"computes on all journal of type 'general'."
msgstr ""
"Quantidade de horas empenhadas na conta analítica (a partir do apontamento "
"de horas). Serão incluídas em todos os diários do tipo 'Geral'."
#. module: account_analytic_analysis
#: field:account.analytic.account,remaining_hours:0
msgid "Remaining Hours"
msgstr ""
msgstr "Horas Restantes"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_theorical:0
@ -155,6 +159,9 @@ msgid ""
"if all these costs have been invoiced at the normal sale price provided by "
"the pricelist."
msgstr ""
"Com base nos custos que você teve no projeto, qual seria a receita se todos "
"os custos tivessem sido faturados a um preço de vendas padrão, como indicado "
"na lista de preços (sem descontos)."
#. module: account_analytic_analysis
#: field:account.analytic.account,user_ids:0
@ -166,24 +173,24 @@ msgstr "Usuário"
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed_pending
#: model:ir.ui.menu,name:account_analytic_analysis.menu_analytic_account_to_valid_pending
msgid "My Pending Accounts"
msgstr ""
msgstr "Minhas contas pendentes"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_my
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_my
msgid "My Uninvoiced Entries"
msgstr ""
msgstr "Minhas Entradas não Faturadas"
#. module: account_analytic_analysis
#: help:account.analytic.account,real_margin:0
msgid "Computed using the formula: Invoiced Amount - Total Costs."
msgstr ""
msgstr "Calculado através da fórmula: Valor faturado - Custos Totais."
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed
#: model:ir.ui.menu,name:account_analytic_analysis.menu_analytic_account_managed
msgid "My Accounts"
msgstr ""
msgstr "Minhas contas"
#. module: account_analytic_analysis
#: model:ir.module.module,description:account_analytic_analysis.module_meta_information
@ -192,6 +199,9 @@ msgid ""
"important data for project manager of services companies.\n"
"Add menu to show relevant information for each manager."
msgstr ""
"Alterar a visão de conta analitica para mostrar\n"
"dados importantes ao gerente de projetos de empresas de serviços\n"
"Adicionar menu para exibir informações relevantes para cada gerente"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_non_invoiced:0
@ -221,48 +231,48 @@ msgstr "Valor Faturado"
#. module: account_analytic_analysis
#: model:ir.ui.menu,name:account_analytic_analysis.next_id_71
msgid "Financial Project Management"
msgstr ""
msgstr "Gestão financeira do projeto"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_invoiced_date:0
msgid "Date of Last Invoiced Cost"
msgstr ""
msgstr "Data do último custo faturado"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_to_invoice:0
msgid "Uninvoiced Amount"
msgstr ""
msgstr "Valor não faturado"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_all_pending
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_all_pending
msgid "Pending Analytic Accounts"
msgstr ""
msgstr "Contas Analíticas Pendentes"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_invoiced:0
msgid "Invoiced Hours"
msgstr ""
msgstr "Horas faturadas"
#. module: account_analytic_analysis
#: field:account.analytic.account,real_margin:0
msgid "Real Margin"
msgstr ""
msgstr "Margem real"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_invoiced:0
msgid "Total customer invoiced amount for this account."
msgstr ""
msgstr "Valor total faturado ao cliente para esta conta"
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month
msgid "Hours summary by month"
msgstr ""
msgstr "Resumo de horas por mês"
#. module: account_analytic_analysis
#: help:account.analytic.account,real_margin_rate:0
msgid "Computes using the formula: (Real Margin / Total Costs) * 100."
msgstr ""
msgstr "Calcula usando a fórmula: (Margem Real / Custo Total) * 100."
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_non_invoiced:0
@ -295,7 +305,7 @@ msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,revenue_per_hour:0
msgid "Computed using the formula: Invoiced Amount / Hours Tot."
msgstr ""
msgstr "Calculado utilizando a Fórmula: Valor Faturado / Total de Horas ."
#. module: account_analytic_analysis
#: field:account.analytic.account,revenue_per_hour:0
@ -318,19 +328,19 @@ msgstr "Mês"
#: field:account_analytic_analysis.summary.month,account_id:0
#: field:account_analytic_analysis.summary.user,account_id:0
msgid "Analytic Account"
msgstr ""
msgstr "Conta Analítica"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_managed_overpassed
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_managed_overpassed
msgid "Overpassed Accounts"
msgstr ""
msgstr "Contas excedentes"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all
msgid "All Uninvoiced Entries"
msgstr ""
msgstr "Todos os Lançamentos Não Faturados"
#. module: account_analytic_analysis
#: help:account.analytic.account,total_cost:0
@ -338,3 +348,5 @@ msgid ""
"Total of costs for this account. It includes real costs (from invoices) and "
"indirect costs, like time spent on timesheets."
msgstr ""
"Total dos custos para esta conta. Inclui custos reais (de faturas) e custos "
"indiretos, tais como o tempo gasto no apontamento de horas."

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-17 04:56+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-01-10 07:17+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:16+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-07 04:38+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:03+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-17 04:56+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:03+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-02-12 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:03+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:03+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -8,12 +8,12 @@ msgstr ""
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2009-11-17 09:38+0000\n"
"Last-Translator: Kuvaly <kuvaly@seznam.cz>\n"
"Last-Translator: Kuvaly [LCT] <kuvaly@seznam.cz>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:03+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:03+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-18 04:32+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:03+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:04+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

View File

@ -13,7 +13,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-16 05:18+0000\n"
"X-Launchpad-Export-Date: 2010-03-10 05:04+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default

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