odoo-addon-account-financial-report 17.0.1.0.0.12__py3-none-any.whl → 17.0.1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of odoo-addon-account-financial-report might be problematic. Click here for more details.

Files changed (28) hide show
  1. odoo/addons/account_financial_report/README.rst +38 -1
  2. odoo/addons/account_financial_report/__manifest__.py +4 -1
  3. odoo/addons/account_financial_report/i18n/account_financial_report.pot +111 -13
  4. odoo/addons/account_financial_report/i18n/es.po +112 -3
  5. odoo/addons/account_financial_report/i18n/tr.po +120 -120
  6. odoo/addons/account_financial_report/models/__init__.py +2 -0
  7. odoo/addons/account_financial_report/models/account_age_report_configuration.py +47 -0
  8. odoo/addons/account_financial_report/models/res_config_settings.py +14 -0
  9. odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
  10. odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +1 -0
  11. odoo/addons/account_financial_report/readme/DESCRIPTION.md +4 -0
  12. odoo/addons/account_financial_report/report/aged_partner_balance.py +79 -3
  13. odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +144 -104
  14. odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +428 -333
  15. odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
  16. odoo/addons/account_financial_report/security/security.xml +8 -0
  17. odoo/addons/account_financial_report/static/description/index.html +47 -21
  18. odoo/addons/account_financial_report/tests/__init__.py +1 -0
  19. odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
  20. odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +84 -5
  21. odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
  22. odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
  23. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +4 -0
  24. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
  25. {odoo_addon_account_financial_report-17.0.1.0.0.12.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.dist-info}/METADATA +39 -2
  26. {odoo_addon_account_financial_report-17.0.1.0.0.12.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.dist-info}/RECORD +28 -21
  27. {odoo_addon_account_financial_report-17.0.1.0.0.12.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.dist-info}/WHEEL +0 -0
  28. {odoo_addon_account_financial_report-17.0.1.0.0.12.dist-info → odoo_addon_account_financial_report-17.0.1.1.0.dist-info}/top_level.txt +0 -0
@@ -53,6 +53,11 @@ msgstr "91 - 120 d."
53
53
  msgid "<b>Taxes summary</b>"
54
54
  msgstr "<b>Resumen de Impuestos</b>"
55
55
 
56
+ #. module: account_financial_report
57
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
58
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
59
+ msgstr "<span class=\"o_form_label\">Configuración de intervalos</span>"
60
+
56
61
  #. module: account_financial_report
57
62
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
58
63
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -93,6 +98,11 @@ msgstr "Extracto XLSX Account Financial Report"
93
98
  msgid "Account"
94
99
  msgstr "Cuenta"
95
100
 
101
+ #. module: account_financial_report
102
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
103
+ msgid "Account Age Report Config"
104
+ msgstr "Configuración del informe de calidad de deuda"
105
+
96
106
  #. module: account_financial_report
97
107
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
98
108
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
@@ -427,6 +437,7 @@ msgstr "C??digo"
427
437
  #. module: account_financial_report
428
438
  #. odoo-python
429
439
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
440
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
430
441
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
431
442
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
432
443
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -444,6 +455,18 @@ msgid "Compute accounts"
444
455
  msgstr "Cuentas calculadas"
445
456
 
446
457
  #. module: account_financial_report
458
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
459
+ msgid "Config Settings"
460
+ msgstr "Ajustes de configuración"
461
+
462
+ #. module: account_financial_report
463
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
464
+ msgid "Configurations"
465
+ msgstr "Configuraciones"
466
+
467
+ #. module: account_financial_report
468
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
469
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
447
470
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
448
471
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
449
472
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -454,6 +477,8 @@ msgid "Created by"
454
477
  msgstr "Creado por"
455
478
 
456
479
  #. module: account_financial_report
480
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
481
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
457
482
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
458
483
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
459
484
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -468,6 +493,7 @@ msgstr "Creado el"
468
493
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
469
494
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
470
495
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
496
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
471
497
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
472
498
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
473
499
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
@@ -528,6 +554,7 @@ msgstr "Moneda"
528
554
  #. module: account_financial_report
529
555
  #. odoo-python
530
556
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
557
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
531
558
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
532
559
  #, python-format
533
560
  msgid "Current"
@@ -618,6 +645,7 @@ msgstr "Hasta"
618
645
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
619
646
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
620
647
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
648
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
621
649
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
622
650
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
623
651
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
@@ -642,6 +670,8 @@ msgid "Detail Taxes"
642
670
  msgstr "Detalle de impuestos"
643
671
 
644
672
  #. module: account_financial_report
673
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
674
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
645
675
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
646
676
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
647
677
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
@@ -727,6 +757,9 @@ msgstr "Cuenta final en un rango"
727
757
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
728
758
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
729
759
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
760
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
761
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
762
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
730
763
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
731
764
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
732
765
  #, python-format
@@ -773,6 +806,7 @@ msgstr "N??mero de asiento"
773
806
  #. module: account_financial_report
774
807
  #. odoo-javascript
775
808
  #: code:addons/account_financial_report/static/src/xml/report.xml:0
809
+ #: code:addons/account_financial_report/static/src/xml/report.xml:0
776
810
  #, python-format
777
811
  msgid "Export"
778
812
  msgstr "Exportar"
@@ -918,8 +952,7 @@ msgid ""
918
952
  " only one unaffected earnings account."
919
953
  msgstr ""
920
954
  "El Libro mayor solo se puede calcular si la empresa seleccionada tiene \n"
921
- " solo una cuenta "
922
- "de resultados no afectados."
955
+ " solo una cuenta de resultados no afectados."
923
956
 
924
957
  #. module: account_financial_report
925
958
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__group_option
@@ -931,6 +964,12 @@ msgstr "Agrupar por"
931
964
  msgid "Grouped By"
932
965
  msgstr "Agrupado por"
933
966
 
967
+ #. module: account_financial_report
968
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
969
+ msgid ""
970
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
971
+ msgstr "Aquí puede configurar los intervalos que aparecerán en el informe de Calidad de la deuda."
972
+
934
973
  #. module: account_financial_report
935
974
  #. odoo-python
936
975
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
@@ -960,6 +999,8 @@ msgid "Hierarchy Levels to display"
960
999
  msgstr "Niveles de Jerarqu??a a mostrar"
961
1000
 
962
1001
  #. module: account_financial_report
1002
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
1003
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
963
1004
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
964
1005
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
965
1006
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
@@ -978,6 +1019,18 @@ msgstr ""
978
1019
  "Si se marca, no se mostrar??n detalles en el informe del libro mayor (solo "
979
1020
  "el webkit), solo importes centralizados por per??odo."
980
1021
 
1022
+ #. module: account_financial_report
1023
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
1024
+ msgid "Inferior Limit"
1025
+ msgstr "Límite inferior"
1026
+
1027
+ #. module: account_financial_report
1028
+ #. odoo-python
1029
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1030
+ #, python-format
1031
+ msgid "Inferior Limit must be greather than zero"
1032
+ msgstr "El límite inferior debe ser mayor que cero"
1033
+
981
1034
  #. module: account_financial_report
982
1035
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
983
1036
  msgid ""
@@ -1000,11 +1053,20 @@ msgstr ""
1000
1053
  #. odoo-python
1001
1054
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1002
1055
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1056
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1057
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1058
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1003
1059
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1004
1060
  #, python-format
1005
1061
  msgid "Initial balance"
1006
1062
  msgstr "Saldo inicial"
1007
1063
 
1064
+ #. module: account_financial_report
1065
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1066
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__default_age_partner_config_id
1067
+ msgid "Intervals configuration"
1068
+ msgstr "Configuración de intervalos"
1069
+
1008
1070
  #. module: account_financial_report
1009
1071
  #. odoo-python
1010
1072
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
@@ -1074,6 +1136,8 @@ msgid "Journals"
1074
1136
  msgstr "Diarios"
1075
1137
 
1076
1138
  #. module: account_financial_report
1139
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1140
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1077
1141
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1078
1142
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1079
1143
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1084,6 +1148,8 @@ msgid "Last Updated by"
1084
1148
  msgstr "??ltima actualizaci??n por"
1085
1149
 
1086
1150
  #. module: account_financial_report
1151
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1152
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1087
1153
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1088
1154
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1089
1155
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1115,15 +1181,32 @@ msgstr "Nivel %s"
1115
1181
  msgid "Limit hierarchy levels"
1116
1182
  msgstr "Limitar niveles de jerarqu??a"
1117
1183
 
1184
+ #. module: account_financial_report
1185
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1186
+ msgid "Line"
1187
+ msgstr "Línea"
1188
+
1118
1189
  #. module: account_financial_report
