├── l10n_se_payslip ├── __init__.py ├── payslip.odt ├── report.xml └── __manifest__.py ├── dependencies.txt ├── l10n_se_payroll_taxtable ├── __init__.py ├── test │ └── __init__.py ├── models │ ├── __init__.py │ └── payroll_taxable.py ├── static │ └── description │ │ ├── banner.png │ │ ├── icon.png │ │ ├── skattetabell-1.png │ │ ├── skattetabell-2.png │ │ ├── skattetabell-3.png │ │ ├── skattetabell-4.png │ │ ├── skattetabell-5.png │ │ ├── skattetabell-6.png │ │ ├── skattetabell-7.png │ │ ├── skattetabell-8.png │ │ ├── skattetabell-9.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── data │ ├── ir_config.xml │ └── ir_server_action.xml ├── security │ └── ir.model.access.csv └── __manifest__.py ├── l10n_se_hr_payroll ├── report │ ├── payslipODT │ │ ├── Configurations2 │ │ │ └── accelerator │ │ │ │ └── current.xml │ │ ├── mimetype │ │ ├── Thumbnails │ │ │ └── thumbnail.png │ │ ├── meta.xml │ │ ├── manifest.rdf │ │ └── META-INF │ │ │ └── manifest.xml │ ├── .~lock.payslip.odt# │ ├── payslipODT.odt │ ├── payslipODT.zip │ ├── payslip_old.odt │ ├── __init__.py │ └── pivot_salary_views.xml ├── doc │ ├── 20161212154439485.pdf │ ├── I-avtalet 2016_2017.pdf │ └── Tjänstemannaavtalet 2016_2017.pdf ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── icon_vertel.png │ │ ├── icon_swedish_flag.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── files │ ├── skatteavdrag-och-arbetsgivaravgifter-skv401-utgava27.pdf │ └── fråga1.xml ├── data │ ├── contract_payslip_demo.xml │ └── hr_payroll_data.xml ├── models │ ├── res_config_settings.py │ ├── hr_payslip_run.py │ └── __init__.py ├── views │ ├── general_journal_view.xml │ ├── res_company.xml │ ├── hr_payslip_run_views.xml │ └── hr_employee_views.xml ├── security │ └── ir.model.access.csv ├── wizard │ ├── __init__.py │ └── hr_payroll_payslips_by_employees.py └── __init__.py ├── l10n_se_hr_payroll_schema_hour ├── models │ ├── __init__.py │ └── hr_payroll.py ├── __init__.py ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html └── __manifest__.py ├── l10n_se_resource_calendar_leaves_import ├── __init__.py ├── models │ ├── __init__.py │ └── import_swedish_holidays_settings.py ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── banner.png │ │ ├── icon.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── views │ └── res_config_settings_url.xml ├── data │ └── ir_server_action.xml └── __manifest__.py ├── l10n_se_hr_payroll_tiichri ├── facit │ ├── notes.txt │ ├── Kortfacit_2022.pdf │ ├── facit_05_2022_maj.pdf │ ├── facit_03_2022_mars.pdf │ ├── facit_04_2022_april.pdf │ ├── facit_06_2022_juni.pdf │ ├── facit_07_2022_juli.pdf │ ├── employer_agreement2022.pdf │ ├── facit_01_2022_januari.pdf │ ├── facit_02_2022_februari.pdf │ ├── facit_08_2022_augusti.pdf │ ├── facit_10_2022_oktober.pdf │ ├── facit_11_2022_november.pdf │ ├── facit_12_2022_december.pdf │ └── facit_09_2022_september.pdf ├── tests │ ├── hr.leave.type.png │ └── __init__.py ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings_20-04.png │ │ ├── inkscape_export_settings_22-04.png │ │ └── notes.txt ├── data │ ├── data_10_aronssons_montage.xml │ ├── data_05_gustav.xml │ ├── data_06_helmer.xml │ ├── data_04_frans.xml │ ├── data_07_karin.xml │ ├── data_03_doris.xml │ └── data_01_asse.xml └── __init__.py ├── l10n_se_hr_payroll_account ├── models │ ├── __init__.py │ └── res_config_settings.py ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── icon_swedish_flag.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── data │ ├── l10n_se_wizard.yml │ └── l10n_se_hr_payroll_account_data.xml ├── views │ ├── l10n_se_hr_payroll_account_view.xml │ └── res_config_settings_views.xml ├── __init__.py └── __manifest__.py ├── l10n_se_hr_payslip_run ├── ag.glabels ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── doc │ ├── 4700-exempel-ag-2016-utgava19.pdf │ └── moms-och-arbetsgivardeklarationer-skv409-utgava19.pdf ├── ag.csv ├── __init__.py ├── i18n │ └── sv.po ├── hr_payslip_run_data.xml └── __manifest__.py ├── l10n_se_hr_payroll_ku10 ├── ku10.glabels ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── icon_140x140.svg.png │ │ ├── icon_swedish_flag.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── doc │ └── kontrolluppgifter-lon-formaner-mm-skv304-utgava38.pdf ├── ku10.csv ├── __init__.py └── report_ku10_view.xml ├── l10n_se_hr_payroll_separate ├── ag.glabels ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── base_synchro_view.xml ├── __init__.py ├── i18n │ └── sv.po └── __manifest__.py ├── l10n_se_hr_holidays ├── views │ ├── hr_employee_view.xml │ └── resource_calendar_view.xml ├── static │ └── description │ │ ├── banner.png │ │ ├── icon.png │ │ ├── icon_swedish_flag.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── data │ └── hr_salary_rule_category_data.xml ├── __init__.py └── models │ └── __init__.py ├── l10n_se_hr_add_average_week ├── doc │ ├── 20161212154439485.pdf │ ├── I-avtalet 2016_2017.pdf │ └── Tjänstemannaavtalet 2016_2017.pdf ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings_20-04.png │ │ ├── inkscape_export_settings_22-04.png │ │ └── notes.txt ├── data │ ├── contract_payslip_demo.xml │ └── hr_payroll_data.xml ├── views │ └── resource_calander_view.xml ├── __init__.py ├── models │ ├── __init__.py │ └── resource_calander.py └── __manifest__.py ├── l10n_se_hr_payroll_flex100 ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── hr_payroll_payslip_report.xml ├── __init__.py ├── i18n │ └── sv.po ├── hr_payroll_flex100.py └── __manifest__.py ├── l10n_se_hr_payroll_schema ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── __init__.py ├── __manifest__.py └── hr_payroll_schema.py ├── l10n_se_hr_holidays_account ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── icon_swedish_flag.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── data │ └── l10n_se_hr_salary_rule_data.xml ├── __init__.py └── __manifest__.py ├── l10n_se_hr_payroll_benefits ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── __init__.py └── __manifest__.py ├── l10n_se_hr_payroll_employeefund ├── static │ └── description │ │ ├── icon.png │ │ ├── banner.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── hr_salary_rule_category_data.xml ├── hr_salary_rule_data.xml ├── i18n │ └── sv.po ├── __init__.py ├── hr_payroll_payslip_report.xml └── __manifest__.py ├── l10n_se_hr_payroll_credit_coupling ├── static │ └── description │ │ ├── banner.png │ │ ├── icon.png │ │ ├── inkscape_export_settings.png │ │ ├── notes.txt │ │ └── index.html ├── views │ └── hr_payslip_views.xml ├── models │ ├── __init__.py │ └── hr_payslip.py ├── __init__.py ├── i18n │ └── sv.po └── __manifest__.py ├── README.md └── .gitignore /l10n_se_payslip/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /dependencies.txt: -------------------------------------------------------------------------------- 1 | git@github.com:vertelab/odoo-account.git 2 | -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/test/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_payslip 2 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll/report/payslipODT/Configurations2/accelerator/current.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema_hour/models/__init__.py: -------------------------------------------------------------------------------- 1 | # from . import hr_payroll -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll/report/payslipODT/mimetype: -------------------------------------------------------------------------------- 1 | application/vnd.oasis.opendocument.text -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema_hour/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # from . import models 3 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/notes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | http://www.tiichri.se/facit.html 4 | 2023-03-09 5 | -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import payroll_taxable 2 | from . import hr_contract 3 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import hr_payroll_account 2 | from . import res_config_settings 3 | -------------------------------------------------------------------------------- /l10n_se_payslip/payslip.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payslip/payslip.odt -------------------------------------------------------------------------------- /l10n_se_hr_payroll/report/.~lock.payslip.odt#: -------------------------------------------------------------------------------- 1 | ,kriss,zen.vertel.se,30.08.2022 09:29,file:///home/kriss/.config/libreoffice/4; -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/ag.glabels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payslip_run/ag.glabels -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/ku10.glabels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_ku10/ku10.glabels -------------------------------------------------------------------------------- /l10n_se_hr_payroll_separate/ag.glabels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_separate/ag.glabels -------------------------------------------------------------------------------- /l10n_se_hr_holidays/views/hr_employee_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll/report/payslipODT.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/report/payslipODT.odt -------------------------------------------------------------------------------- /l10n_se_hr_payroll/report/payslipODT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/report/payslipODT.zip -------------------------------------------------------------------------------- /l10n_se_hr_payroll/report/payslip_old.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/report/payslip_old.odt -------------------------------------------------------------------------------- /l10n_se_hr_payroll/doc/20161212154439485.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/doc/20161212154439485.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll/doc/I-avtalet 2016_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/doc/I-avtalet 2016_2017.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import import_swedish_holidays 2 | from . import import_swedish_holidays_settings 3 | 4 | -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | 3 | -------------------------------------------------------------------------------- /l10n_se_hr_holidays/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_holidays/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_ku10/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/Kortfacit_2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/Kortfacit_2022.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/tests/hr.leave.type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/tests/hr.leave.type.png -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payslip_run/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/doc/20161212154439485.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_add_average_week/doc/20161212154439485.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll/static/description/icon_vertel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/static/description/icon_vertel.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_account/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_flex100/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_flex100/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_ku10/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_schema/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_05_2022_maj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_05_2022_maj.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payslip_run/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/doc/I-avtalet 2016_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_add_average_week/doc/I-avtalet 2016_2017.pdf -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_add_average_week/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_holidays_account/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays_account/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_account/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_benefits/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_benefits/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_flex100/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_flex100/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_schema/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_separate/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_separate/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_03_2022_mars.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_03_2022_mars.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_04_2022_april.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_04_2022_april.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_06_2022_juni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_06_2022_juni.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_07_2022_juli.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_07_2022_juli.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_add_average_week/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_holidays_account/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays_account/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll/doc/Tjänstemannaavtalet 2016_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/doc/Tjänstemannaavtalet 2016_2017.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll/static/description/icon_swedish_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/static/description/icon_swedish_flag.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_benefits/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_benefits/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_employeefund/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_employeefund/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema_hour/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_schema_hour/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_separate/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_separate/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/employer_agreement2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/employer_agreement2022.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_01_2022_januari.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_01_2022_januari.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_02_2022_februari.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_02_2022_februari.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_08_2022_augusti.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_08_2022_augusti.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_10_2022_oktober.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_10_2022_oktober.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_11_2022_november.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_11_2022_november.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_12_2022_december.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_12_2022_december.pdf -------------------------------------------------------------------------------- /l10n_se_hr_holidays/static/description/icon_swedish_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays/static/description/icon_swedish_flag.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll/report/payslipODT/Thumbnails/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/report/payslipODT/Thumbnails/thumbnail.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_employeefund/hr_salary_rule_category_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_employeefund/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_employeefund/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema_hour/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_schema_hour/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/facit/facit_09_2022_september.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/facit/facit_09_2022_september.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/doc/4700-exempel-ag-2016-utgava19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payslip_run/doc/4700-exempel-ag-2016-utgava19.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_credit_coupling/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_credit_coupling/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_credit_coupling/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_credit_coupling/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_employeefund/hr_salary_rule_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/static/description/icon_140x140.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_ku10/static/description/icon_140x140.svg.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/static/description/icon_swedish_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_ku10/static/description/icon_swedish_flag.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-1.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-2.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-3.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-4.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-5.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-6.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-7.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-8.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/skattetabell-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/skattetabell-9.png -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/doc/Tjänstemannaavtalet 2016_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_add_average_week/doc/Tjänstemannaavtalet 2016_2017.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_holidays/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_holidays_account/static/description/icon_swedish_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays_account/static/description/icon_swedish_flag.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/static/description/icon_swedish_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_account/static/description/icon_swedish_flag.png -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/static/description/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_resource_calendar_leaves_import/static/description/banner.png -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_resource_calendar_leaves_import/static/description/icon.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_ku10/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payslip_run/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_account/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_flex100/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_flex100/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_schema/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_payroll_taxtable/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_holidays_account/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_holidays_account/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_benefits/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_benefits/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_separate/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_separate/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_employeefund/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_employeefund/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema_hour/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_schema_hour/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/static/description/inkscape_export_settings_20-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_add_average_week/static/description/inkscape_export_settings_20-04.png -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/static/description/inkscape_export_settings_22-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_add_average_week/static/description/inkscape_export_settings_22-04.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll/files/skatteavdrag-och-arbetsgivaravgifter-skv401-utgava27.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll/files/skatteavdrag-och-arbetsgivaravgifter-skv401-utgava27.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/doc/kontrolluppgifter-lon-formaner-mm-skv304-utgava38.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_ku10/doc/kontrolluppgifter-lon-formaner-mm-skv304-utgava38.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/static/description/inkscape_export_settings_20-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/static/description/inkscape_export_settings_20-04.png -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/static/description/inkscape_export_settings_22-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_tiichri/static/description/inkscape_export_settings_22-04.png -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/doc/moms-och-arbetsgivardeklarationer-skv409-utgava19.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payslip_run/doc/moms-och-arbetsgivardeklarationer-skv409-utgava19.pdf -------------------------------------------------------------------------------- /l10n_se_hr_payroll_credit_coupling/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_hr_payroll_credit_coupling/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/static/description/inkscape_export_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertelab/odoo-l10n_se_payroll/14.0/l10n_se_resource_calendar_leaves_import/static/description/inkscape_export_settings.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # odoo-l10n_payroll 2 | Swedish payroll and accounting module 3 | 4 | Ported modules: 5 | 6 | Module name |Description 7 | --- | --- 8 | l10n_se_hr_payroll | Ported 9 | l10n_se_hr_holidays | 10 | l10n_se_hr_payroll_account | Ported 11 | l10n_se_hr_holidays_account| 12 | -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/data/ir_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | taxable_url 5 | https://skatteverket.entryscape.net/store/9/resource/1534 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/models/res_config_settings.py: -------------------------------------------------------------------------------- 1 | # Part of Odoo. See LICENSE file for full copyright and licensing details. 2 | 3 | from odoo import fields, models 4 | 5 | 6 | class ResConfigSettings(models.TransientModel): 7 | _inherit = "res.config.settings" 8 | 9 | payroll_account_post = fields.Boolean(string="Payroll Accounting",config_parameter='l10n_se_hr_payroll_account.payroll_account_post') 10 | -------------------------------------------------------------------------------- /l10n_se_hr_holidays/data/hr_salary_rule_category_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | SEMSK 7 | Semesterlöneskulder 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll/data/contract_payslip_demo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | abigail_contract_1 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /l10n_se_hr_add_average_week/data/contract_payslip_demo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | abigail_contract_1 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /l10n_se_payslip/report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SwedishPayslip 6 | model_hr_payslip 7 | Swediosh Payslip 8 | py3o 9 | odt 10 | l10n_payslip 11 | payslip.odt 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/data/ir_server_action.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Sync Taxable 5 | 6 | 7 | form 8 | code 9 | action = records.action_sync_taxable() 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_credit_coupling/views/hr_payslip_views.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | hr_payroll_community.view_hr_payslip_form_inherit 5 | hr.payslip 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_tiichri/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 2 | 3 | # ~ from . import test_01_payslip_january 4 | # ~ from . import test_02_payslip_february 5 | # ~ from . import test_03_payslip_mars 6 | # ~ from . import test_04_payslip_april 7 | # ~ from . import test_05_payslip_may 8 | # ~ from . import test_06_payslip_june 9 | # ~ from . import test_07_payslip_july 10 | from . import test_08_payslip_august 11 | #from . import test_09_payslip_september 12 | #from . import test_10_payslip_october 13 | #from . import test_11_payslip_november 14 | #from . import test_12_payslip_december 15 | -------------------------------------------------------------------------------- /l10n_se_hr_holidays_account/data/l10n_se_hr_salary_rule_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7290 6 | 2920 7 | 8 | 9 | 7519 10 | 2941 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/data/l10n_se_wizard.yml: -------------------------------------------------------------------------------- 1 | - 2 | !python {model: ir.actions.todo}: | 3 | install_todo = self.browse(cr, uid, ref('account.action_wizard_multi_chart_todo')) 4 | if install_todo.state == 'open': 5 | wiz = self.pool.get('wizard.multi.charts.accounts') 6 | values = { 7 | 'chart_template_id': ref('l10n_se.b') 8 | } 9 | values.update( 10 | wiz.onchange_chart_template_id(cr, uid, False, ref('l10n_se.b')).get('value', {}) 11 | ) 12 | wiz_id = wiz.create(cr, uid, values) 13 | wiz.execute(cr, uid, [wiz_id]) 14 | install_todo.write({'state':'done'}) 15 | -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/ag.csv: -------------------------------------------------------------------------------- 1 | company_id,create_date,create_uid,credit_note,date_end,date_start,display_name,fully_social_normal_fees,fully_social_retired_fees,fully_social_youth_fees,general_payroll_tax,id,__last_update,name,nbr_employee,net_salary,slip_ids,social_normal_fees,social_retired_fees,social_youth_fees,state,taxable_salary,total_taxable,write_date,write_uid 2 | company_id,create_date,create_uid,credit_note,date_end,date_start,display_name,fully_social_normal_fees,fully_social_retired_fees,fully_social_youth_fees,general_payroll_tax,id,__last_update,name,nbr_employee,net_salary,slip_ids,social_normal_fees,social_retired_fees,social_youth_fees,state,taxable_salary,total_taxable,write_date,write_uid -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/views/res_config_settings_url.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | res.config.settings.url.view.form 5 | res.config.settings 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/ku10.csv: -------------------------------------------------------------------------------- 1 | c049,c048,c061,c060,c001,write_date,c065,c041,c043,c042,c009,c008,c047,write_uid,c215,c210,c013,id,c215_city,c025,c022,c021,c020,create_uid,c011,display_name,c215_zip,__last_update,c016,c051,c017,c215_name,c014,c201_name,c215_street,c070,c570,c056,c045,c054,c055,c052,c053,c050,c044,c018,c039,c201,c012,c035,c037,c030,c031,c032,c015,c093,c205,create_date 2 | c049,c048,c061,c060,c001,write_date,c065,c041,c043,c042,c009,c008,c047,write_uid,c215,c210,c013,id,c215_city,c025,c022,c021,c020,create_uid,c011,display_name,c215_zip,__last_update,c016,c051,c017,c215_name,c014,c201_name,c215_street,c070,c570,c056,c045,c054,c055,c052,c053,c050,c044,c018,c039,c201,c012,c035,c037,c030,c031,c032,c015,c093,c205,create_date -------------------------------------------------------------------------------- /l10n_se_hr_holidays/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_export 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_export 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_export 2 | 2022-01-10 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_holidays_account/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_export 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/views/l10n_se_hr_payroll_account_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | hr.salary.rule.list.inherit.l10n_se.account 6 | hr.salary.rule 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_flex100/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_export 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_ku10/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_payroll_ku10 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_separate/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_export 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payslip_run/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_hr_payslip_run 2 | 2022-01-10 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_employeefund/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_export 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_account/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_hr_payroll_account 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_benefits/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_hr_payroll_benefits 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_hr_payroll_schema 2 | 2022-01-11 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_schema_hour/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_hr_payroll_schema 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_credit_coupling/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_hr_payroll_benefits 2 | 2022-01-17 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_resource_calendar_leaves_import/static/description/notes.txt: -------------------------------------------------------------------------------- 1 | odoo-l10n_se_payroll / l10n_se_resource_calendar_leaves_import 2 | 2022-01-10 3 | 4 | /static/description/icon.png 5 | 6 | Icon: User 7 | Icons may be found at: https://fontawesome.com/v5/cheatsheet 8 | 9 | 10 | Odoo icon: 140 x 140 11 | Odoo banner: 560 x 280 12 | 13 | 14 | HEX 15 | #930a57 16 | 17 | #8105a7 18 | 19 | 20 | Source: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool 21 | 22 | Guide: 23 | 1. Use Inkscape to create a colored background. (Import) 24 | 2. Odoo icon: 140 x 140, 560 x 280. 25 | 3. Pick icon at fontawesome and paste in a text field. 26 | 4. Save in ordinary / plain svg format. 27 | 5. In Inkscape, choose Generate PNG image and "Export as...". 28 | 6. Write a filename of choice and choose "Export". 29 | -------------------------------------------------------------------------------- /l10n_se_payroll_taxtable/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_payroll_taxtable,access_payroll_taxtable,model_payroll_taxtable,payroll.group_payroll_manager,1,1,1,1 3 | access_payroll_taxtable_wizard,access_payroll_taxtable_wizard,model_payroll_taxtable_wizard,payroll.group_payroll_manager,1,1,1,1 4 | access_payroll_taxtable_line,access_payroll_taxtable_line,model_payroll_taxtable_line,payroll.group_payroll_manager,1,1,1,1 5 | access_payroll_taxtable_remove,access_payroll_taxtable,model_payroll_taxtable,base.group_user,0,0,0,0 6 | access_payroll_taxtable_wizard_remove,access_payroll_taxtable_wizard,model_payroll_taxtable_wizard,base.group_user,0,0,0,0 7 | access_payroll_taxtable_line_remove,access_payroll_taxtable_line,model_payroll_taxtable_line,base.group_user,0,0,0,0 8 | -------------------------------------------------------------------------------- /l10n_se_hr_payroll_separate/base_synchro_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Base Synchronization inherit 6 | base.synchro 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | payroll.hr.employee.view.form 35 | hr.employee 36 | 37 | 38 |