From 018709b2728d41557ec5dd364a0c5acfefcd8600 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 11:51:31 +0200 Subject: [PATCH 004/140] [IMP] report_intrastat: 'invoice' report now uses decimal.precision (changed the sxw too and now pass 'dp' instead of calling get_digits) [related rev:4177] bzr revid: olt@tinyerp.com-20101005095131-lzsy0vodqsd7y3a4 --- addons/report_intrastat/report/invoice.rml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/report_intrastat/report/invoice.rml b/addons/report_intrastat/report/invoice.rml index 08a1ab14fe0..e931a6d735d 100644 --- a/addons/report_intrastat/report/invoice.rml +++ b/addons/report_intrastat/report/invoice.rml @@ -357,7 +357,7 @@ [[ l.discount and formatLang (l.discount) or '' ]] - [[ formatLang(l.price_subtotal) ]] + [[ formatLang(l.price_subtotal, dp='Account') ]] [[ o.currency_id.code ]] @@ -488,7 +488,7 @@ - [[ o.amount_tax and formatLang(o.amount_tax, digits=get_digits(dp='Account')) or removeParentNode('blockTable') ]] + [[ o.amount_tax and formatLang(o.amount_tax, dp='Account') or removeParentNode('blockTable') ]] @@ -516,10 +516,10 @@ [[ t.name ]] - [[ formatLang(t.base, digits=get_digits(dp='Account')) ]] + [[ formatLang(t.base, dp='Account') ]] - [[ formatLang(t.amount, digits=get_digits(dp='Account')) ]] + [[ formatLang(t.amount, dp='Account') ]] From d85b91ce11ec5df3fb15730c6bd5a06947916231 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 11:54:29 +0200 Subject: [PATCH 005/140] [IMP] account: 'invoice' report now uses decimal.precision (changed the sxw too and now pass 'dp' instead of calling get_digits) [related rev:4176] bzr revid: olt@tinyerp.com-20101005095429-csuj62lfymna1x4a --- addons/account/report/invoice.rml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/account/report/invoice.rml b/addons/account/report/invoice.rml index 173cbd1e6c4..5bfab4b7fa7 100644 --- a/addons/account/report/invoice.rml +++ b/addons/account/report/invoice.rml @@ -232,10 +232,10 @@ [[ formatLang(l.price_unit) ]][[ o.currency_id.symbol ]] - [[ formatLang(l.discount, digits=get_digits(dp='Account')) ]] + [[ formatLang(l.discount, dp='Account') ]] - [[ formatLang(l.price_subtotal, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(l.price_subtotal, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -294,7 +294,7 @@ Taxes: - [[ formatLang(o.amount_tax, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(o.amount_tax, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -338,7 +338,7 @@ [[ t.name ]] - [[ formatLang(t.base, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(t.base, dp='Account') ]] [[ o.currency_id.symbol ]] [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount) ]] [[ o.currency_id.symbol ]] From c678ed27758529f0804ecabb2cec8b1b74d6cb8b Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 12:04:09 +0200 Subject: [PATCH 006/140] [IMP] purchase: 'purchase order' report now uses decimal.precision (changed the sxw too and now pass 'dp' instead of calling get_digits) [related rev:4169] bzr revid: olt@tinyerp.com-20101005100409-22208s68eqqtrt0y --- addons/purchase/report/order.rml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/purchase/report/order.rml b/addons/purchase/report/order.rml index 5fbc2cbdcc2..ffde9f2cd9f 100644 --- a/addons/purchase/report/order.rml +++ b/addons/purchase/report/order.rml @@ -333,7 +333,7 @@ Taxes : - [[ formatLang(o.amount_tax, digits=get_digits(dp='Purchase Price')) ]] [[ o.pricelist_id.currency_id. symbol ]] + [[ formatLang(o.amount_tax, dp='Purchase Price') ]] [[ o.pricelist_id.currency_id. symbol ]] From 02a49e3fbc166283c009f14f234b2b0b16701274 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 12:14:31 +0200 Subject: [PATCH 007/140] [IMP] sale: 'sale order' reports now uses decimal.precision (changed the sxw too and now pass 'dp' instead of calling get_digits) [related rev:4159] bzr revid: olt@tinyerp.com-20101005101431-ibpakl3991rrjmvd --- addons/sale/report/sale_order.rml | 6 +++--- addons/sale_layout/report/report_sale_layout.rml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/sale/report/sale_order.rml b/addons/sale/report/sale_order.rml index a4eab5aa86d..0b3d811cf7c 100644 --- a/addons/sale/report/sale_order.rml +++ b/addons/sale/report/sale_order.rml @@ -312,7 +312,7 @@ Net Total : - [[ formatLang(o.amount_untaxed, digits=get_digits(dp='Account')) ]] [[ o.pricelist_id.currency_id. symbol ]] + [[ formatLang(o.amount_untaxed, dp='Sale Price') ]] [[ o.pricelist_id.currency_id. symbol ]] @@ -325,7 +325,7 @@ Taxes : - [[ formatLang(o.amount_tax, digits=get_digits(dp='Account')) ]] [[ o.pricelist_id.currency_id. symbol ]] + [[ formatLang(o.amount_tax, dp='Sale Price') ]] [[ o.pricelist_id.currency_id. symbol ]] @@ -338,7 +338,7 @@ Total : - [[ formatLang(o.amount_total, digits=get_digits(dp='Account')) ]] [[ o.pricelist_id.currency_id. symbol ]] + [[ formatLang(o.amount_total, dp='Sale Price') ]] [[ o.pricelist_id.currency_id. symbol ]] diff --git a/addons/sale_layout/report/report_sale_layout.rml b/addons/sale_layout/report/report_sale_layout.rml index b01affd5329..cdab0c4d7ff 100755 --- a/addons/sale_layout/report/report_sale_layout.rml +++ b/addons/sale_layout/report/report_sale_layout.rml @@ -318,13 +318,13 @@ [[ a['layout_type']=='subtotal' and ( setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ a['product_uom'] ]] - [[ a['layout_type']=='subtotal' and ( setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]] [[ formatLang(a['price_unit'], digits=get_digits(dp='Sale Price')) ]] + [[ a['layout_type']=='subtotal' and ( setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]] [[ formatLang(a['price_unit'], dp='Sale Price') ]] - [[ a['layout_type']=='subtotal' and ( setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['discount'], digits=get_digits(dp='Sale Price')) ]] + [[ a['layout_type']=='subtotal' and ( setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['discount'], dp='Sale Price') ]] - [[ a['layout_type']=='subtotal' and ( setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['price_subtotal'], digits=get_digits(dp='Sale Price')) ]] [[ o.pricelist_id.currency_id.symbol ]] + [[ a['layout_type']=='subtotal' and ( setTag('para','para',{'fontName':'Helvetica-Bold'})) or removeParentNode('font') ]][[ formatLang(a['price_subtotal'], dp='Sale Price') ]] [[ o.pricelist_id.currency_id.symbol ]] From 0f5f67d62815744af29649ab35531692dbbcbf67 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 12:16:41 +0200 Subject: [PATCH 008/140] [IMP] account_budget: 'crossovered_budget' report now uses decimal.precision (now pass 'dp' instead of calling get_digits) [related rev:4156] bzr revid: olt@tinyerp.com-20101005101641-bl50epg75822ic10 --- .../report/crossovered_budget_report.rml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/account_budget/report/crossovered_budget_report.rml b/addons/account_budget/report/crossovered_budget_report.rml index e297c8b3ca2..a62e9f1d611 100644 --- a/addons/account_budget/report/crossovered_budget_report.rml +++ b/addons/account_budget/report/crossovered_budget_report.rml @@ -148,13 +148,13 @@ [['.....' *(a['status']-1) ]][[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], dp='Account') ]] [[ company.currency_id.symbol ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], dp='Account') ]] [[ company.currency_id.symbol ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], dp='Account') ]] [[ company.currency_id.symbol ]] [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc'], digits=2) ]]% @@ -168,13 +168,13 @@ [[ repeatIn(funct_total(data['form']),'b') ]]Total: - [[ formatLang(b['tot_theo'], digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ formatLang(b['tot_theo'], dp='Account') ]] [[ company.currency_id.symbol ]] - [[ formatLang(b['tot_pln'], digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ formatLang(b['tot_pln'], dp='Account') ]] [[ company.currency_id.symbol ]] - [[ formatLang(b['tot_prac'], digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ formatLang(b['tot_prac'], dp='Account') ]] [[ company.currency_id.symbol ]] [[ formatLang(b['tot_perc'], digits=2) ]]% From 83f3a3e27503214a05f5d56b681f836935dc6252 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 12:43:46 +0200 Subject: [PATCH 009/140] [IMP] rml reports: replaced call to get_digits by directly passing the 'dp' parameter bzr revid: olt@tinyerp.com-20101005104346-mdxiu47w4m46o2zm --- .../account_general_ledger_landscape.rml | 20 +++++++++---------- .../report/report_account_invoice_layout.rml | 10 +++++----- .../report/special_message_invoice.rml | 10 +++++----- addons/mrp_repair/report/order.rml | 6 +++--- .../report/account_statement.rml | 8 ++++---- .../sale_layout/report/report_sale_layout.rml | 2 +- addons/stock/report/lot_overview.rml | 8 ++++---- addons/stock/report/lot_overview_all.rml | 8 ++++---- 8 files changed, 36 insertions(+), 36 deletions(-) diff --git a/addons/account/report/account_general_ledger_landscape.rml b/addons/account/report/account_general_ledger_landscape.rml index 1321bdea750..b370b03a4ec 100644 --- a/addons/account/report/account_general_ledger_landscape.rml +++ b/addons/account/report/account_general_ledger_landscape.rml @@ -266,10 +266,10 @@ [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - [[ formatLang(sum_debit_account(o), digits=get_digits(dp='Account')) ]] - [[ formatLang(sum_credit_account(o), digits=get_digits(dp='Account')) ]] - [[ formatLang(sum_balance_account(o), digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] - [[ o.currency_id and formatLang(sum_currency_amount_account(o), digits=get_digits(dp='Account')) + o.currency_id.code or '' ]] + [[ formatLang(sum_debit_account(o), dp='Account') ]] + [[ formatLang(sum_credit_account(o), dp='Account') ]] + [[ formatLang(sum_balance_account(o), dp='Account') ]] [[ company.currency_id.symbol ]] + [[ o.currency_id and formatLang(sum_currency_amount_account(o), dp='Account') + o.currency_id.code or '' ]] @@ -292,9 +292,9 @@ [[ line['move'] ]] [[ line['lname'] ]] [[ strip_name(line['line_corresp'].replace(', ',','),40) ]] - [[ formatLang(line['debit'], digits=get_digits(dp='Account')) ]] - [[ formatLang(line['credit'], digits=get_digits(dp='Account')) ]] - [[ formatLang(line['progress'], digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ formatLang(line['debit'], dp='Account') ]] + [[ formatLang(line['credit'], dp='Account') ]] + [[ formatLang(line['progress'], dp='Account') ]] [[ company.currency_id.symbol ]] [[ formatLang(line['amount_currency'] or '')]] [[ line['currency_code'] or '' ]] @@ -327,9 +327,9 @@ [[ '..'*(o.level-1) ]][[ o.code ]] [[ o.name ]] - [[ formatLang(sum_debit_account(o), digits=get_digits(dp='Account')) ]] - [[ formatLang(sum_credit_account(o), digits=get_digits(dp=Account)) ]] - [[ formatLang(sum_balance_account(o), digits=get_digits(dp='Account')) ]] [[ company.currency_id.symbol ]] + [[ formatLang(sum_debit_account(o), dp='Account') ]] + [[ formatLang(sum_credit_account(o), dp='Account') ]] + [[ formatLang(sum_balance_account(o), 'Account') ]] [[ company.currency_id.symbol ]] diff --git a/addons/account_invoice_layout/report/report_account_invoice_layout.rml b/addons/account_invoice_layout/report/report_account_invoice_layout.rml index 3cd64a08b02..3373f6416a0 100644 --- a/addons/account_invoice_layout/report/report_account_invoice_layout.rml +++ b/addons/account_invoice_layout/report/report_account_invoice_layout.rml @@ -376,7 +376,7 @@ Net Total: - [[ formatLang(o.amount_untaxed, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(o.amount_untaxed, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -391,7 +391,7 @@ Taxes: - [[ formatLang(o.amount_tax, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(o.amount_tax, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -406,7 +406,7 @@ Total: - [[ formatLang(o.amount_total, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(o.amount_total, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -445,10 +445,10 @@ [[ t.name ]] - [[ formatLang(t.base, digits=get_digits(dp='Account')) ]] + [[ formatLang(t.base, dp='Account') ]] - [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount, digits=get_digits(dp='Account')) ]] + [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount, dp='Account') ]] diff --git a/addons/account_invoice_layout/report/special_message_invoice.rml b/addons/account_invoice_layout/report/special_message_invoice.rml index 8bea44a67f7..40d9fa685a4 100644 --- a/addons/account_invoice_layout/report/special_message_invoice.rml +++ b/addons/account_invoice_layout/report/special_message_invoice.rml @@ -380,7 +380,7 @@ Net Total: - [[ formatLang(o.amount_untaxed, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(o.amount_untaxed, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -395,7 +395,7 @@ Taxes: - [[ formatLang(o.amount_tax, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(o.amount_tax, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -410,7 +410,7 @@ Total: - [[ formatLang(o.amount_total, digits=get_digits(dp='Account')) ]] [[ o.currency_id.symbol ]] + [[ formatLang(o.amount_total, dp='Account') ]] [[ o.currency_id.symbol ]] @@ -449,10 +449,10 @@ [[ t.name ]] - [[ formatLang(t.base, digits=get_digits(dp='Account')) ]] + [[ formatLang(t.base, dp='Account') ]] - [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount, digits=get_digits(dp='Account')) ]] + [[ (t.tax_code_id and t.tax_code_id.notprintable) and removeParentNode('blockTable') or '' ]] [[ formatLang(t.amount, dp='Account') ]] diff --git a/addons/mrp_repair/report/order.rml b/addons/mrp_repair/report/order.rml index 328b5e931ee..edb3d43c7b3 100644 --- a/addons/mrp_repair/report/order.rml +++ b/addons/mrp_repair/report/order.rml @@ -343,7 +343,7 @@ Net Total : - [[ formatLang(o.amount_untaxed, digits=get_digits(dp='Sale Price'))]] [[ o.pricelist_id.currency_id. symbol ]] + [[ formatLang(o.amount_untaxed, dp='Sale Price')]] [[ o.pricelist_id.currency_id. symbol ]] @@ -357,7 +357,7 @@ Taxes: - [[ formatLang(o.amount_tax, digits=get_digits(dp='Account'))]] [[ o.pricelist_id.currency_id. symbol ]] + [[ formatLang(o.amount_tax, dp='Account')]] [[ o.pricelist_id.currency_id. symbol ]] @@ -370,7 +370,7 @@ Total : - [[ formatLang(total(o), digits=get_digits(dp='Sale Price')) ]] [[ o.pricelist_id.currency_id. symbol ]] + [[ formatLang(total(o), dp='Sale Price') ]] [[ o.pricelist_id.currency_id. symbol ]] diff --git a/addons/point_of_sale/report/account_statement.rml b/addons/point_of_sale/report/account_statement.rml index ed26143aa4e..024dd65f186 100644 --- a/addons/point_of_sale/report/account_statement.rml +++ b/addons/point_of_sale/report/account_statement.rml @@ -216,10 +216,10 @@ [[ formatLang(statement.closing_date,date=True) ]] - [[ formatLang(statement.balance_start, digits=get_digits(dp='Account')) ]][[ company.currency_id.symbol ]] + [[ formatLang(statement.balance_start, dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(statement.balance_end_real, digits=get_digits(dp='Account')) ]][[ company.currency_id.symbol ]] + [[ formatLang(statement.balance_end_real, dp='Account') ]][[ company.currency_id.symbol ]] @@ -254,7 +254,7 @@ [[ line_ids.partner_id.name ]] - [[ formatLang(line_ids.amount, digits=get_digits(dp='Account')) ]][[ company.currency_id.symbol ]] + [[ formatLang(line_ids.amount, dp='Account') ]][[ company.currency_id.symbol ]] @@ -269,7 +269,7 @@ Total : - [[ formatLang(get_total(statement.line_ids), digits=get_digits(dp='Account')) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_total(statement.line_ids), dp='Account') ]][[ company.currency_id.symbol ]] diff --git a/addons/sale_layout/report/report_sale_layout.rml b/addons/sale_layout/report/report_sale_layout.rml index cdab0c4d7ff..0a499b01e3a 100755 --- a/addons/sale_layout/report/report_sale_layout.rml +++ b/addons/sale_layout/report/report_sale_layout.rml @@ -397,7 +397,7 @@ Taxes : - [[ formatLang(o.amount_tax, digits=get_digits(dp='Account') ) ]] [[ o.pricelist_id.currency_id.symbol ]] + [[ formatLang(o.amount_tax, dp='Account') ]] [[ o.pricelist_id.currency_id.symbol ]] diff --git a/addons/stock/report/lot_overview.rml b/addons/stock/report/lot_overview.rml index cebacedeb01..79749d270e4 100644 --- a/addons/stock/report/lot_overview.rml +++ b/addons/stock/report/lot_overview.rml @@ -167,10 +167,10 @@ [[formatLang( p['prod_qty']) ]] [[ p['uom'] ]] - [[ formatLang(p['price'], digits=get_digits(dp='Account')) ]] + [[ formatLang(p['price'], dp='Account') ]] - [[ formatLang(p['price_value'], digits=get_digits(dp='Account')) ]] [[ o.company_id.currency_id.symbol]] + [[ formatLang(p['price_value'], dp='Account') ]] [[ o.company_id.currency_id.symbol]] @@ -184,7 +184,7 @@ Total: - [[ formatLang(price_total(), digits=get_digits(dp='Account')) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(price_total(), dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -201,7 +201,7 @@ - [[ formatLang(grand_total_price(), digits=get_digits(dp='Account')) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(grand_total_price(), dp='Account') ]] [[ o.company_id.currency_id.symbol ]] diff --git a/addons/stock/report/lot_overview_all.rml b/addons/stock/report/lot_overview_all.rml index 4c4c71561a2..d4e60823e0d 100644 --- a/addons/stock/report/lot_overview_all.rml +++ b/addons/stock/report/lot_overview_all.rml @@ -167,10 +167,10 @@ [[formatLang( p['prod_qty']) ]] [[ p['uom'] ]] - [[ formatLang(p['price'], digits=get_digits(dp='Account')) ]] + [[ formatLang(p['price'], dp='Account') ]] - [[ formatLang(p['price_value'], digits=get_digits(dp='Account')) ]] [[ o.company_id.currency_id.symbol]] + [[ formatLang(p['price_value'], dp='Account') ]] [[ o.company_id.currency_id.symbol]] @@ -184,7 +184,7 @@ Total: - [[ formatLang(price_total(), digits=get_digits(dp='Account')) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(price_total(), dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -201,7 +201,7 @@ - [[ formatLang(grand_total_price(), digits=get_digits(dp='Account')) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(grand_total_price(), dp='Account') ]] [[ o.company_id.currency_id.symbol ]] From b2b6c4b3eaeb4241dde4e171eb4cc0d6754f72e4 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 09:10:57 +0200 Subject: [PATCH 010/140] [FIX] base_iban: no 'bank' field in res.partner.bank.type bzr revid: olt@tinyerp.com-20101005071057-1pzk0dhv60h3iy2n --- addons/base_iban/base_iban_data.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/addons/base_iban/base_iban_data.xml b/addons/base_iban/base_iban_data.xml index 4269bb83ac6..dae3999505e 100644 --- a/addons/base_iban/base_iban_data.xml +++ b/addons/base_iban/base_iban_data.xml @@ -3,12 +3,11 @@ + Default bank account description + --> IBAN Account iban - iban From f233bd317ab0489302f75a5d38da270bb7740d6c Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:19:29 +0200 Subject: [PATCH 020/140] [IMP] hr_payroll: 'payslip' report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005111929-ij6mgz6a3fkechm6 --- addons/hr_payroll/hr_payroll.py | 7 +++--- addons/hr_payroll/report/payslip.rml | 26 +++++++++++----------- addons/hr_payroll/report/report_payslip.py | 13 ----------- 3 files changed, 17 insertions(+), 29 deletions(-) diff --git a/addons/hr_payroll/hr_payroll.py b/addons/hr_payroll/hr_payroll.py index d7de7efbcbc..7ce1faace82 100644 --- a/addons/hr_payroll/hr_payroll.py +++ b/addons/hr_payroll/hr_payroll.py @@ -27,6 +27,7 @@ import netsvc from osv import fields, osv from tools import config from tools.translate import _ +import decimal_precision as dp @@ -774,9 +775,9 @@ class hr_payslip(osv.osv): ('done','Paid Salary'), ('cancel','Reject'), ],'State', select=True, readonly=True), - 'basic_before_leaves': fields.float('Basic Salary', readonly=True, digits=(16, 2)), - 'leaves': fields.float('Leave Deductions', readonly=True, digits=(16, 2)), - 'basic': fields.float('Net Basic', readonly=True, digits=(16, 2)), + 'basic_before_leaves': fields.float('Basic Salary', readonly=True, digits_compute=dp.get_precision('Account')), + 'leaves': fields.float('Leave Deductions', readonly=True, digits_compute=dp.get_precision('Account')), + 'basic': fields.float('Net Basic', readonly=True, digits_compute=dp.get_precision('Account')), 'grows': fields.function(_calculate, method=True, store=True, multi='dc', string='Gross Salary', type='float', digits=(16, 2)), 'net': fields.function(_calculate, method=True, store=True, multi='dc', string='Net Salary', digits=(16, 2)), 'allounce': fields.function(_calculate, method=True, store=True, multi='dc', string='Allowance', digits=(16, 2)), diff --git a/addons/hr_payroll/report/payslip.rml b/addons/hr_payroll/report/payslip.rml index 58b2fd81275..075023638f3 100755 --- a/addons/hr_payroll/report/payslip.rml +++ b/addons/hr_payroll/report/payslip.rml @@ -392,19 +392,19 @@ Basic Salary - [[ formatLang(o.basic_before_leaves) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(o.basic_before_leaves, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] Leaved Deduction - [[ o.leaves or '' ]] + [[ formatLang(o.leaves, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] Basic Salary – Leaves - [[ formatLang(o.basic) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(o.basic, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -433,7 +433,7 @@ [[ ld.code ]] - [[ formatLang(ld.total) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(ld.total, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -463,7 +463,7 @@ Basic Salary - [[ formatLang(o.basic) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(o.basic, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -471,7 +471,7 @@ [[repeatIn(get_earnings(o.line_ids),'a') ]] [[ a.code or removeParentNode('tr') ]] - [[ formatLang(a.total) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(a.total, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -488,7 +488,7 @@ [[ b.code ]] - [[ formatLang(b.total) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(b.total, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -508,13 +508,13 @@ Total Earnings([[ o.company_id.currency_id.code ]]) - [[ formatLang(o.allounce + o.basic) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(o.allounce + o.basic, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] Total Deductions([[ o.company_id.currency_id.code ]]) - [[ formatLang(o.deduction) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(o.deduction, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -542,10 +542,10 @@ [[ ol.type in ['advance','loan','otherpay','otherdeduct','installment'] and ol.code or '' ]] - [[ ol.type in ['advance','loan','otherpay'] and formatLang(ol.total) or '' ]] [[ ol.type in ['advance','loan','otherpay'] and o.company_id.currency_id.symbol or '' ]] + [[ ol.type in ['advance','loan','otherpay'] and formatLang(ol.total, dp='Account') or '' ]] [[ ol.type in ['advance','loan','otherpay'] and o.company_id.currency_id.symbol or '' ]] - [[ ol.type in ['otherdeduct','installment'] and formatLang(ol.total) or '' ]] [[ ol.type in ['advance','loan','otherpay'] and o.company_id.currency_id.symbol or '' ]] + [[ ol.type in ['otherdeduct','installment'] and formatLang(ol.total, dp='Account') or '' ]] [[ ol.type in ['advance','loan','otherpay'] and o.company_id.currency_id.symbol or '' ]] @@ -561,7 +561,7 @@ Net Amount([[ o.company_id.currency_id.code ]]) - [[ formatLang(o.net) ]] [[ o.company_id.currency_id.symbol ]] + [[ formatLang(o.net, dp='Account') ]] [[ o.company_id.currency_id.symbol ]] @@ -609,4 +609,4 @@ - \ No newline at end of file + diff --git a/addons/hr_payroll/report/report_payslip.py b/addons/hr_payroll/report/report_payslip.py index e818e0f3727..c0d3946d3ef 100755 --- a/addons/hr_payroll/report/report_payslip.py +++ b/addons/hr_payroll/report/report_payslip.py @@ -99,18 +99,5 @@ class payslip_report(report_sxw.rml_parse): report_sxw.report_sxw('report.payslip.pdf', 'hr.payslip', 'hr_payroll/report/payslip.rml', parser=payslip_report) - - - - - # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - - - - - - - - From c4ef37b82a45fb12ff5076be8eda021411cd02cd Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:23:11 +0200 Subject: [PATCH 021/140] [IMP] hr_payroll: 'bank payment advice' report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005112311-3ofe7d0mgt04gnsj --- addons/hr_payroll/report/report_payroll_advice.rml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/hr_payroll/report/report_payroll_advice.rml b/addons/hr_payroll/report/report_payroll_advice.rml index ff793469284..5264b41f003 100644 --- a/addons/hr_payroll/report/report_payroll_advice.rml +++ b/addons/hr_payroll/report/report_payroll_advice.rml @@ -229,10 +229,10 @@ [[ line['name'] ]] - [[ formatLang(line['amount' ]) ]] [[ company.currency_id.symbol ]] + [[ formatLang(line['amount'], dp='Account') ]] [[ company.currency_id.symbol ]] - [[ formatLang(line['bysal']) ]] [[ company.currency_id.symbol ]] + [[ formatLang(line['bysal'], dp='Account') ]] [[ company.currency_id.symbol ]] [[ line['acc_no'] ]] @@ -260,10 +260,10 @@ Total([[ company.currency_id.code ]]): - [[ formatLang(get_total()) ]] [[ company.currency_id.symbol ]] + [[ formatLang(get_total(), dp='Account') ]] [[ company.currency_id.symbol ]] - [[ formatLang(get_bysal_total()) ]] [[ company.currency_id.symbol ]] + [[ formatLang(get_bysal_total(), dp='Account') ]] [[ company.currency_id.symbol ]] From 4e7dfb38434aa53a399895372ea49b393b782d86 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:26:15 +0200 Subject: [PATCH 022/140] [IMP] hr_payroll: 'salary payment register' report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005112615-kmorvnwp7cm9yavu --- addons/hr_payroll/report/payroll_register.rml | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/addons/hr_payroll/report/payroll_register.rml b/addons/hr_payroll/report/payroll_register.rml index d7df0ada7cc..f5ec73cede4 100644 --- a/addons/hr_payroll/report/payroll_register.rml +++ b/addons/hr_payroll/report/payroll_register.rml @@ -179,22 +179,22 @@ [[ l.employee_id.name ]] - [[ formatLang(l.basic) ]] [[ company.currency_id.symbol]] + [[ formatLang(l.basic, dp='Account') ]] [[ company.currency_id.symbol]] - [[ formatLang(l.other_pay)]] [[ company.currency_id.symbol]] + [[ formatLang(l.other_pay, dp='Account')]] [[ company.currency_id.symbol]] - [[ formatLang(l.allounce)]] [[ company.currency_id.symbol]] + [[ formatLang(l.allounce, dp='Account')]] [[ company.currency_id.symbol]] - [[ formatLang(l.grows)]] [[ company.currency_id.symbol]] + [[ formatLang(l.grows, dp='Account')]] [[ company.currency_id.symbol]] - [[ formatLang(l.deduction)]] [[ company.currency_id.symbol]] + [[ formatLang(l.deduction, dp='Account')]] [[ company.currency_id.symbol]] - [[ formatLang(l.net)]] [[ company.currency_id.symbol]] + [[ formatLang(l.net, dp='Account')]] [[ company.currency_id.symbol]] @@ -213,22 +213,22 @@ Total SAL([[ company.currency_id.code]]) - [[formatLang(get_basic())]][[ company.currency_id.symbol]] + [[formatLang(get_basic(), dp='Account')]][[ company.currency_id.symbol]] - [[formatLang(get_other())]] [[ company.currency_id.symbol]] + [[formatLang(get_other(), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_allow())]] [[ company.currency_id.symbol]] + [[formatLang(get_allow(), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_grows())]] [[ company.currency_id.symbol]] + [[formatLang(get_grows(), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_deduct())]] [[ company.currency_id.symbol]] + [[formatLang(get_deduct(), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_net())]] [[ company.currency_id.symbol]] + [[formatLang(get_net(), dp='Account')]] [[ company.currency_id.symbol]] @@ -265,4 +265,4 @@ - \ No newline at end of file + From e4ecbb0a71e3101b8dd9633db312a98ec208b3b7 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:34:21 +0200 Subject: [PATCH 023/140] [IMP] hr: 'exepnse', 'recruitment' and 'timesheet' dynamic reports now uses decimal.precision bzr revid: olt@tinyerp.com-20101005113421-8svidbt2oflfkzsj --- addons/hr_expense/report/hr_expense_report.py | 5 +++-- addons/hr_recruitment/report/hr_recruitment_report.py | 9 +++++---- addons/hr_timesheet_sheet/report/hr_timesheet_report.py | 4 +++- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/addons/hr_expense/report/hr_expense_report.py b/addons/hr_expense/report/hr_expense_report.py index 1de708d2beb..304787b7563 100644 --- a/addons/hr_expense/report/hr_expense_report.py +++ b/addons/hr_expense/report/hr_expense_report.py @@ -21,6 +21,7 @@ import tools from osv import fields,osv +from decimal_precision import decimal_precision as dp class hr_expense_report(osv.osv): @@ -47,11 +48,11 @@ class hr_expense_report(osv.osv): 'company_id':fields.many2one('res.company', 'Company', readonly=True), 'user_id':fields.many2one('res.users', 'Validation User', readonly=True), 'currency_id': fields.many2one('res.currency', 'Currency', readonly=True), - 'price_total':fields.float('Total Price', readonly=True), + 'price_total':fields.float('Total Price', readonly=True, digits_compute=dp.get_precision('Account')), 'delay_valid':fields.float('Delay to Valid', readonly=True), 'delay_confirm':fields.float('Delay to Confirm', readonly=True), 'analytic_account': fields.many2one('account.analytic.account','Analytic account',readonly=True), - 'price_average':fields.float('Average Price', readonly=True), + 'price_average':fields.float('Average Price', readonly=True, digits_compute=dp.get_precision('Account')), 'nbr':fields.integer('# of Lines', readonly=True), 'no_of_products':fields.integer('# of Products', readonly=True), 'no_of_account':fields.integer('# of Accounts', readonly=True), diff --git a/addons/hr_recruitment/report/hr_recruitment_report.py b/addons/hr_recruitment/report/hr_recruitment_report.py index 2a2ab8fce2b..67da3e35577 100644 --- a/addons/hr_recruitment/report/hr_recruitment_report.py +++ b/addons/hr_recruitment/report/hr_recruitment_report.py @@ -21,6 +21,8 @@ import tools from osv import fields,osv from hr_recruitment import hr_recruitment +from decimal_precision import decimal_precision as dp + AVAILABLE_STATES = [ ('draft','New'), @@ -72,9 +74,9 @@ class hr_recruitment_report(osv.osv): 'type_id': fields.many2one('hr.recruitment.degree', 'Degree'), 'department_id':fields.many2one('hr.department','Department',readonly=True), 'priority': fields.selection(hr_recruitment.AVAILABLE_PRIORITIES, 'Appreciation'), - 'salary_prop' : fields.float("Salary Proposed"), - 'salary_prop_avg' : fields.float("Avg Salary Proposed", group_operator="avg"), - 'salary_exp' : fields.float("Salary Expected"), + 'salary_prop' : fields.float("Salary Proposed", digits_compute=dp.get_precision('Account')), + 'salary_prop_avg' : fields.float("Avg Salary Proposed", group_operator="avg", digits_compute=dp.get_precision('Account')), + 'salary_exp' : fields.float("Salary Expected", digits_compute=dp.get_precision('Account')), 'partner_id': fields.many2one('res.partner', 'Partner',readonly=True), 'partner_address_id': fields.many2one('res.partner.address', 'Partner Contact Name',readonly=True), 'available' : fields.float("Availability"), @@ -82,7 +84,6 @@ class hr_recruitment_report(osv.osv): help="Number of Days to close the project issue"), 'delay_close': fields.float('Avg. Delay to Close', digits=(16,2), readonly=True, group_operator="avg", help="Number of Days to close the project issue"), - } _order = 'date desc' def init(self, cr): diff --git a/addons/hr_timesheet_sheet/report/hr_timesheet_report.py b/addons/hr_timesheet_sheet/report/hr_timesheet_report.py index 84ef868ab81..d20ad3a5f4c 100644 --- a/addons/hr_timesheet_sheet/report/hr_timesheet_report.py +++ b/addons/hr_timesheet_sheet/report/hr_timesheet_report.py @@ -21,6 +21,8 @@ import tools from osv import fields,osv +from decimal_precision import decimal_precision as dp + class hr_timesheet_report(osv.osv): _name = "hr.timesheet.report" @@ -40,7 +42,7 @@ class hr_timesheet_report(osv.osv): 'user_id': fields.many2one('res.users', 'User',readonly=True), 'account_id': fields.many2one('account.analytic.account', 'Analytic Account',readonly=True), 'company_id': fields.many2one('res.company', 'Company',readonly=True), - 'cost': fields.float('Cost',readonly=True), + 'cost': fields.float('Cost',readonly=True, digits_compute=dp.get_precision('Account')), 'quantity': fields.float('Quantity',readonly=True), } From ae5b993dce95dcca373e91e88a4cefbbad2c2510 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:43:38 +0200 Subject: [PATCH 024/140] [FIX] report.timesheet.task.user: fixed an error in date string parsing bzr revid: olt@tinyerp.com-20101005114338-s541m8y3u1v81z9g --- addons/project_timesheet/report/task_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/project_timesheet/report/task_report.py b/addons/project_timesheet/report/task_report.py index 261f4e17c64..5ebaa1d1b69 100644 --- a/addons/project_timesheet/report/task_report.py +++ b/addons/project_timesheet/report/task_report.py @@ -32,7 +32,7 @@ class report_timesheet_task_user(osv.osv): def _get_task_hours(self, cr, uid, ids, name,args,context): result = {} for record in self.browse(cr, uid, ids,context): - last_date = datetime(record.name, '%Y-%m-%d') + relativedelta(months=1) - 1 + last_date = datetime.strptime(record.name, '%Y-%m-%d') + relativedelta(months=1) - 1 task_obj=self.pool.get('project.task.work') task_ids = task_obj.search(cr, uid, [('user_id','=',record.user_id.id),('date','>=',record.name),('date','<=',last_date.strftime('%Y-%m-%d'))]) tsk_hrs = task_obj.read(cr, uid, task_ids, ['hours','date','user_id']) From 73b83e84c59870cd2812a69541951741b559e411 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:44:09 +0200 Subject: [PATCH 025/140] [IMP] hr_timesheet_sheet: timesheet report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005114409-kc22r86oduvc2qs6 --- addons/hr_timesheet_sheet/report/timesheet_report.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/hr_timesheet_sheet/report/timesheet_report.py b/addons/hr_timesheet_sheet/report/timesheet_report.py index a8c0440a053..2148f370560 100644 --- a/addons/hr_timesheet_sheet/report/timesheet_report.py +++ b/addons/hr_timesheet_sheet/report/timesheet_report.py @@ -21,6 +21,8 @@ import tools from osv import fields,osv +from decimal_precision import decimal_precision as dp + class timesheet_report(osv.osv): _name = "timesheet.report" @@ -53,7 +55,7 @@ class timesheet_report(osv.osv): ('confirm','Confirmed'), ('done','Done')], 'State', readonly=True), 'quantity': fields.float('#Quantity',readonly=True), - 'cost': fields.float('#Cost',readonly=True), + 'cost': fields.float('#Cost',readonly=True, digits_compute=dp.get_precision('Account')), } def init(self, cr): From e9bed69abe04daded640d59b738dd62490abc71a Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:53:38 +0200 Subject: [PATCH 026/140] [IMP] hr_payroll: employee salary detail report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005115338-kec4ru1drsyjaor3 --- .../report/report_employees_detail.rml | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/addons/hr_payroll/report/report_employees_detail.rml b/addons/hr_payroll/report/report_employees_detail.rml index 1988d932ce2..fcb98ef2b6d 100644 --- a/addons/hr_payroll/report/report_employees_detail.rml +++ b/addons/hr_payroll/report/report_employees_detail.rml @@ -572,46 +572,46 @@ - [[ get_monthly_total()[0] ]] + [[ get_monthly_total()[0]+'xxx' ]] - [[ formatLang(get_monthly_total()[1]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[1], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[2]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[2], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[3]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[3], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[4]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[4], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[5]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[5], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[6]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[6], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[7]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[7], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[8]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[8], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[9]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[9], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[10]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[10], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[11]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[11], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_monthly_total()[12]) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_monthly_total()[12], dp='Account') ]][[ company.currency_id.symbol ]] - [[ formatLang(get_total()) ]][[ company.currency_id.symbol ]] + [[ formatLang(get_total(), dp='Account') ]][[ company.currency_id.symbol ]] From bd438c2c65bf40f3811693313b8a1bdcc25d800a Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 13:56:31 +0200 Subject: [PATCH 027/140] [IMP] hr_payroll: yearly salary detail report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005115631-ytlplyukezcqi717 --- .../report/report_employees_detail.rml | 2 +- .../hr_payroll/report/report_year_report.rml | 52 +++++++++---------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/addons/hr_payroll/report/report_employees_detail.rml b/addons/hr_payroll/report/report_employees_detail.rml index fcb98ef2b6d..c1b91ce5910 100644 --- a/addons/hr_payroll/report/report_employees_detail.rml +++ b/addons/hr_payroll/report/report_employees_detail.rml @@ -572,7 +572,7 @@ - [[ get_monthly_total()[0]+'xxx' ]] + [[ get_monthly_total()[0] ]] [[ formatLang(get_monthly_total()[1], dp='Account') ]][[ company.currency_id.symbol ]] diff --git a/addons/hr_payroll/report/report_year_report.rml b/addons/hr_payroll/report/report_year_report.rml index 4c32436955a..77762c6cfcc 100755 --- a/addons/hr_payroll/report/report_year_report.rml +++ b/addons/hr_payroll/report/report_year_report.rml @@ -191,43 +191,43 @@ [[ e[0] ]] - [[ formatLang(e[1]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[1], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[2]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[2], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[3]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[3], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[4]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[4], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[5]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[5], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[6]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[6], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[7]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[7], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[8]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[8], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[9]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[9], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[10]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[10], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[11]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[11], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[12]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[12], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(e[13]) ]] [[company.currency_id.symbol]] + [[ formatLang(e[13], dp='Account') ]] [[company.currency_id.symbol]] @@ -250,43 +250,43 @@ Total([[company.currency_id.code]]) - [[ formatLang(t[1]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[1], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[2]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[2], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[3]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[3], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[4]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[4], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[5]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[5], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[6]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[6], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[7]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[7], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[8]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[8], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[9]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[9], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[10]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[10], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[11]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[11], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(t[12]) ]] [[company.currency_id.symbol]] + [[ formatLang(t[12], dp='Account') ]] [[company.currency_id.symbol]] - [[ formatLang(get_total()) ]] [[company.currency_id.symbol]] + [[ formatLang(get_total(), dp='Account') ]] [[company.currency_id.symbol]] From b7232380928c341b49723f183fb73d5008005dbe Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 14:09:06 +0200 Subject: [PATCH 028/140] [IMP] point_of_sale: detail of sales report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005120906-3f167keib40njq54 --- addons/point_of_sale/report/pos_details.rml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/addons/point_of_sale/report/pos_details.rml b/addons/point_of_sale/report/pos_details.rml index f3bebade402..9bb241387b5 100644 --- a/addons/point_of_sale/report/pos_details.rml +++ b/addons/point_of_sale/report/pos_details.rml @@ -229,13 +229,13 @@ [[ line_ids['name'] ]] - [[ formatLang(line_ids['price_unit']) ]][[ company.currency_id.symbol ]] + [[ formatLang(line_ids['price_unit'], dp='Sale Price') ]][[ company.currency_id.symbol ]] [[ formatLang(line_ids['qty']) ]] - [[ formatLang(line_ids['discount']) ]][[ company.currency_id.symbol ]] + [[ formatLang(line_ids['discount'], dp='Sale Price') ]][[ company.currency_id.symbol ]] [[ getinvoice(line_ids['invoice_id'],user) or removeParentNode('font') ]] @@ -281,7 +281,7 @@ [[ repeatIn(getpayments(data['form'],user), 'p') ]] [[ p['name'] or removeParentNode('tr') ]] - [[ formatLang(p['sum']) or removeParentNode('tr') ]] [[ company.currency_id.symbol ]] + [[ formatLang(p['sum'], dp='Account') or removeParentNode('tr') ]] [[ company.currency_id.symbol ]] @@ -290,7 +290,7 @@ - + s @@ -312,7 +312,7 @@ Sales total - [[ formatLang(getsalestotal2(data['form'],user)) ]][[ company.currency_id.symbol ]] + [[ formatLang(getsalestotal2(data['form'],user), dp='Sale Price') ]][[ company.currency_id.symbol ]] @@ -328,7 +328,7 @@ Total invoiced - [[ formatLang(getsuminvoice2(data['form'],user)) ]][[ company.currency_id.symbol ]] + [[ formatLang(getsuminvoice2(data['form'],user), dp='Sale Price') ]][[ company.currency_id.symbol ]] @@ -336,7 +336,7 @@ Total discount - [[ formatLang(getsumdisc(objects)) ]][[ company.currency_id.symbol ]] + [[ formatLang(getsumdisc(objects), dp='Sale Price') ]][[ company.currency_id.symbol ]] @@ -344,7 +344,7 @@ Total paid - [[ formatLang(getpaidtotal2(data['form'],user)) ]][[ company.currency_id.symbol ]] + [[ formatLang(getpaidtotal2(data['form'],user), dp='Sale Price') ]][[ company.currency_id.symbol ]] @@ -352,7 +352,7 @@ Total of the day - [[ formatLang(gettotalofthaday(data['form'])) ]][[ company.currency_id.symbol ]] + [[ formatLang(gettotalofthaday(data['form']), dp='Sale Price') ]][[ company.currency_id.symbol ]] @@ -360,4 +360,4 @@ - \ No newline at end of file + From 3703b886bff2e1af1f44674bed8eff923d2dfd06 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 14:16:51 +0200 Subject: [PATCH 029/140] [IMP] point_of_sale: 'Sales Lines' report now uses decimal.precision bzr revid: olt@tinyerp.com-20101005121651-vbn7jl71aa2w74la --- .../point_of_sale/report/pos_payment_report_date.rml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/addons/point_of_sale/report/pos_payment_report_date.rml b/addons/point_of_sale/report/pos_payment_report_date.rml index 846eaf1f861..9d132fbfbf0 100644 --- a/addons/point_of_sale/report/pos_payment_report_date.rml +++ b/addons/point_of_sale/report/pos_payment_report_date.rml @@ -158,13 +158,13 @@ [[ formatLang(line_ids['qty']) ]] - [[ formatLang(line_ids['discount']) ]] + [[ formatLang(line_ids['discount'], dp='Sale Price') ]] - [[ formatLang(line_ids['price_unit']) ]] [[ company.currency_id.symbol ]] + [[ formatLang(line_ids['price_unit'], dp='Sale Price') ]] [[ company.currency_id.symbol ]] - [[ formatLang(line_ids['total']) ]] [[ company.currency_id.symbol ]] + [[ formatLang(line_ids['total'], dp='Sale Price') ]] [[ company.currency_id.symbol ]] @@ -190,7 +190,7 @@ Total - [[ formatLang(pos_payment_date_total(data['form'])) or removeParentNode('blockTable')]] [[ company.currency_id.symbol ]] + [[ formatLang(pos_payment_date_total(data['form']), dp='Sale Price') or removeParentNode('blockTable')]] [[ company.currency_id.symbol ]] @@ -198,4 +198,4 @@ - \ No newline at end of file + From aaa9f12702dfa0afd96806d4716b69a17e77738d Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Tue, 5 Oct 2010 14:29:35 +0200 Subject: [PATCH 030/140] [IMP] marketing: now uses decimal.precision bzr revid: olt@tinyerp.com-20101005122935-qe6yghvx37itxwzw --- addons/marketing_campaign/marketing_campaign.py | 7 ++++--- addons/marketing_campaign/report/campaign_analysis.py | 6 ++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/addons/marketing_campaign/marketing_campaign.py b/addons/marketing_campaign/marketing_campaign.py index bdfe825781c..c62b5306c57 100644 --- a/addons/marketing_campaign/marketing_campaign.py +++ b/addons/marketing_campaign/marketing_campaign.py @@ -28,6 +28,7 @@ from traceback import format_exception from sys import exc_info from tools.safe_eval import safe_eval as eval import re +from decimal_precision import decimal_precision as dp from osv import fields, osv import netsvc @@ -108,7 +109,7 @@ Normal - the campaign runs normally and automatically sends all emails and repor 'State',), 'activity_ids': fields.one2many('marketing.campaign.activity', 'campaign_id', 'Activities'), - 'fixed_cost': fields.float('Fixed Cost', help="Fixed cost for running this campaign. You may also specify variable cost and revenue on each campaign activity. Cost and Revenue statistics are included in Campaign Reporting."), + 'fixed_cost': fields.float('Fixed Cost', help="Fixed cost for running this campaign. You may also specify variable cost and revenue on each campaign activity. Cost and Revenue statistics are included in Campaign Reporting.", digits_compute=dp.get_precision('Purchase Price')), } _defaults = { @@ -399,8 +400,8 @@ class marketing_campaign_activity(osv.osv): 'from_ids': fields.one2many('marketing.campaign.transition', 'activity_to_id', 'Previous Activities'), - 'variable_cost': fields.float('Variable Cost', help="Set a variable cost if you consider that every campaign item that has reached this point has entailed a certain cost. You can get cost statistics in the Reporting section"), - 'revenue': fields.float('Revenue', help="Set an expected revenue if you consider that every campaign item that has reached this point has generated a certain revenue. You can get revenue statistics in the Reporting section"), + 'variable_cost': fields.float('Variable Cost', help="Set a variable cost if you consider that every campaign item that has reached this point has entailed a certain cost. You can get cost statistics in the Reporting section", digits_compute=dp.get_precision('Purchase Price')), + 'revenue': fields.float('Revenue', help="Set an expected revenue if you consider that every campaign item that has reached this point has generated a certain revenue. You can get revenue statistics in the Reporting section", digits_compute=dp.get_precision('Sale Price')), 'signal': fields.char('Signal', size=128, help='An activity with a signal can be called programmatically. Be careful, the workitem is always created when a signal is sent'), 'keep_if_condition_not_met': fields.boolean("Don't delete workitems", diff --git a/addons/marketing_campaign/report/campaign_analysis.py b/addons/marketing_campaign/report/campaign_analysis.py index 066423c546c..08f0599fb24 100644 --- a/addons/marketing_campaign/report/campaign_analysis.py +++ b/addons/marketing_campaign/report/campaign_analysis.py @@ -20,6 +20,8 @@ ############################################################################## import tools from osv import fields, osv +from decimal_precision import decimal_precision as dp + class campaign_analysis(osv.osv): _name = "campaign.analysis" @@ -61,8 +63,8 @@ class campaign_analysis(osv.osv): 'country_id': fields.related('partner_id','address', 'country_id', type='many2one', relation='res.country',string='Country'), 'total_cost' : fields.function(_total_cost, string='Cost', method=True, - type="float" ), - 'revenue': fields.float('Revenue',digits=(16,2),readonly=True), + type="float", digits_compute=dp.get_precision('Purchase Price')), + 'revenue': fields.float('Revenue', readonly=True, digits_compute=dp.get_precision('Sale Price')), 'count' : fields.integer('# of Actions', readonly=True), 'state': fields.selection([('todo', 'To Do'), ('exception', 'Exception'), ('done', 'Done'), From 4750ff6cb843fc6b4a88f140afbca2b9f7c7e944 Mon Sep 17 00:00:00 2001 From: "olt@tinyerp.com" <> Date: Wed, 6 Oct 2010 09:31:04 +0200 Subject: [PATCH 031/140] [FIX] account: account_general_ledger_landscape report: wrong argument passing to formatLang bzr revid: olt@tinyerp.com-20101006073104-forhzegtyvelzgtg --- addons/account/report/account_general_ledger_landscape.rml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/report/account_general_ledger_landscape.rml b/addons/account/report/account_general_ledger_landscape.rml index b370b03a4ec..40f8ad4a85e 100644 --- a/addons/account/report/account_general_ledger_landscape.rml +++ b/addons/account/report/account_general_ledger_landscape.rml @@ -329,7 +329,7 @@ [[ formatLang(sum_debit_account(o), dp='Account') ]] [[ formatLang(sum_credit_account(o), dp='Account') ]] - [[ formatLang(sum_balance_account(o), 'Account') ]] [[ company.currency_id.symbol ]] + [[ formatLang(sum_balance_account(o), dp='Account') ]] [[ company.currency_id.symbol ]] From 6bd5b4fb38e3bec20b75e522482d73b69b6896cd Mon Sep 17 00:00:00 2001 From: "aag (OpenERP)" Date: Mon, 6 Dec 2010 18:05:39 +0530 Subject: [PATCH 032/140] [IMP] Purchase:Improvement in Purchase order in pad bzr revid: aag@tinyerp.co.in-20101206123539-jfp416d9xbjdrhlq --- addons/purchase/purchase_view.xml | 2 +- addons/stock/stock.py | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/addons/purchase/purchase_view.xml b/addons/purchase/purchase_view.xml index ce8923ed5cd..c69bc376543 100644 --- a/addons/purchase/purchase_view.xml +++ b/addons/purchase/purchase_view.xml @@ -189,7 +189,7 @@ - + diff --git a/addons/stock/stock.py b/addons/stock/stock.py index d6f4a95bc9e..6fdd2f0a0fd 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -1284,6 +1284,9 @@ class stock_picking(osv.osv): @param ids: List of Picking Ids @param context: A standard dictionary for contextual values """ + if context is None: + context = {} + mob_obj = self.pool.get('ir.model.data') for pick in self.browse(cr, uid, ids, context=context): msg='' if pick.auto_picking: @@ -1303,9 +1306,12 @@ class stock_picking(osv.osv): 'done': _('is done.'), 'draft':_('is in draft state.'), } + res = mob_obj.get_object_reference(cr, uid, 'stock', 'view_picking_in_form') + view_id = res and res[1] or False + context.update({'view_id': view_id}) message += state_list[pick.state] - self.log(cr, uid, pick.id, message) - return True + self.log(cr, uid, pick.id, message,context=context) + return context stock_picking() From 1f693e0200beff343a16c947b6d991729fc47c61 Mon Sep 17 00:00:00 2001 From: "aag (OpenERP)" Date: Thu, 9 Dec 2010 16:34:55 +0530 Subject: [PATCH 033/140] [FIX]stock,purchase: add products menus in order in purchase and warehouse lp bug: https://launchpad.net/bugs/687357 fixed bzr revid: aag@tinyerp.co.in-20101209110455-10w52vdd8whrhygi --- addons/purchase/purchase_view.xml | 26 +++++++++++++++++++++++++- addons/stock/stock_view.xml | 20 ++++++++++++++++++++ 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/addons/purchase/purchase_view.xml b/addons/purchase/purchase_view.xml index fce92eb5ad9..8330a91d7ff 100644 --- a/addons/purchase/purchase_view.xml +++ b/addons/purchase/purchase_view.xml @@ -19,6 +19,26 @@ action="product.product_pricelist_action2" id="menu_product_pricelist_action2_purchase" parent="menu_purhase_config_purchase" sequence="1"/> + + + + + + + + + + @@ -83,8 +103,12 @@ + + + + parent="menu_procurement_management_product" sequence="1"/> purchase.order.calendar diff --git a/addons/stock/stock_view.xml b/addons/stock/stock_view.xml index feb7cc178fe..9cb5a63b21c 100644 --- a/addons/stock/stock_view.xml +++ b/addons/stock/stock_view.xml @@ -9,10 +9,30 @@ + + + + + + + stock.inventory.line.tree From 8970498766a633dc2d99a875322c2dfaa7edbcce Mon Sep 17 00:00:00 2001 From: "ksa (Open ERP)" Date: Mon, 13 Dec 2010 10:31:46 +0530 Subject: [PATCH 034/140] [IMP]: Improvement PO file bzr revid: ksa@tinyerp.co.in-20101213050146-x186ze1dcrh8yzd5 --- addons/mrp/i18n/ar.po | 2 +- addons/mrp/i18n/bg.po | 2 +- addons/mrp/i18n/bs.po | 2 +- addons/mrp/i18n/ca.po | 2 +- addons/mrp/i18n/cs.po | 2 +- addons/mrp/i18n/el.po | 2 +- addons/mrp/i18n/es_AR.po | 2 +- addons/mrp/i18n/es_EC.po | 2 +- addons/mrp/i18n/et.po | 2 +- addons/mrp/i18n/fi.po | 2 +- addons/mrp/i18n/hi.po | 2 +- addons/mrp/i18n/hr.po | 2 +- addons/mrp/i18n/hu.po | 2 +- addons/mrp/i18n/id.po | 2 +- addons/mrp/i18n/ko.po | 2 +- addons/mrp/i18n/lt.po | 2 +- addons/mrp/i18n/mrp.pot | 2 +- addons/mrp/i18n/nl.po | 2 +- addons/mrp/i18n/nl_BE.po | 2 +- addons/mrp/i18n/pl.po | 2 +- addons/mrp/i18n/ro.po | 2 +- addons/mrp/i18n/ru.po | 2 +- addons/mrp/i18n/sk.po | 2 +- addons/mrp/i18n/sl.po | 2 +- addons/mrp/i18n/sq.po | 2 +- addons/mrp/i18n/sv.po | 2 +- addons/mrp/i18n/tlh.po | 2 +- addons/mrp/i18n/tr.po | 2 +- addons/mrp/i18n/uk.po | 2 +- addons/mrp/i18n/vi.po | 2 +- addons/mrp/i18n/zh_CN.po | 2 +- addons/mrp/i18n/zh_HK.po | 2 +- addons/mrp/i18n/zh_TW.po | 2 +- addons/mrp/mrp.py | 4 ++-- 34 files changed, 35 insertions(+), 35 deletions(-) diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index 27b75efdd58..3111ad3d458 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index 704fcf62684..b2de4e61971 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index 8f7abe56581..fd744046391 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index 2fb6924a8fe..d80cb3d4002 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index 174f7492225..5761b875c9b 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index e8492bae47b..84f76268775 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -46,7 +46,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index 7d577310b3e..347dbdac7e7 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index 11e3295448a..92e1fc69e1f 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index 95ccc43eb63..cace111bd8a 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index bdbedc1da4d..d8c5d5b9a7b 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/mrp/i18n/fi.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index 773c2239755..d6d75308a6c 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 287970c5b05..348f23531fc 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index 1f890e78763..ebecf39fd8c 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 01a2003fe57..5d09c589d6a 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index bbeb2c2f103..e79f38e83d0 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index a920da42f79..5f1211431c9 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/mrp.pot b/addons/mrp/i18n/mrp.pot index 6f1bfad9ac4..05aafca61ac 100644 --- a/addons/mrp/i18n/mrp.pot +++ b/addons/mrp/i18n/mrp.pot @@ -507,7 +507,7 @@ msgstr "" #. module: mrp #: model:ir.model,name:mrp.model_mrp_workcenter_load -msgid "Workcenter Load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index 1aeda3fe0db..c94af8af71b 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index f76706990d3..b4e88959ede 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index f3275813800..6c928203e86 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -43,7 +43,7 @@ msgstr "Wykorzystanie centrum roboczego" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "Obłożenie centrum roboczego" #. module: mrp diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 301a3e146bd..47fed58989c 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index b73a4f8220d..20d9fb21a98 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index f7a28b078dd..e0f59284c36 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 87f3031fbd9..545467f20a9 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index c9e7ac5000b..077b47d8bec 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index 98de1a9461f..73054816890 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index 66e50c4d654..8b7f3ad3d80 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 50c3edee247..c442e24db15 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index e8a72f7e738..98ef59e0965 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index 400ea4e17ce..7575e5574fc 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 22fb3395e3d..56a61fc5443 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index d0ebcb7a6bb..f03fa4bb407 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index 76a691f5eda..76983b46827 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Centers load" +msgid "Work Center Load" msgstr "" #. module: mrp diff --git a/addons/mrp/mrp.py b/addons/mrp/mrp.py index 80574cf4a4d..4c14bb9c08c 100644 --- a/addons/mrp/mrp.py +++ b/addons/mrp/mrp.py @@ -53,7 +53,7 @@ class mrp_workcenter(osv.osv): 'costs_journal_id': fields.many2one('account.analytic.journal', 'Analytic Journal'), 'costs_general_account_id': fields.many2one('account.account', 'General Account', domain=[('type','<>','view')]), 'resource_id': fields.many2one('resource.resource','Resource', ondelete='cascade', required=True), - 'product_id': fields.many2one('product.product','Workcenter Product', help="Fill this product to track easily your production costs in the analytic accounting."), + 'product_id': fields.many2one('product.product','Work Center Product', help="Fill this product to track easily your production costs in the analytic accounting."), } _defaults = { 'capacity_per_cycle': 1.0, @@ -333,7 +333,7 @@ class mrp_bom(osv.osv): result = result + res[0] result2 = result2 + res[1] return result, result2 - + def copy_data(self, cr, uid, id, default=None, context=None): if default is None: default = {} From 487f47cde8d472d44df325495ab8e161e16fd779 Mon Sep 17 00:00:00 2001 From: "ksa (Open ERP)" Date: Mon, 13 Dec 2010 11:39:53 +0530 Subject: [PATCH 035/140] [IMP]: Improvement bzr revid: ksa@tinyerp.co.in-20101213060953-ov1xe2kik8edd98x --- addons/mrp/report/workcenter_load.py | 4 ++-- addons/mrp/test/mrp_report.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/mrp/report/workcenter_load.py b/addons/mrp/report/workcenter_load.py index 9be42edd860..ef9a22a914e 100644 --- a/addons/mrp/report/workcenter_load.py +++ b/addons/mrp/report/workcenter_load.py @@ -124,7 +124,7 @@ class report_custom(report_int): x_index.append((dates[date]['name'], date)) pdf_string = StringIO.StringIO() can = canvas.init(fname=pdf_string, format='pdf') - can.set_title("Work Centers Load") + can.set_title("Work Center Load") chart_object.set_defaults(line_plot.T, line_style=None) if datas['form']['measure_unit'] == 'cycles': y_label = "Load (Cycles)" @@ -132,7 +132,7 @@ class report_custom(report_int): y_label = "Load (Hours)" # For add the report header on the top of the report. - tb = text_box.T(loc=(300, 500), text="/hL/15/bWork Centers Load", line_style=None) + tb = text_box.T(loc=(300, 500), text="/hL/15/bWork Center Load", line_style=None) tb.draw() ar = area.T(legend = legend.T(), x_grid_style = line_style.gray70_dash1, diff --git a/addons/mrp/test/mrp_report.yml b/addons/mrp/test/mrp_report.yml index db9a83d495b..62d58674884 100644 --- a/addons/mrp/test/mrp_report.yml +++ b/addons/mrp/test/mrp_report.yml @@ -26,7 +26,7 @@ file(os.path.join(tools.config['test_report_directory'], 'mrp-product_price_report.'+format), 'wb+').write(data) - - In order to test the PDF reports defined on a MRP, we will print Workcenter Load Report + In order to test the PDF reports defined on a MRP, we will print Work Center Load Report - !python {model: mrp.workcenter}: | import netsvc, tools, os, time From 07653aaa32cabc3981f26e5cede9dfe4dd34f530 Mon Sep 17 00:00:00 2001 From: "ksa (Open ERP)" Date: Mon, 13 Dec 2010 13:43:20 +0530 Subject: [PATCH 036/140] [IMP] MRP: Improvement Work Center Load => Work Center Loads bzr revid: ksa@tinyerp.co.in-20101213081320-4vdzf1pao2hj6bpt --- addons/mrp/i18n/ar.po | 2 +- addons/mrp/i18n/bg.po | 2 +- addons/mrp/i18n/bs.po | 2 +- addons/mrp/i18n/ca.po | 2 +- addons/mrp/i18n/cs.po | 2 +- addons/mrp/i18n/el.po | 2 +- addons/mrp/i18n/es_AR.po | 2 +- addons/mrp/i18n/es_EC.po | 2 +- addons/mrp/i18n/et.po | 2 +- addons/mrp/i18n/fi.po | 2 +- addons/mrp/i18n/hi.po | 2 +- addons/mrp/i18n/hr.po | 2 +- addons/mrp/i18n/hu.po | 2 +- addons/mrp/i18n/id.po | 2 +- addons/mrp/i18n/ko.po | 2 +- addons/mrp/i18n/lt.po | 2 +- addons/mrp/i18n/nl.po | 2 +- addons/mrp/i18n/nl_BE.po | 2 +- addons/mrp/i18n/pl.po | 2 +- addons/mrp/i18n/ro.po | 2 +- addons/mrp/i18n/ru.po | 2 +- addons/mrp/i18n/sk.po | 2 +- addons/mrp/i18n/sl.po | 2 +- addons/mrp/i18n/sq.po | 2 +- addons/mrp/i18n/sv.po | 2 +- addons/mrp/i18n/tlh.po | 2 +- addons/mrp/i18n/tr.po | 2 +- addons/mrp/i18n/uk.po | 2 +- addons/mrp/i18n/vi.po | 2 +- addons/mrp/i18n/zh_CN.po | 2 +- addons/mrp/i18n/zh_HK.po | 2 +- addons/mrp/i18n/zh_TW.po | 2 +- addons/mrp/report/mrp_report_view.xml | 4 ++-- 33 files changed, 34 insertions(+), 34 deletions(-) diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index 3111ad3d458..e51f2f4bd70 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index b2de4e61971..e99c2a76e20 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index fd744046391..ffcdec783c1 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index d80cb3d4002..d56964f2573 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index 5761b875c9b..e53ea99971d 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index 84f76268775..9accbf3b998 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -46,7 +46,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index 347dbdac7e7..a9003165a8b 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index 92e1fc69e1f..2bce09b988a 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index cace111bd8a..cab5a4c5f8f 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index d8c5d5b9a7b..cf52320d2a7 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/mrp/i18n/fi.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index d6d75308a6c..1cd278b2afd 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 348f23531fc..0027d884bb6 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index ebecf39fd8c..fed5fa55d4e 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 5d09c589d6a..f896f2e5bbe 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index e79f38e83d0..f6e82bfb539 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index 5f1211431c9..a0cb7b8772e 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index c94af8af71b..4ca48e0a4c3 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index b4e88959ede..1f1c2f372ac 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index 6c928203e86..cd638f9b644 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -43,7 +43,7 @@ msgstr "Wykorzystanie centrum roboczego" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "Obłożenie centrum roboczego" #. module: mrp diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 47fed58989c..546c54671bb 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index 20d9fb21a98..746e6841802 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index e0f59284c36..45ec4713940 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 545467f20a9..29bf2115c08 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index 077b47d8bec..d78b6044ecf 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index 73054816890..19e0bbd9426 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index 8b7f3ad3d80..9419aa0ca36 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index c442e24db15..4646e3326c4 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 98ef59e0965..1ede79d8dbf 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index 7575e5574fc..b99f66141ed 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 56a61fc5443..3afc1b0be8c 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index f03fa4bb407..8745bd5e198 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.po @@ -44,7 +44,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index 76983b46827..fbeebe3c1ae 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -43,7 +43,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Load" +msgid "Work Center Loads" msgstr "" #. module: mrp diff --git a/addons/mrp/report/mrp_report_view.xml b/addons/mrp/report/mrp_report_view.xml index a1e3f7174bd..09e15ebf39f 100644 --- a/addons/mrp/report/mrp_report_view.xml +++ b/addons/mrp/report/mrp_report_view.xml @@ -7,7 +7,7 @@ report.workcenter.load tree - + @@ -29,7 +29,7 @@ - + report.workcenter.load.search report.workcenter.load From f9e92e28c8ed4483c7d4091a15f64a3e34cf4a16 Mon Sep 17 00:00:00 2001 From: "ksa (Open ERP)" Date: Mon, 13 Dec 2010 17:59:06 +0530 Subject: [PATCH 037/140] [IMP] MRP: Improvement In PO file for Work Center bzr revid: ksa@tinyerp.co.in-20101213122906-rzobpg2081myq286 --- addons/mrp/i18n/ar.po | 16 ++++++++-------- addons/mrp/i18n/bg.po | 16 ++++++++-------- addons/mrp/i18n/bs.po | 12 ++++++------ addons/mrp/i18n/ca.po | 18 +++++++++--------- addons/mrp/i18n/cs.po | 16 ++++++++-------- addons/mrp/i18n/de.po | 18 +++++++++--------- addons/mrp/i18n/el.po | 18 +++++++++--------- addons/mrp/i18n/es.po | 18 +++++++++--------- addons/mrp/i18n/es_AR.po | 18 +++++++++--------- addons/mrp/i18n/es_EC.po | 18 +++++++++--------- addons/mrp/i18n/et.po | 18 +++++++++--------- addons/mrp/i18n/fi.po | 18 +++++++++--------- addons/mrp/i18n/fr.po | 18 +++++++++--------- addons/mrp/i18n/hi.po | 18 +++++++++--------- addons/mrp/i18n/hr.po | 18 +++++++++--------- addons/mrp/i18n/hu.po | 18 +++++++++--------- addons/mrp/i18n/id.po | 18 +++++++++--------- addons/mrp/i18n/it.po | 18 +++++++++--------- addons/mrp/i18n/ko.po | 18 +++++++++--------- addons/mrp/i18n/lt.po | 18 +++++++++--------- addons/mrp/i18n/mrp.pot | 20 +++++++++++++------- addons/mrp/i18n/nl.po | 18 +++++++++--------- addons/mrp/i18n/nl_BE.po | 18 +++++++++--------- addons/mrp/i18n/pl.po | 18 +++++++++--------- addons/mrp/i18n/pt.po | 18 +++++++++--------- addons/mrp/i18n/pt_BR.po | 18 +++++++++--------- addons/mrp/i18n/ro.po | 18 +++++++++--------- addons/mrp/i18n/ru.po | 18 +++++++++--------- addons/mrp/i18n/sk.po | 18 +++++++++--------- addons/mrp/i18n/sl.po | 18 +++++++++--------- addons/mrp/i18n/sq.po | 18 +++++++++--------- addons/mrp/i18n/sv.po | 22 +++++++++++----------- addons/mrp/i18n/tlh.po | 18 +++++++++--------- addons/mrp/i18n/tr.po | 18 +++++++++--------- addons/mrp/i18n/uk.po | 18 +++++++++--------- addons/mrp/i18n/vi.po | 18 +++++++++--------- addons/mrp/i18n/zh_CN.po | 18 +++++++++--------- addons/mrp/i18n/zh_HK.po | 18 +++++++++--------- addons/mrp/i18n/zh_TW.po | 18 +++++++++--------- addons/mrp/mrp.py | 16 ++++++++-------- 40 files changed, 359 insertions(+), 353 deletions(-) diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index e51f2f4bd70..450207de48d 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1606,8 +1606,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,8 +1692,8 @@ msgstr "" #: help:mrp.production,routing_id:0 msgid "" "The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1726,7 +1726,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index e99c2a76e20..c546ed433a2 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -566,7 +566,7 @@ msgstr "Натоварване на работния центрър" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1608,8 +1608,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1693,9 +1693,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1728,7 +1728,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index ffcdec783c1..56bca3b354f 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1606,8 +1606,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1726,7 +1726,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index d56964f2573..29a78a13ec2 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -511,7 +511,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -568,7 +568,7 @@ msgstr "Càrrega del centre de producció" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1068,7 +1068,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1682,8 +1682,8 @@ msgstr "Consumició de productes produïts" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Descripció del centre de producció. Descriu aquí que és un cicle segons " "aquest centre de producció." @@ -1768,9 +1768,9 @@ msgstr "Ordre de producció" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1803,7 +1803,7 @@ msgstr "Estructura LdM" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index e53ea99971d..3ea93de616f 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index d15057ed295..d0d17b0f087 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/mrp/i18n/de.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "Spezifiziere Stundensatz der Fertigungsstelle." #. module: mrp @@ -566,7 +566,7 @@ msgstr "Fertigungsstelle Auslastung" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "Spezifiziere Kosten der Fertigungsstelle pro Zyklus" #. module: mrp @@ -1090,7 +1090,7 @@ msgstr "]" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "Reihenfolge bei Anzeige der Liste für Fertigungsstellen" #. module: mrp @@ -1695,8 +1695,8 @@ msgstr "Fertigprodukte Verbrauch" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Beschreibung der Fertigungsstelle. Beschreibe hier den Fertigungszyklus aus " "der Perspektive dieser Fertigungsstelle." @@ -1789,9 +1789,9 @@ msgstr "Fertigungsauftrag" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" "Liste der Fertigungsvorgänge (Liste Fertigungsstellen) für die Produktion " @@ -1828,7 +1828,7 @@ msgstr "Stückliste Struktur" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" "Anzahl Fertigungsvorgänge die bei einer Fertigungsstelle parallel bearbeitet " diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index 9accbf3b998..080d8d06049 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -514,7 +514,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -571,7 +571,7 @@ msgstr "Φόρτος κέντρου εργασίας" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1071,7 +1071,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1684,8 +1684,8 @@ msgstr "Ανάλωση Παραγομένων Προϊόντων" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Περιγραφή κέντρου εργασίας. Εξηγείστε εδώ τι αποτελεί κύκλο για το κέντρο " "αυτό." @@ -1770,9 +1770,9 @@ msgstr "Εντολή Παραγωγής" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1805,7 +1805,7 @@ msgstr "Δομή ΚΥ" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index 35dae9a5811..427cde00252 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/i18n/es.po @@ -510,7 +510,7 @@ msgstr "Error: Código EAN no válido" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "Indica coste del centro de trabajo por hora." #. module: mrp @@ -567,7 +567,7 @@ msgstr "Catge centro de producción" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "Especifique el coste por centro de prodcción" #. module: mrp @@ -1101,7 +1101,7 @@ msgstr "]" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" "Indica el orden de secuencia cuando se muestra una lista de rutas de centros " "de trabajo." @@ -1729,8 +1729,8 @@ msgstr "Consumición de productos producidos" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Descripción del centro de producción. Describa aquí que es un ciclo según " "este centro de producción." @@ -1824,9 +1824,9 @@ msgstr "Orden de producción" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" "La lista de las operaciones (lista de los centros de trabajo) para producir " @@ -1864,7 +1864,7 @@ msgstr "Despiece de la LdM" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" "Número de operaciones que este centro de producción puede realizar en " diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index a9003165a8b..810e4671bb1 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1606,8 +1606,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1691,9 +1691,9 @@ msgstr "Orden de Producción" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1726,7 +1726,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index 2bce09b988a..a26d72526c3 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -515,7 +515,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -572,7 +572,7 @@ msgstr "Catge centro de producción" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1047,7 +1047,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1615,8 +1615,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Descripción del centro de producción. Describa aquí que es un ciclo según " "este centro de producción." @@ -1702,9 +1702,9 @@ msgstr "Orden de producción" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1737,7 +1737,7 @@ msgstr "Despiece de la LdM" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index cab5a4c5f8f..f927ca6f4e9 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "Töökeskkonna Koormus" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Töökeskonna kirjeldus. selgita siin mis tsükklid kuuluvad sellele " "töökeskonnale." @@ -1694,9 +1694,9 @@ msgstr "Tootmiskorraldus" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1729,7 +1729,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index cf52320d2a7..e202377cc51 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/mrp/i18n/fi.po @@ -511,7 +511,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -568,7 +568,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1068,7 +1068,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1681,8 +1681,8 @@ msgstr "Tuotannon tuotteiden kulutus" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Työpisteen kuvaus. Selitä tässä mitä kierros tarkoittaa tässä työpisteessä." @@ -1766,9 +1766,9 @@ msgstr "Tuotantotilaus" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1801,7 +1801,7 @@ msgstr "Osaluettelon rakenne" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index 32308270ecb..041b5110d1d 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/i18n/fr.po @@ -516,7 +516,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "Précisez le coût horaire du centre de charge" #. module: mrp @@ -573,7 +573,7 @@ msgstr "Charge par poste" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "Précisez le coût par cycle du poste de charge" #. module: mrp @@ -1087,7 +1087,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1679,8 +1679,8 @@ msgstr "Consommation en production de produit" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Description du centre de travail. Expliquez ici ce qu'est le cycle d'après " "le centre de travail." @@ -1768,9 +1768,9 @@ msgstr "Ordre de Production" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" "La liste des opérations (liste des postes de charge) pour fabriquer le " @@ -1808,7 +1808,7 @@ msgstr "Structure de la Nomenclature" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" "Nombre d'opérations que ce poste de charge peut réaliser en parallèle. Si ce " diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index 1cd278b2afd..3b3640a6acc 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -510,7 +510,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -567,7 +567,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1042,7 +1042,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 0027d884bb6..9dd518ca95f 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "Teret Radnog Centra" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index fed5fa55d4e..155020c2ee0 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1606,8 +1606,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1691,9 +1691,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1726,7 +1726,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index f896f2e5bbe..0aeb6bf4144 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1606,8 +1606,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1691,9 +1691,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1726,7 +1726,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/it.po b/addons/mrp/i18n/it.po index 815acc8b2e0..370ff377826 100644 --- a/addons/mrp/i18n/it.po +++ b/addons/mrp/i18n/it.po @@ -494,7 +494,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "Specificare il costo orario per il centro di lavoro." #. module: mrp @@ -551,7 +551,7 @@ msgstr "Carico Laboratorio" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "Specificare il costo per ciclo per il centro di lavoro." #. module: mrp @@ -1053,7 +1053,7 @@ msgstr "]" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1646,8 +1646,8 @@ msgstr "Utilizzo Prodotti in Produzione" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1730,9 +1730,9 @@ msgstr "Ordine di Produzione" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1765,7 +1765,7 @@ msgstr "Struttura Distinta Base" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" "Numero di operazioni che questo centro di lavoro può fare in parallelo. Se " diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index f6e82bfb539..7e88ddc1cc5 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -508,7 +508,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -565,7 +565,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1065,7 +1065,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1676,8 +1676,8 @@ msgstr "생산 상품 소비" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "워크센터 설명. 이 워크센터에 기초하여 사이클을 설명하십시오." #. module: mrp @@ -1760,9 +1760,9 @@ msgstr "생산 주문" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1795,7 +1795,7 @@ msgstr "BOM 구조" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index a0cb7b8772e..8cf7226ae3c 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -515,7 +515,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -572,7 +572,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1047,7 +1047,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1613,8 +1613,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "Darbo centro parašymas. Nurodomas koks yra šio darbo centro ciklas." #. module: mrp @@ -1698,9 +1698,9 @@ msgstr "Gamybos užsakymas" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1733,7 +1733,7 @@ msgstr "KS struktūra" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/mrp.pot b/addons/mrp/i18n/mrp.pot index 05aafca61ac..4ed45b7720e 100644 --- a/addons/mrp/i18n/mrp.pot +++ b/addons/mrp/i18n/mrp.pot @@ -426,6 +426,12 @@ msgstr "" msgid "Complete this only if you want automatic analytic accounting entries on production orders." msgstr "" +#. module: mrp +#: help:mrp.workcenter,product_id:0 +#: help:mrp.workcenter,product_id:0 +msgid "Fill this product to track easily your production costs in the analytic accounting." +msgstr "" + #. module: mrp #: field:mrp.production.workcenter.line,cycle:0 msgid "Nbr of cycles" @@ -455,7 +461,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -512,7 +518,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -983,7 +989,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 -msgid "Gives the sequence order when displaying a list of routing workcenters." +msgid "Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1546,7 +1552,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 -msgid "Description of the workcenter. Explain here what's a cycle according to this workcenter." +msgid "Description of the work center. Explain here what's a cycle according to this work center." msgstr "" #. module: mrp @@ -1620,7 +1626,7 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 -msgid "The list of operations (list of workcenters) to produce the finished product. The routing is mainly used to compute workcenter costs during operations and to plan future loads on workcenters based on production plannification." +msgid "The list of operations (list of work centers) to produce the finished product. The routing is mainly used to compute work center costs during operations and to plan future loads on work centers based on production plannification." msgstr "" #. module: mrp @@ -1651,7 +1657,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 -msgid "Number of operations this workcenter can do in parallel. If this workcenter represents a team of 5 workers, the capacity per cycle is 5." +msgid "Number of operations this work center can do in parallel. If this work center represents a team of 5 workers, the capacity per cycle is 5." msgstr "" #. module: mrp @@ -2060,7 +2066,7 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 -msgid "The list of operations (list of workcenters) to produce the finished product. The routing is mainly used to compute workcenter costs during operations and to plan future loads on workcenters based on production planning." +msgid "The list of operations (list of work centers) to produce the finished product. The routing is mainly used to compute work center costs during operations and to plan future loads on work centers based on production planning." msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index 4ca48e0a4c3..75e39aa6df7 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -510,7 +510,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -567,7 +567,7 @@ msgstr "Werkcenterbelasting" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1067,7 +1067,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1681,8 +1681,8 @@ msgstr "Productie verbruiksartikelen" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Omschrijving van de werkplaats. Leg uit wat een cyclus is vanuit het " "gezichtspunt van deze werkplaats." @@ -1767,9 +1767,9 @@ msgstr "Productieorder" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1802,7 +1802,7 @@ msgstr "Materiaallijststructuur" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index 1f1c2f372ac..59633231611 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index cd638f9b644..3f376b1eed5 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -525,7 +525,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "Podaj godzinowy koszt centrum roboczego" #. module: mrp @@ -582,7 +582,7 @@ msgstr "Obciążenie centrum roboczego" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "Podaj koszt centrum roboczego na cykl" #. module: mrp @@ -1094,7 +1094,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "Ustala kolejność wyświetlania na liście centrów roboczych." #. module: mrp @@ -1718,8 +1718,8 @@ msgstr "Zużycie materiałów w produkcji" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "Opis centrum roboczego. Opisz co jest cyklem dla tego centrum." #. module: mrp @@ -1802,9 +1802,9 @@ msgstr "Zamówienie produkcji" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1837,7 +1837,7 @@ msgstr "Struktura Zest. Mat." #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/pt.po b/addons/mrp/i18n/pt.po index 93d28c4a899..2ef9985aa6e 100644 --- a/addons/mrp/i18n/pt.po +++ b/addons/mrp/i18n/pt.po @@ -500,7 +500,7 @@ msgstr "Erro: Código EAN inválido" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "Indica o custo do centro de trabalho por hora." #. module: mrp @@ -557,7 +557,7 @@ msgstr "Carga do centro de trabalho" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "Especifique o custe do centro de trabalho por ciclo" #. module: mrp @@ -1059,7 +1059,7 @@ msgstr "]" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1650,8 +1650,8 @@ msgstr "Consumo de produtos de produção" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Descrição do centro de trabalho. Explicar aqui o que é um ciclo de acordo " "para este centro de trabalho." @@ -1736,9 +1736,9 @@ msgstr "Ordem de produção" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1771,7 +1771,7 @@ msgstr "Estructura BoM" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index aed841f5a19..40132885401 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -484,7 +484,7 @@ msgstr "Erro: Código EAN inválido" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -541,7 +541,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1634,8 +1634,8 @@ msgstr "Produção de Bens de Consumo" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Descrição do centro de trabalho. Explique aqui o que é um ciclo de acordo " "com este centro de trabalho." @@ -1720,9 +1720,9 @@ msgstr "Ordem de Produção" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1755,7 +1755,7 @@ msgstr "Estrutura da BoM" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 546c54671bb..1de1551c482 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -505,7 +505,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -562,7 +562,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1062,7 +1062,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1673,8 +1673,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1757,9 +1757,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1792,7 +1792,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index 746e6841802..1b6d7abd364 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -505,7 +505,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -562,7 +562,7 @@ msgstr "Загрузка рабочей области" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1062,7 +1062,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1675,8 +1675,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" "Описание участка обработка. Укажите здесь, что соответствует циклу участка." @@ -1760,9 +1760,9 @@ msgstr "Заказ на производство" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1795,7 +1795,7 @@ msgstr "Структура спецификации" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index 45ec4713940..0cd0293eee3 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.po @@ -506,7 +506,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -563,7 +563,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1063,7 +1063,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1674,8 +1674,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1758,9 +1758,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1793,7 +1793,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 29bf2115c08..9ed62a26105 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index d78b6044ecf..61fc6ac8786 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.po @@ -510,7 +510,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -567,7 +567,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1042,7 +1042,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index 19e0bbd9426..7e4d1645043 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -510,7 +510,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -567,7 +567,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1067,7 +1067,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1679,11 +1679,11 @@ msgstr "Production Products Consommation" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." #. module: mrp #: help:mrp.product.produce,mode:0 @@ -1765,9 +1765,9 @@ msgstr "Tillverkningsorder" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1800,7 +1800,7 @@ msgstr "BOM Structure" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index 9419aa0ca36..b1ac25fa6f4 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1606,8 +1606,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1691,9 +1691,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1726,7 +1726,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 4646e3326c4..0b9b7733386 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -505,7 +505,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -562,7 +562,7 @@ msgstr "İş Merkezi Yükü" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1062,7 +1062,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1673,8 +1673,8 @@ msgstr "Üretim Ürünleri Consommation" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1757,9 +1757,9 @@ msgstr "Üretim Emri" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1792,7 +1792,7 @@ msgstr "BOM YAPISI" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 1ede79d8dbf..4bc604c3be9 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -509,7 +509,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -566,7 +566,7 @@ msgstr "Завантаження робочого центру" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1041,7 +1041,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "Заявка на виробництво" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "Структура СВ" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index b99f66141ed..469f302f0c7 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.po @@ -510,7 +510,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -567,7 +567,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1042,7 +1042,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1607,8 +1607,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "" #. module: mrp @@ -1692,9 +1692,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1727,7 +1727,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 3afc1b0be8c..83cefca1a7c 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -505,7 +505,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -562,7 +562,7 @@ msgstr "工作中心负荷" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1062,7 +1062,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1673,8 +1673,8 @@ msgstr "生产产品消耗" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "根据中工作中心说明在什么循环" #. module: mrp @@ -1757,9 +1757,9 @@ msgstr "生产单" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1792,7 +1792,7 @@ msgstr "物料清单结构" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index 8745bd5e198..6d0d0de7251 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.po @@ -506,7 +506,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -563,7 +563,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1063,7 +1063,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1674,8 +1674,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "工作中心之描述。在此說明此工作中心是依據那個週期。" #. module: mrp @@ -1758,9 +1758,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1793,7 +1793,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index fbeebe3c1ae..f81177bb375 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -505,7 +505,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Workcenter per hour." +msgid "Specify Cost of Work center per hour." msgstr "" #. module: mrp @@ -562,7 +562,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Workcenter per cycle." +msgid "Specify Cost of Work center per cycle." msgstr "" #. module: mrp @@ -1062,7 +1062,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing workcenters." +"Gives the sequence order when displaying a list of routing work centers." msgstr "" #. module: mrp @@ -1673,8 +1673,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the workcenter. Explain here what's a cycle according to this " -"workcenter." +"Description of the work center. Explain here what's a cycle according to this " +"work center." msgstr "工作中心之描述。在此說明此工作中心是依據那個週期。" #. module: mrp @@ -1757,9 +1757,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -1792,7 +1792,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this workcenter can do in parallel. If this workcenter " +"Number of operations this work center can do in parallel. If this work center " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" diff --git a/addons/mrp/mrp.py b/addons/mrp/mrp.py index 4c14bb9c08c..25aaf85c27a 100644 --- a/addons/mrp/mrp.py +++ b/addons/mrp/mrp.py @@ -39,15 +39,15 @@ class mrp_workcenter(osv.osv): _description = 'Work Center' _inherits = {'resource.resource':"resource_id"} _columns = { - 'note': fields.text('Description', help="Description of the workcenter. Explain here what's a cycle according to this workcenter."), - 'capacity_per_cycle': fields.float('Capacity per Cycle', help="Number of operations this workcenter can do in parallel. If this workcenter represents a team of 5 workers, the capacity per cycle is 5."), + 'note': fields.text('Description', help="Description of the work center. Explain here what's a cycle according to this work center."), + 'capacity_per_cycle': fields.float('Capacity per Cycle', help="Number of operations this work center can do in parallel. If this work center represents a team of 5 workers, the capacity per cycle is 5."), 'time_cycle': fields.float('Time for 1 cycle (hour)', help="Time in hours for doing one cycle."), 'time_start': fields.float('Time before prod.', help="Time in hours for the setup."), 'time_stop': fields.float('Time after prod.', help="Time in hours for the cleaning."), - 'costs_hour': fields.float('Cost per hour', help="Specify Cost of Workcenter per hour."), + 'costs_hour': fields.float('Cost per hour', help="Specify Cost of Work center per hour."), 'costs_hour_account_id': fields.many2one('account.analytic.account', 'Hour Account', domain=[('type','<>','view')], help="Complete this only if you want automatic analytic accounting entries on production orders."), - 'costs_cycle': fields.float('Cost per cycle', help="Specify Cost of Workcenter per cycle."), + 'costs_cycle': fields.float('Cost per cycle', help="Specify Cost of Work center per cycle."), 'costs_cycle_account_id': fields.many2one('account.analytic.account', 'Cycle Account', domain=[('type','<>','view')], help="Complete this only if you want automatic analytic accounting entries on production orders."), 'costs_journal_id': fields.many2one('account.analytic.journal', 'Analytic Journal'), @@ -109,10 +109,10 @@ class mrp_routing_workcenter(osv.osv): _columns = { 'workcenter_id': fields.many2one('mrp.workcenter', 'Work Center', required=True), 'name': fields.char('Name', size=64, required=True), - 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of routing workcenters."), + 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of routing work centers."), 'cycle_nbr': fields.float('Number of Cycles', required=True, - help="Number of iterations this workcenter has to do in the specified operation of the routing."), - 'hour_nbr': fields.float('Number of Hours', required=True, help="Time in hours for this workcenter to achieve the operation of the specified routing."), + help="Number of iterations this work center has to do in the specified operation of the routing."), + 'hour_nbr': fields.float('Number of Hours', required=True, help="Time in hours for this work center to achieve the operation of the specified routing."), 'routing_id': fields.many2one('mrp.routing', 'Parent Routing', select=True, ondelete='cascade', help="Routing indicates all the workcenters used, for how long and/or cycles." \ "If Routing is indicated then,the third tab of a production order (workcenters) will be automatically pre-completed."), @@ -209,7 +209,7 @@ class mrp_bom(osv.osv): 'product_efficiency': fields.float('Manufacturing Efficiency', required=True, help="A factor of 0.9 means a loss of 10% within the production process."), 'bom_lines': fields.one2many('mrp.bom', 'bom_id', 'BoM Lines'), 'bom_id': fields.many2one('mrp.bom', 'Parent BoM', ondelete='cascade', select=True), - 'routing_id': fields.many2one('mrp.routing', 'Routing', help="The list of operations (list of workcenters) to produce the finished product. The routing is mainly used to compute workcenter costs during operations and to plan future loads on workcenters based on production planning."), + 'routing_id': fields.many2one('mrp.routing', 'Routing', help="The list of operations (list of work centers) to produce the finished product. The routing is mainly used to compute work center costs during operations and to plan future loads on work centers based on production planning."), 'property_ids': fields.many2many('mrp.property', 'mrp_bom_property_rel', 'bom_id','property_id', 'Properties'), 'revision_ids': fields.one2many('mrp.bom.revision', 'bom_id', 'BoM Revisions'), 'child_complete_ids': fields.function(_child_compute, relation='mrp.bom', method=True, string="BoM Hierarchy", type='many2many'), From 74aecdf13221e1237195b623ae1875f4ab06f30e Mon Sep 17 00:00:00 2001 From: "ksa (Open ERP)" Date: Tue, 14 Dec 2010 11:27:58 +0530 Subject: [PATCH 038/140] [IMP]: Improve PO file According to workcenter=>work center lp bug: https://launchpad.net/bugs/680916 fixed bzr revid: ksa@tinyerp.co.in-20101214055758-r0tnb702kjyiz68b --- addons/mrp/__openerp__.py | 2 +- addons/mrp/i18n/ar.po | 12 ++++++------ addons/mrp/i18n/bg.po | 10 +++++----- addons/mrp/i18n/bs.po | 16 ++++++++-------- addons/mrp/i18n/ca.po | 16 ++++++++-------- addons/mrp/i18n/cs.po | 10 +++++----- addons/mrp/i18n/de.po | 16 ++++++++-------- addons/mrp/i18n/el.po | 16 ++++++++-------- addons/mrp/i18n/es.po | 16 ++++++++-------- addons/mrp/i18n/es_AR.po | 10 +++++----- addons/mrp/i18n/es_EC.po | 10 +++++----- addons/mrp/i18n/et.po | 10 +++++----- addons/mrp/i18n/fi.po | 16 ++++++++-------- addons/mrp/i18n/fr.po | 16 ++++++++-------- addons/mrp/i18n/hi.po | 10 +++++----- addons/mrp/i18n/hr.po | 10 +++++----- addons/mrp/i18n/hu.po | 10 +++++----- addons/mrp/i18n/id.po | 10 +++++----- addons/mrp/i18n/it.po | 16 ++++++++-------- addons/mrp/i18n/ko.po | 16 ++++++++-------- addons/mrp/i18n/lt.po | 16 ++++++++-------- addons/mrp/i18n/mrp.pot | 4 ++-- addons/mrp/i18n/nl.po | 16 ++++++++-------- addons/mrp/i18n/nl_BE.po | 10 +++++----- addons/mrp/i18n/pl.po | 16 ++++++++-------- addons/mrp/i18n/pt.po | 10 +++++----- addons/mrp/i18n/pt_BR.po | 10 +++++----- addons/mrp/i18n/ro.po | 10 +++++----- addons/mrp/i18n/ru.po | 16 ++++++++-------- addons/mrp/i18n/sk.po | 10 +++++----- addons/mrp/i18n/sl.po | 10 +++++----- addons/mrp/i18n/sq.po | 10 +++++----- addons/mrp/i18n/sv.po | 22 +++++++++++----------- addons/mrp/i18n/tlh.po | 10 +++++----- addons/mrp/i18n/tr.po | 16 ++++++++-------- addons/mrp/i18n/uk.po | 10 +++++----- addons/mrp/i18n/vi.po | 10 +++++----- addons/mrp/i18n/zh_CN.po | 18 +++++++++--------- addons/mrp/i18n/zh_HK.po | 10 +++++----- addons/mrp/i18n/zh_TW.po | 10 +++++----- addons/mrp/mrp.py | 2 +- addons/resource/__openerp__.py | 2 +- addons/resource/i18n/en_US.po | 4 ++-- addons/resource/i18n/mn.po | 2 +- addons/resource/i18n/nl.po | 2 +- 45 files changed, 252 insertions(+), 252 deletions(-) diff --git a/addons/mrp/__openerp__.py b/addons/mrp/__openerp__.py index f267764970a..b7a6466bbaf 100644 --- a/addons/mrp/__openerp__.py +++ b/addons/mrp/__openerp__.py @@ -34,7 +34,7 @@ * Make to Stock / Make to Order (by line) * Multi-level BoMs, no limit * Multi-level routing, no limit - * Routing and workcenter integrated with analytic accounting + * Routing and work center integrated with analytic accounting * Scheduler computation periodically / Just In Time module * Multi-pos, multi-warehouse * Different reordering policies diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index 450207de48d..c9559048cb2 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -1691,7 +1691,7 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " +"The list of operations (list of work centers) to produce the finished " "product. The routing is mainly used to compute work center costs during " "operations and to plan future loads on work centers based on production " "plannification." @@ -2101,9 +2101,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index c546ed433a2..f4e8dc97a4a 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -28,7 +28,7 @@ msgstr "Бр. цикли" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2103,9 +2103,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index 56bca3b354f..9702dd026a5 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -1691,9 +1691,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "plannification." msgstr "" @@ -2101,9 +2101,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index 29a78a13ec2..f9526d5a417 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -28,7 +28,7 @@ msgstr "Núm. de cicles" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -668,7 +668,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Temps en hores per realitzar un cicle." #. module: mrp @@ -2220,9 +2220,9 @@ msgstr "Descripció" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2971,9 +2971,9 @@ msgstr "" #~ msgstr "Components de la llista de materials" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "La llista d'operacions (llista de centres de producció) per produir el " diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index 3ea93de616f..67611e1cf7a 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index d0d17b0f087..8ae2fbbec1b 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/mrp/i18n/de.po @@ -30,7 +30,7 @@ msgstr "Anzahl Zyklen" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "Maximale Anzahl an Fertigungsvorgängen dieser Fertigungsstelle." #. module: mrp @@ -668,7 +668,7 @@ msgstr "Kosten Information" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Zeit in Stunden für einen Auftragszyklus" #. module: mrp @@ -2288,9 +2288,9 @@ msgstr "Beschreibung" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" "Fertigungsvorgänge (Arbeitsauftragsliste) für die Herstellung des " @@ -3088,9 +3088,9 @@ msgstr "Jahr" #~ msgstr "Komponenten" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "Arbeitsplätze, an denen Fertigprodukte produziert werden. Das \"Routing\" " diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index 080d8d06049..57bbf2af861 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -31,7 +31,7 @@ msgstr "Αρ. Κύκλων" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -671,7 +671,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Χρόνος ενός κύκλου σε ώρες" #. module: mrp @@ -2222,9 +2222,9 @@ msgstr "Περιγραφή" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2975,9 +2975,9 @@ msgstr "" #~ msgstr "plus" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "Η λίστα των λειτουργιών (λίστα κέντρων εργασίας) ποαραγωγής του " diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index 427cde00252..e6a6a5c2241 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/i18n/es.po @@ -30,7 +30,7 @@ msgstr "Núm. de ciclos" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "Número de operaciones que este centro de producción puede realizar." #. module: mrp @@ -670,7 +670,7 @@ msgstr "Información de costes" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Tiempo en horas para realizar un ciclo." #. module: mrp @@ -2330,9 +2330,9 @@ msgstr "Descripción" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" "La lista de las operaciones (lista de los centros de trabajo) para producir " @@ -3140,9 +3140,9 @@ msgstr "Año" #~ msgstr "Nombre de modelo no válido en la definición de acción." #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "La lista de operaciones (lista de centros de producción) para producir el " diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index 810e4671bb1..b0bf828595f 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2101,9 +2101,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index a26d72526c3..954933d34e7 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -28,7 +28,7 @@ msgstr "Núm. de ciclos" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -672,7 +672,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Tiempo en horas para realizar un ciclo." #. module: mrp @@ -2112,9 +2112,9 @@ msgstr "Descripción" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index f927ca6f4e9..05b8b9e8240 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -28,7 +28,7 @@ msgstr "Tsükklite No." #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Aeg tundides mis kulub ühes tsükklis." #. module: mrp @@ -2104,9 +2104,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index e202377cc51..e5743b43de1 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/mrp/i18n/fi.po @@ -29,7 +29,7 @@ msgstr "Kiertojen määrä" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -668,7 +668,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Yhden kierron kesto tunneissa." #. module: mrp @@ -2218,9 +2218,9 @@ msgstr "Kuvaus" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2856,9 +2856,9 @@ msgstr "" #~ msgstr "Varastoitava tuote prosessi" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "Lista toiminnoista (työpisteistä) jotka tuotteen valmistaminen vaatii. " diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index 041b5110d1d..1073bb13b43 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/i18n/fr.po @@ -43,7 +43,7 @@ msgstr "Nombre de Cycles" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "Nombre d'opérations simultanées du poste de charge" #. module: mrp @@ -675,7 +675,7 @@ msgstr "Information de coût" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Temps nécessaire à la réalisation d'un cycle" #. module: mrp @@ -2253,9 +2253,9 @@ msgstr "Description" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" "La liste des opérations (liste des postes de charge) pour fabriquer le " @@ -2943,9 +2943,9 @@ msgstr "" #~ msgstr "Ordres de production en cours" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "La liste des opérations pour fabriquer le produit fini. La gammeest " diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index 3b3640a6acc..26f9a3617d6 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -29,7 +29,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -667,7 +667,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 9dd518ca95f..0cb7e550427 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index 155020c2ee0..6e743ad3273 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2101,9 +2101,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 0aeb6bf4144..962fb61e5f3 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2101,9 +2101,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/it.po b/addons/mrp/i18n/it.po index 370ff377826..cc369400cf5 100644 --- a/addons/mrp/i18n/it.po +++ b/addons/mrp/i18n/it.po @@ -29,7 +29,7 @@ msgstr "N. Cicli di Lavoro" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "Numero di operazioni che questo centro di lavoro può fare." #. module: mrp @@ -651,7 +651,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Tempo in ore per completare un ciclo." #. module: mrp @@ -2208,9 +2208,9 @@ msgstr "Descrizione" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2549,9 +2549,9 @@ msgstr "Anno" #~ msgstr "Ciclo di lavoro del materiale" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "La lista delle lavorazioni (lista dei centri di lavoro) per ottenere il " diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index 7e88ddc1cc5..80fa42d0c88 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -29,7 +29,7 @@ msgstr "싸이클 횟수" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -665,7 +665,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "한 사이클을 수행하는 시간" #. module: mrp @@ -2212,9 +2212,9 @@ msgstr "설명" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2808,9 +2808,9 @@ msgstr "" #~ msgstr "견적 요청이 생성되어 공급자에게 전송됩니다." #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "완제품 생산을 위한 오퍼레이션 리스트 (워크센터 리스트). 이 라우팅은 주로 오퍼레이션 중의 워크센터 원가 계산과 생산 계획에 기초한 " diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index 8cf7226ae3c..ded4a1f935a 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -29,7 +29,7 @@ msgstr "Ciklų skaičius" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -672,7 +672,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Vieno ciklo laikas valandomis." #. module: mrp @@ -2108,9 +2108,9 @@ msgstr "Aprašymas" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2782,9 +2782,9 @@ msgstr "" #~ msgstr "plius" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "Tai yra darbų sąrašas (sąrašas darbo centrų) pagaminti pabaigtus produktus. " diff --git a/addons/mrp/i18n/mrp.pot b/addons/mrp/i18n/mrp.pot index 4ed45b7720e..2fe08c9ba1b 100644 --- a/addons/mrp/i18n/mrp.pot +++ b/addons/mrp/i18n/mrp.pot @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -614,7 +614,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index 75e39aa6df7..be765456897 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -28,7 +28,7 @@ msgstr "Aantal cycli" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -667,7 +667,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Tijd in uren voor één productiecyclus." #. module: mrp @@ -2219,9 +2219,9 @@ msgstr "Beschrijving" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2545,9 +2545,9 @@ msgstr "" #~ msgstr "Wacht op beschikbare producten ter reservering" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "De lijst van handelingen (lijst van werkplaatsen) voor het produceren van " diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index 59633231611..fc56c50c81b 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index 3f376b1eed5..2eac3802a94 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -28,7 +28,7 @@ msgstr "Liczba cykli" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "Liczba operacji, którą to centrum może wykonać." #. module: mrp @@ -686,7 +686,7 @@ msgstr "Inofrmacje kosztowe" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Czas wykonania jednego cyklu w godzinach" #. module: mrp @@ -2254,9 +2254,9 @@ msgstr "Opis" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2637,9 +2637,9 @@ msgstr "" #~ msgstr "plus" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "Lista operacji (lista centrów roboczych) do wyprodukowania produktu " diff --git a/addons/mrp/i18n/pt.po b/addons/mrp/i18n/pt.po index 2ef9985aa6e..7d68ab9e3a7 100644 --- a/addons/mrp/i18n/pt.po +++ b/addons/mrp/i18n/pt.po @@ -29,7 +29,7 @@ msgstr "Núm. de ciclos" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "Número de operacões que este centro de produção pode realizar." #. module: mrp @@ -659,7 +659,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Tempo em horas por fazer um ciclo." #. module: mrp @@ -2205,9 +2205,9 @@ msgstr "Descrição" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 40132885401..302026a09c1 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -29,7 +29,7 @@ msgstr "Núm. de ciclos" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -641,7 +641,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Tempo em hora para fazer um ciclo." #. module: mrp @@ -2189,9 +2189,9 @@ msgstr "Descrição" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 1de1551c482..9ac80a41e59 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -28,7 +28,7 @@ msgstr "Nr de cicluri" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -662,7 +662,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2209,9 +2209,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index 1b6d7abd364..bedd2851064 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -28,7 +28,7 @@ msgstr "Кол-во циклов" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -662,7 +662,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Время в часах на выполнение одного цикла" #. module: mrp @@ -2212,9 +2212,9 @@ msgstr "Описание" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2614,9 +2614,9 @@ msgstr "" #~ msgstr "Заявка выслана поставщику" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "Список операций и участков обработки для производства готового изделия. " diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index 0cd0293eee3..fe6a1d1dfa4 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.po @@ -29,7 +29,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -663,7 +663,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2210,9 +2210,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 9ed62a26105..4104f8df5e6 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "Opis" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index 61fc6ac8786..124796bd3cf 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.po @@ -29,7 +29,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -667,7 +667,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index 7e4d1645043..3470d6ffda5 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -28,7 +28,7 @@ msgstr "No. Of Cycles" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -667,7 +667,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "Time in hours for doing one cycle." #. module: mrp @@ -2217,9 +2217,9 @@ msgstr "Beskrivning" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -3031,14 +3031,14 @@ msgstr "" #~ msgstr "Product quantity" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgid "Stockable Product Process" diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index b1ac25fa6f4..bb796bcec4b 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2101,9 +2101,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 0b9b7733386..d758379c7ac 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -28,7 +28,7 @@ msgstr "Çevrim Sayısı" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -662,7 +662,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2209,9 +2209,9 @@ msgstr "Açıklama" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2655,9 +2655,9 @@ msgstr "" #~ msgstr "İptal Edildi" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "" #~ "Operasyon Listesi (iş merkezi listesi) Bitmiş ürünleri üretmek için. The " diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 4bc604c3be9..b4f1d592da3 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -28,7 +28,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -666,7 +666,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "Опис" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index 469f302f0c7..7f6d5199c81 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.po @@ -29,7 +29,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -667,7 +667,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "" #. module: mrp @@ -2102,9 +2102,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 83cefca1a7c..de8b882d213 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -28,7 +28,7 @@ msgstr "周期" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -662,7 +662,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "一个周期的工作小时数" #. module: mrp @@ -2209,9 +2209,9 @@ msgstr "说明" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" @@ -2605,7 +2605,7 @@ msgstr "" #~ " * Make to Stock / Make to Order (by line)\n" #~ " * Multi-level BoMs, no limit\n" #~ " * Multi-level routing, no limit\n" -#~ " * Routing and workcenter integrated with analytic accounting\n" +#~ " * Routing and work center integrated with analytic accounting\n" #~ " * Scheduler computation periodically / Just In Time module\n" #~ " * Multi-pos, multi-warehouse\n" #~ " * Different reordering policies\n" @@ -2941,9 +2941,9 @@ msgstr "" #~ msgstr "正" #~ msgid "" -#~ "The list of operations (list of workcenters) to produce the finished " -#~ "product. The routing is mainly used to compute workcenter costs during " -#~ "operations and to plan futur loads on workcenters based on production " +#~ "The list of operations (list of work centers) to produce the finished " +#~ "product. The routing is mainly used to compute work center costs during " +#~ "operations and to plan futur loads on work centers based on production " #~ "plannification." #~ msgstr "这生产成品的运作列表(工作中心列表)工艺路线主要是用于计算这生产计划的工作中心的成本和计划未来的工作中心的未来负荷" diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index 6d0d0de7251..b6b971a5bf0 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.po @@ -29,7 +29,7 @@ msgstr "週期數" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -663,7 +663,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "一個循環所須的小時數" #. module: mrp @@ -2210,9 +2210,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index f81177bb375..186d7202842 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -28,7 +28,7 @@ msgstr "週期數" #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of operations this workcenter can do." +msgid "Number of iterations this work center has to do in the specified operation of the routing." msgstr "" #. module: mrp @@ -662,7 +662,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for doing one cycle." +msgid "Time in hours for this work center to achieve the operation of the specified routing." msgstr "一個循環所須的小時數" #. module: mrp @@ -2209,9 +2209,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of workcenters) to produce the finished " -"product. The routing is mainly used to compute workcenter costs during " -"operations and to plan future loads on workcenters based on production " +"The list of operations (list of work centers) to produce the finished " +"product. The routing is mainly used to compute work center costs during " +"operations and to plan future loads on work centers based on production " "planning." msgstr "" diff --git a/addons/mrp/mrp.py b/addons/mrp/mrp.py index 25aaf85c27a..f89258a8baa 100644 --- a/addons/mrp/mrp.py +++ b/addons/mrp/mrp.py @@ -440,7 +440,7 @@ class mrp_production(osv.osv): 'date_finished': fields.datetime('End Date'), 'bom_id': fields.many2one('mrp.bom', 'Bill of Material', domain=[('bom_id','=',False)]), - 'routing_id': fields.many2one('mrp.routing', string='Routing', on_delete='set null', help="The list of operations (list of workcenters) to produce the finished product. The routing is mainly used to compute workcenter costs during operations and to plan future loads on workcenters based on production plannification."), + 'routing_id': fields.many2one('mrp.routing', string='Routing', on_delete='set null', help="The list of operations (list of work centers) to produce the finished product. The routing is mainly used to compute work center costs during operations and to plan future loads on work centers based on production plannification."), 'picking_id': fields.many2one('stock.picking', 'Picking list', readonly=True, help="This is the internal picking list that brings the finished product to the production plan"), diff --git a/addons/resource/__openerp__.py b/addons/resource/__openerp__.py index 82d68f53ef4..9b9f6c7ca89 100644 --- a/addons/resource/__openerp__.py +++ b/addons/resource/__openerp__.py @@ -28,7 +28,7 @@ "description": """ Module for resource management A resource represent something that can be scheduled - (a developer on a task or a workcenter on manufacturing orders). + (a developer on a task or a work center on manufacturing orders). This module manages a resource calendar associated to every resource. It also manages the leaves of every resource. diff --git a/addons/resource/i18n/en_US.po b/addons/resource/i18n/en_US.po index 8c4932c4a6d..0b128ca7551 100644 --- a/addons/resource/i18n/en_US.po +++ b/addons/resource/i18n/en_US.po @@ -189,7 +189,7 @@ msgstr "Name" msgid "\n" " Module for resource management\n" " A resource represent something that can be scheduled\n" -" (a developer on a task or a workcenter on manufacturing orders).\n" +" (a developer on a task or a work center on manufacturing orders).\n" " This module manages a resource calendar associated to every resource.\n" " It also manages the leaves of every resource.\n" "\n" @@ -197,7 +197,7 @@ msgid "\n" msgstr "\n" " Module for resource management\n" " A resource represent something that can be scheduled\n" -" (a developer on a task or a workcenter on manufacturing orders).\n" +" (a developer on a task or a work center on manufacturing orders).\n" " This module manages a resource calendar associated to every resource.\n" " It also manages the leaves of every resource.\n" "\n" diff --git a/addons/resource/i18n/mn.po b/addons/resource/i18n/mn.po index cff22c1ea43..617f0f9cb21 100644 --- a/addons/resource/i18n/mn.po +++ b/addons/resource/i18n/mn.po @@ -332,7 +332,7 @@ msgstr "Бямба" #~ "\n" #~ " Module for resource management\n" #~ " A resource represent something that can be scheduled\n" -#~ " (a developer on a task or a workcenter on manufacturing orders).\n" +#~ " (a developer on a task or a work center on manufacturing orders).\n" #~ " This module manages a resource calendar associated to every resource.\n" #~ " It also manages the leaves of every resource.\n" #~ "\n" diff --git a/addons/resource/i18n/nl.po b/addons/resource/i18n/nl.po index 47f6f100b71..46138eafd7d 100644 --- a/addons/resource/i18n/nl.po +++ b/addons/resource/i18n/nl.po @@ -337,7 +337,7 @@ msgstr "Zaterdag" #~ "\n" #~ " Module for resource management\n" #~ " A resource represent something that can be scheduled\n" -#~ " (a developer on a task or a workcenter on manufacturing orders).\n" +#~ " (a developer on a task or a work center on manufacturing orders).\n" #~ " This module manages a resource calendar associated to every resource.\n" #~ " It also manages the leaves of every resource.\n" #~ "\n" From f995fc578c4dba5508d7af364fe7f8ab0db6c4d7 Mon Sep 17 00:00:00 2001 From: "ksa (Open ERP)" Date: Tue, 14 Dec 2010 12:34:49 +0530 Subject: [PATCH 039/140] [FIX] stock:destination address inside company makes picking to "customer" location lp bug: https://launchpad.net/bugs/683231 fixed bzr revid: ksa@tinyerp.co.in-20101214070449-818z16xker8724fd --- addons/stock/stock_data.xml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/addons/stock/stock_data.xml b/addons/stock/stock_data.xml index be1881634eb..9b3e126edcc 100644 --- a/addons/stock/stock_data.xml +++ b/addons/stock/stock_data.xml @@ -18,7 +18,7 @@ Production Lot stock.production.lot - + @@ -43,7 +43,7 @@ True inventory - + Inventory loss @@ -90,7 +90,7 @@ Stock - + @@ -104,7 +104,11 @@ - + + + + + property_stock_procurement From a0987a0162bd2ca0d9d206b2523c685ef38a310f Mon Sep 17 00:00:00 2001 From: "aag (OpenERP)" Date: Tue, 14 Dec 2010 13:03:17 +0530 Subject: [PATCH 040/140] [FIX] mrp:Manufacturing/ Manager able to define a bill of material was fixed lp:689669 lp bug: https://launchpad.net/bugs/689669 fixed bzr revid: aag@tinyerp.co.in-20101214073317-s98bxozeiy6vet3d --- addons/mrp/security/ir.model.access.csv | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/mrp/security/ir.model.access.csv b/addons/mrp/security/ir.model.access.csv index dcbf6c866b4..c3c9b79bbaf 100644 --- a/addons/mrp/security/ir.model.access.csv +++ b/addons/mrp/security/ir.model.access.csv @@ -12,7 +12,7 @@ "access_mrp_workcenter_manager","mrp.workcenter.manager","model_mrp_workcenter","mrp.group_mrp_manager",1,0,0,0 "access_mrp_routing_manager","mrp.routing.manager","model_mrp_routing","mrp.group_mrp_manager",1,1,1,1 "access_mrp_routing_workcenter_manager","mrp.routing.workcenter.manager","model_mrp_routing_workcenter","mrp.group_mrp_manager",1,1,1,1 -"access_mrp_bom_manager","mrp.bom.manager","model_mrp_bom","mrp.group_mrp_manager",1,0,0,1 +"access_mrp_bom_manager","mrp.bom.manager","model_mrp_bom","mrp.group_mrp_manager",1,1,1,1 "access_mrp_bom_revision_manager","mrp.bom.revision.manager","model_mrp_bom_revision","mrp.group_mrp_manager",1,1,1,1 "access_stock_location_mrp_worker","stock.location mrp_worker","stock.model_stock_location","mrp.group_mrp_user",1,0,0,0 "access_stock_move_mrp_worker","stock.move mrp_worker","stock.model_stock_move","mrp.group_mrp_user",1,1,1,0 @@ -68,3 +68,5 @@ "access_report_mrp_inout_user","report.mrp.inout user","model_report_mrp_inout","mrp.group_mrp_user",1,0,0,0 "access_report_workcenter_load_user","report.workcenter.load.user","model_report_workcenter_load","mrp.group_mrp_user",1,0,0,0 "access_mrp_bom","mrp.bom","model_mrp_bom","base.group_sale_salesman",1,0,0,0 +"access_stock_warehouse_mrp_manager","stock.warehouse.mrp.manager","stock.model_stock_warehouse","mrp.group_mrp_manager",1,0,0,0 +"access_stock_location_mrp_manager","stock.location.mrp.manager","stock.model_stock_location","mrp.group_mrp_manager",1,0,0,0 From 521fdb0fb2f1f7930956e594b351bcd1c3aa0ab4 Mon Sep 17 00:00:00 2001 From: "ron@tinyerp.com" <> Date: Tue, 14 Dec 2010 17:52:13 +0530 Subject: [PATCH 041/140] [IMP]Improvement in purchase_double_validation Module Taskid-1774 bzr revid: ron@tinyerp.com-20101214122213-3bcu7lhvvnwt3uoa --- addons/purchase/purchase_view.xml | 2 +- addons/purchase_double_validation/__init__.py | 26 +++++++++ .../purchase_double_validation/__openerp__.py | 45 +++++++++++++++ .../purchase_double_validation_installer.py | 55 +++++++++++++++++++ .../purchase_double_validation_installer.xml | 52 ++++++++++++++++++ .../purchase_double_validation_view.xml | 22 ++++++++ .../purchase_double_validation_workflow.xml | 46 ++++++++++++++++ 7 files changed, 247 insertions(+), 1 deletion(-) create mode 100644 addons/purchase_double_validation/__init__.py create mode 100644 addons/purchase_double_validation/__openerp__.py create mode 100644 addons/purchase_double_validation/purchase_double_validation_installer.py create mode 100644 addons/purchase_double_validation/purchase_double_validation_installer.xml create mode 100644 addons/purchase_double_validation/purchase_double_validation_view.xml create mode 100644 addons/purchase_double_validation/purchase_double_validation_workflow.xml diff --git a/addons/purchase/purchase_view.xml b/addons/purchase/purchase_view.xml index b0463957e9a..2cfa8a01726 100644 --- a/addons/purchase/purchase_view.xml +++ b/addons/purchase/purchase_view.xml @@ -155,7 +155,7 @@