1119
1190
  #. odoo-python
1120
1191
  #: code:addons/account_financial_report/report/general_ledger.py:0
1192
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1121
1193
  #: code:addons/account_financial_report/report/open_items.py:0
1122
1194
  #: code:addons/account_financial_report/report/trial_balance.py:0
1195
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1123
1196
  #, python-format
1124
1197
  msgid "Missing Partner"
1125
1198
  msgstr ""
1126
1199
 
1200
+ #. module: account_financial_report
1201
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1202
+ msgid "Model to set interval lines for Age partner balance report"
1203
+ msgstr "Modelo para establecer líneas de intervalo para el informe de Calidad de deuda"
1204
+
1205
+ #. module: account_financial_report
1206
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1207
+ msgid "Model to set intervals for Age partner balance report"
1208
+ msgstr "Modelo para establecer intervalos en el informe de Calidad de deuda"
1209
+
1127
1210
  #. module: account_financial_report
1128
1211
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1129
1212
  msgid "Move Target"
@@ -1134,10 +1217,19 @@ msgstr "Asiento Objetivo"
1134
1217
  msgid "Moves"
1135
1218
  msgstr "Asientos"
1136
1219
 
1220
+ #. module: account_financial_report
1221
+ #. odoo-python
1222
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1223
+ #, python-format
1224
+ msgid "Must complete Configuration Lines"
1225
+ msgstr "Debe completar las líneas de configuración"
1226
+
1137
1227
  #. module: account_financial_report
1138
1228
  #. odoo-python
1139
1229
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1140
1230
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1231
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1232
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1141
1233
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1142
1234
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1143
1235
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
@@ -1145,6 +1237,13 @@ msgstr "Asientos"
1145
1237
  msgid "Name"
1146
1238
  msgstr "Nombre"
1147
1239
 
1240
+ #. module: account_financial_report
1241
+ #. odoo-python
1242
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1243
+ #, python-format
1244
+ msgid "Name must be unique per report configuration"
1245
+ msgstr "El nombre debe ser único por cada configuración del informe"
1246
+
1148
1247
  #. module: account_financial_report
1149
1248
  #. odoo-python
1150
1249
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
@@ -1195,6 +1294,11 @@ msgstr "Sin Postear"
1195
1294
  msgid "Not due"
1196
1295
  msgstr "Deuda"
1197
1296
 
1297
+ #. module: account_financial_report
1298
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1299
+ msgid "OCA Aged Report Configuration"
1300
+ msgstr "Configuración del informe Calidad de deuda OCA"
1301
+
1198
1302
  #. module: account_financial_report
1199
1303
  #: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
1200
1304
  msgid "OCA accounting reports"
@@ -1203,6 +1307,7 @@ msgstr "Informes de contabilidad OCA"
1203
1307
  #. module: account_financial_report
1204
1308
  #. odoo-python
1205
1309
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1310
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1206
1311
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1207
1312
  #, python-format
1208
1313
  msgid "Older"
@@ -1271,6 +1376,7 @@ msgstr "Inicial"
1271
1376
  #. module: account_financial_report
1272
1377
  #. odoo-python
1273
1378
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1379
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1274
1380
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1275
1381
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1276
1382
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -1344,6 +1450,7 @@ msgstr "Porcentajes"
1344
1450
  #. module: account_financial_report
1345
1451
  #. odoo-python
1346
1452
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1453
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1347
1454
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1348
1455
  #, python-format
1349
1456
  msgid "Period balance"
@@ -1410,11 +1517,12 @@ msgstr "Ref - Etiqueta"
1410
1517
  #. module: account_financial_report
1411
1518
  #: model:ir.model,name:account_financial_report.model_ir_actions_report
1412
1519
  msgid "Report Action"
1413
- msgstr "Acci??n Informe"
1520
+ msgstr "Acción de informe"
1414
1521
 
1415
1522
  #. module: account_financial_report
1416
1523
  #. odoo-python
1417
1524
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1525
+ #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1418
1526
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1419
1527
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1420
1528
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
@@ -1817,6 +1925,7 @@ msgstr "Cuenta con Nombre"
1817
1925
  #. module: account_financial_report
1818
1926
  #. odoo-python
1819
1927
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1928
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1820
1929
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1821
1930
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1822
1931
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters