mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 22:32:07 +02:00
Fix hr_payroll_clone: AttributeError, add journal/work_type support, use standard wizard
- Fix AttributeError: hr.payslip.run has no company_id field - Change batch name format from MM/YYYY to YYYY-MM (remove 'Payslips' prefix) - Add journal_id field and copy from previous batch - Add work_type_id support (Redovni rad/Regular work) in timesheet generation - Add duplicate check for existing timesheets to prevent duplication - Use standard Odoo hr.payslip.employees wizard for payslip generation - Update version to 16.0.1.1.0 🤖 assisted by claude 🤖 assisted by claude
This commit is contained in:
parent
1f0f86df6d
commit
ccb7625273
49 changed files with 442267 additions and 5917 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * purchase_mrp
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
|
|
@ -12,10 +12,10 @@ msgstr ""
|
|||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: purchase_mrp
|
||||
|
|
@ -23,12 +23,124 @@ msgstr ""
|
|||
msgid "Production"
|
||||
msgstr "Proizvodnja"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_purchase_order_line
|
||||
msgid "Purchase Order Line"
|
||||
msgstr "Stavka nabavne narudžbe"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr "Kretanje zalihe"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model_terms:ir.ui.view,arch_db:purchase_mrp.purchase_order_form_mrp
|
||||
msgid "<span class=\"o_stat_text\">Manufacturing</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Proizvodnja</span>"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model_terms:ir.ui.view,arch_db:purchase_mrp.mrp_production_form_view_purchase
|
||||
msgid "<span class=\"o_stat_text\">Purchases</span>"
|
||||
msgstr "<span class=\"o_stat_text\">Nabave</span>"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_report_mrp_report_bom_structure
|
||||
msgid "BOM Overview Report"
|
||||
msgstr "Izvještaj sastavnice"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_mrp_bom
|
||||
msgid "Bill of Material"
|
||||
msgstr "Sastavnica"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_mrp_bom_line
|
||||
msgid "Bill of Material Line"
|
||||
msgstr "Stavka sastavnice"
|
||||
|
||||
#. module: purchase_mrp
|
||||
#: code:addons/purchase_mrp/models/mrp_bom.py
|
||||
#, python-format
|
||||
msgid "Components cost share have to be positive or equals to zero."
|
||||
msgstr "Components cost share have to be positive or equals to zero."
|
||||
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model.fields,field_description:purchase_mrp.field_mrp_bom_line__cost_share
|
||||
msgid "Cost Share (%)"
|
||||
msgstr "Učešće troška (%)"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model.fields,field_description:purchase_mrp.field_purchase_order__mrp_production_count
|
||||
msgid "Count of MO Source"
|
||||
msgstr "Broj izvornih PN"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model.fields,field_description:purchase_mrp.field_mrp_production__purchase_order_count
|
||||
msgid "Count of generated PO"
|
||||
msgstr "Broj generiranih naloga za nabavu"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka knjiženja"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: code:addons/purchase_mrp/models/purchase.py
|
||||
#, python-format
|
||||
msgid "Manufacturing Source of %s"
|
||||
msgstr "Proizvodni izvor za %s"
|
||||
|
||||
#. module: purchase_mrp
|
||||
#: code:addons/purchase_mrp/models/stock_move.py
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Odoo is not able to generate the anglo saxon entries. The total valuation of"
|
||||
" %s is zero."
|
||||
msgstr ""
|
||||
"Odoo is not able to generate the anglo saxon entries. The total valuation of"
|
||||
" %s is zero."
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_mrp_production
|
||||
msgid "Production Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model,name:purchase_mrp.model_purchase_order
|
||||
msgid "Purchase Order"
|
||||
msgstr "Nalog za nabavu"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: purchase_mrp
|
||||
#: code:addons/purchase_mrp/models/mrp_production.py
|
||||
#, python-format
|
||||
msgid "Purchase Order generated from %s"
|
||||
msgstr "Nalog za nabavu generiran iz %s"
|
||||
|
||||
#. module: purchase_mrp
|
||||
#: model:ir.model.fields,help:purchase_mrp.field_mrp_bom_line__cost_share
|
||||
msgid ""
|
||||
"The percentage of the component repartition cost when purchasing a kit.The "
|
||||
"total of all components' cost have to be equal to 100."
|
||||
msgstr ""
|
||||
"The percentage of the component repartition cost when purchasing a kit.The "
|
||||
"total of all components' cost have to be equal to 100."
|
||||
|
||||
#. module: purchase_mrp
|
||||
#: code:addons/purchase_mrp/models/mrp_bom.py
|
||||
#, python-format
|
||||
msgid "The total cost share for a BoM's component have to be 100"
|
||||
msgstr "The total cost share for a BoM's component have to be 100"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue