odoo-addon-mis-builder 17.0.1.0.0.7__py3-none-any.whl → 17.0.1.0.2__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.
@@ -7,7 +7,7 @@ MIS Builder
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:f8989a4fefbc9688a39969027c326e5999fc1eff237716e8dbe5d54550584837
10
+ !! source digest: sha256:54076b45673a7d1ffd748cf064f7394098d0ba3520fe43985ea4e3cda74772ba
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -100,6 +100,15 @@ can be found on GitHub.
100
100
  Changelog
101
101
  =========
102
102
 
103
+ 17.0.1.0.2 (2024-11-11)
104
+ -----------------------
105
+
106
+ Features
107
+ ~~~~~~~~
108
+
109
+ - Add support for branch companies.
110
+ (`#648 <https://github.com/OCA/mis-builder/issues/648>`__)
111
+
103
112
  16.0.5.1.9 (2024-02-09)
104
113
  -----------------------
105
114
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  {
5
5
  "name": "MIS Builder",
6
- "version": "17.0.1.0.0",
6
+ "version": "17.0.1.0.2",
7
7
  "category": "Reporting",
8
8
  "summary": """
9
9
  Build 'Management Information System' Reports and Dashboards
@@ -12,6 +12,7 @@ from odoo.tools.float_utils import float_is_zero
12
12
  from odoo.tools.safe_eval import datetime, dateutil, safe_eval, time
13
13
 
14
14
  from .accounting_none import AccountingNone
15
+ from .simple_array import SimpleArray
15
16
 
16
17
  _logger = logging.getLogger(__name__)
17
18
 
@@ -316,7 +317,7 @@ class AccountingExpressionProcessor:
316
317
  aml_model = aml_model.with_context(active_test=False)
317
318
  company_rates = self._get_company_rates(date_to)
318
319
  # {(domain, mode): {account_id: (debit, credit)}}
319
- self._data = defaultdict(dict)
320
+ self._data = defaultdict(lambda: defaultdict(lambda: SimpleArray((0.0, 0.0))))
320
321
  domain_by_mode = {}
321
322
  ends = []
322
323
  for key in self._map_account_ids:
@@ -364,7 +365,9 @@ class AccountingExpressionProcessor:
364
365
  ):
365
366
  # in initial mode, ignore accounts with 0 balance
366
367
  continue
367
- self._data[key][acc["account_id"][0]] = (debit * rate, credit * rate)
368
+ # due to branches, it's possible to have multiple acc
369
+ # with the same account_id
370
+ self._data[key][acc["account_id"][0]] += (debit * rate, credit * rate)
368
371
  # compute ending balances by summing initial and variation
369
372
  for key in ends:
370
373
  domain, mode = key
@@ -719,7 +719,8 @@ class MisReportInstance(models.Model):
719
719
  )
720
720
  )
721
721
  # report-level analytic domain filter
722
- domain.extend(ast.literal_eval(self.analytic_domain))
722
+ if self.analytic_domain:
723
+ domain.extend(ast.literal_eval(self.analytic_domain))
723
724
  # contextual analytic domain filter
724
725
  domain.extend(self.env.context.get("mis_analytic_domain", []))
725
726
  return domain
@@ -1,3 +1,10 @@
1
+ ## 17.0.1.0.2 (2024-11-11)
2
+
3
+ ### Features
4
+
5
+ - Add support for branch companies. ([#648](https://github.com/OCA/mis-builder/issues/648))
6
+
7
+
1
8
  ## 16.0.5.1.9 (2024-02-09)
2
9
 
3
10
  **Bugfixes**
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:f8989a4fefbc9688a39969027c326e5999fc1eff237716e8dbe5d54550584837
370
+ !! source digest: sha256:54076b45673a7d1ffd748cf064f7394098d0ba3520fe43985ea4e3cda74772ba
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
372
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/mis-builder/tree/17.0/mis_builder"><img alt="OCA/mis-builder" src="https://img.shields.io/badge/github-OCA%2Fmis--builder-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/mis-builder-17-0/mis-builder-17-0-mis_builder"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/mis-builder&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <p>This module allows you to build Management Information Systems
@@ -383,47 +383,51 @@ to PDF, Excel and they can be added to Odoo dashboards.</p>
383
383
  <li><a class="reference internal" href="#development" id="toc-entry-3">Development</a></li>
384
384
  <li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-4">Known issues / Roadmap</a></li>
385
385
  <li><a class="reference internal" href="#changelog" id="toc-entry-5">Changelog</a><ul>
386
- <li><a class="reference internal" href="#section-1" id="toc-entry-6">16.0.5.1.9 (2024-02-09)</a></li>
387
- <li><a class="reference internal" href="#section-2" id="toc-entry-7">16.0.5.1.8 (2024-02-08)</a></li>
388
- <li><a class="reference internal" href="#section-3" id="toc-entry-8">16.0.5.1.0 (2023-04-04)</a></li>
389
- <li><a class="reference internal" href="#section-4" id="toc-entry-9">16.0.5.0.0 (2023-04-01)</a></li>
390
- <li><a class="reference internal" href="#section-5" id="toc-entry-10">15.0.4.0.5 (2022-07-19)</a></li>
391
- <li><a class="reference internal" href="#section-6" id="toc-entry-11">15.0.4.0.4 (2022-07-19)</a></li>
392
- <li><a class="reference internal" href="#section-7" id="toc-entry-12">15.0.4.0.2 (2022-02-16)</a></li>
393
- <li><a class="reference internal" href="#section-8" id="toc-entry-13">14.0.4.0.0 (2022-01-08)</a></li>
394
- <li><a class="reference internal" href="#section-9" id="toc-entry-14">14.0.3.6.7 (2021-06-02)</a></li>
395
- <li><a class="reference internal" href="#section-10" id="toc-entry-15">14.0.3.6.6 (2021-04-23)</a></li>
396
- <li><a class="reference internal" href="#section-11" id="toc-entry-16">14.0.3.6.5 (2021-04-23)</a></li>
397
- <li><a class="reference internal" href="#section-12" id="toc-entry-17">14.0.3.6.4 (2021-04-06)</a></li>
398
- <li><a class="reference internal" href="#section-13" id="toc-entry-18">13.0.3.6.3 (2020-08-28)</a></li>
399
- <li><a class="reference internal" href="#section-14" id="toc-entry-19">13.0.3.6.2 (2020-04-22)</a></li>
400
- <li><a class="reference internal" href="#section-15" id="toc-entry-20">13.0.3.6.1 (2020-04-22)</a></li>
401
- <li><a class="reference internal" href="#section-16" id="toc-entry-21">13.0.3.6.0 (2020-03-28)</a></li>
402
- <li><a class="reference internal" href="#section-17" id="toc-entry-22">13.0.3.5.0 (2020-01-??)</a></li>
403
- <li><a class="reference internal" href="#section-18" id="toc-entry-23">12.0.3.5.0 (2019-10-26)</a></li>
404
- <li><a class="reference internal" href="#section-19" id="toc-entry-24">12.0.3.4.0 (2019-07-09)</a></li>
405
- <li><a class="reference internal" href="#section-20" id="toc-entry-25">12.0.3.3.0 (2019-01-26)</a></li>
406
- <li><a class="reference internal" href="#section-21" id="toc-entry-26">11.0.3.2.2 (2018-06-30)</a></li>
407
- <li><a class="reference internal" href="#section-22" id="toc-entry-27">11.0.3.2.1 (2018-05-29)</a></li>
408
- <li><a class="reference internal" href="#section-23" id="toc-entry-28">10.0.3.2.0 (2018-05-02)</a></li>
409
- <li><a class="reference internal" href="#section-24" id="toc-entry-29">11.0.3.1.2 (2018-02-04)</a></li>
410
- <li><a class="reference internal" href="#section-25" id="toc-entry-30">10.0.3.1.1 (2017-11-14)</a></li>
411
- <li><a class="reference internal" href="#section-26" id="toc-entry-31">10.0.3.0.4 (2017-10-14)</a></li>
412
- <li><a class="reference internal" href="#section-27" id="toc-entry-32">10.0.3.0.3 (2017-10-03)</a></li>
413
- <li><a class="reference internal" href="#section-28" id="toc-entry-33">10.0.3.0.2 (2017-10-01)</a></li>
414
- <li><a class="reference internal" href="#unreleased" id="toc-entry-34">10.0.2.0.3 (unreleased)</a></li>
415
- <li><a class="reference internal" href="#section-29" id="toc-entry-35">9.0.2.0.2 (2016-09-27)</a></li>
416
- <li><a class="reference internal" href="#section-30" id="toc-entry-36">9.0.2.0.1 (2016-05-26)</a></li>
417
- <li><a class="reference internal" href="#section-31" id="toc-entry-37">9.0.2.0.0 (2016-05-24)</a></li>
418
- <li><a class="reference internal" href="#section-32" id="toc-entry-38">8.0.1.0.0 (2016-04-27)</a></li>
419
- <li><a class="reference internal" href="#section-33" id="toc-entry-39">8.0.0.2.0</a></li>
386
+ <li><a class="reference internal" href="#section-1" id="toc-entry-6">17.0.1.0.2 (2024-11-11)</a><ul>
387
+ <li><a class="reference internal" href="#features" id="toc-entry-7">Features</a></li>
420
388
  </ul>
421
389
  </li>
422
- <li><a class="reference internal" href="#bug-tracker" id="toc-entry-40">Bug Tracker</a></li>
423
- <li><a class="reference internal" href="#credits" id="toc-entry-41">Credits</a><ul>
424
- <li><a class="reference internal" href="#authors" id="toc-entry-42">Authors</a></li>
425
- <li><a class="reference internal" href="#contributors" id="toc-entry-43">Contributors</a></li>
426
- <li><a class="reference internal" href="#maintainers" id="toc-entry-44">Maintainers</a></li>
390
+ <li><a class="reference internal" href="#section-2" id="toc-entry-8">16.0.5.1.9 (2024-02-09)</a></li>
391
+ <li><a class="reference internal" href="#section-3" id="toc-entry-9">16.0.5.1.8 (2024-02-08)</a></li>
392
+ <li><a class="reference internal" href="#section-4" id="toc-entry-10">16.0.5.1.0 (2023-04-04)</a></li>
393
+ <li><a class="reference internal" href="#section-5" id="toc-entry-11">16.0.5.0.0 (2023-04-01)</a></li>
394
+ <li><a class="reference internal" href="#section-6" id="toc-entry-12">15.0.4.0.5 (2022-07-19)</a></li>
395
+ <li><a class="reference internal" href="#section-7" id="toc-entry-13">15.0.4.0.4 (2022-07-19)</a></li>
396
+ <li><a class="reference internal" href="#section-8" id="toc-entry-14">15.0.4.0.2 (2022-02-16)</a></li>
397
+ <li><a class="reference internal" href="#section-9" id="toc-entry-15">14.0.4.0.0 (2022-01-08)</a></li>
398
+ <li><a class="reference internal" href="#section-10" id="toc-entry-16">14.0.3.6.7 (2021-06-02)</a></li>
399
+ <li><a class="reference internal" href="#section-11" id="toc-entry-17">14.0.3.6.6 (2021-04-23)</a></li>
400
+ <li><a class="reference internal" href="#section-12" id="toc-entry-18">14.0.3.6.5 (2021-04-23)</a></li>
401
+ <li><a class="reference internal" href="#section-13" id="toc-entry-19">14.0.3.6.4 (2021-04-06)</a></li>
402
+ <li><a class="reference internal" href="#section-14" id="toc-entry-20">13.0.3.6.3 (2020-08-28)</a></li>
403
+ <li><a class="reference internal" href="#section-15" id="toc-entry-21">13.0.3.6.2 (2020-04-22)</a></li>
404
+ <li><a class="reference internal" href="#section-16" id="toc-entry-22">13.0.3.6.1 (2020-04-22)</a></li>
405
+ <li><a class="reference internal" href="#section-17" id="toc-entry-23">13.0.3.6.0 (2020-03-28)</a></li>
406
+ <li><a class="reference internal" href="#section-18" id="toc-entry-24">13.0.3.5.0 (2020-01-??)</a></li>
407
+ <li><a class="reference internal" href="#section-19" id="toc-entry-25">12.0.3.5.0 (2019-10-26)</a></li>
408
+ <li><a class="reference internal" href="#section-20" id="toc-entry-26">12.0.3.4.0 (2019-07-09)</a></li>
409
+ <li><a class="reference internal" href="#section-21" id="toc-entry-27">12.0.3.3.0 (2019-01-26)</a></li>
410
+ <li><a class="reference internal" href="#section-22" id="toc-entry-28">11.0.3.2.2 (2018-06-30)</a></li>
411
+ <li><a class="reference internal" href="#section-23" id="toc-entry-29">11.0.3.2.1 (2018-05-29)</a></li>
412
+ <li><a class="reference internal" href="#section-24" id="toc-entry-30">10.0.3.2.0 (2018-05-02)</a></li>
413
+ <li><a class="reference internal" href="#section-25" id="toc-entry-31">11.0.3.1.2 (2018-02-04)</a></li>
414
+ <li><a class="reference internal" href="#section-26" id="toc-entry-32">10.0.3.1.1 (2017-11-14)</a></li>
415
+ <li><a class="reference internal" href="#section-27" id="toc-entry-33">10.0.3.0.4 (2017-10-14)</a></li>
416
+ <li><a class="reference internal" href="#section-28" id="toc-entry-34">10.0.3.0.3 (2017-10-03)</a></li>
417
+ <li><a class="reference internal" href="#section-29" id="toc-entry-35">10.0.3.0.2 (2017-10-01)</a></li>
418
+ <li><a class="reference internal" href="#unreleased" id="toc-entry-36">10.0.2.0.3 (unreleased)</a></li>
419
+ <li><a class="reference internal" href="#section-30" id="toc-entry-37">9.0.2.0.2 (2016-09-27)</a></li>
420
+ <li><a class="reference internal" href="#section-31" id="toc-entry-38">9.0.2.0.1 (2016-05-26)</a></li>
421
+ <li><a class="reference internal" href="#section-32" id="toc-entry-39">9.0.2.0.0 (2016-05-24)</a></li>
422
+ <li><a class="reference internal" href="#section-33" id="toc-entry-40">8.0.1.0.0 (2016-04-27)</a></li>
423
+ <li><a class="reference internal" href="#section-34" id="toc-entry-41">8.0.0.2.0</a></li>
424
+ </ul>
425
+ </li>
426
+ <li><a class="reference internal" href="#bug-tracker" id="toc-entry-42">Bug Tracker</a></li>
427
+ <li><a class="reference internal" href="#credits" id="toc-entry-43">Credits</a><ul>
428
+ <li><a class="reference internal" href="#authors" id="toc-entry-44">Authors</a></li>
429
+ <li><a class="reference internal" href="#contributors" id="toc-entry-45">Contributors</a></li>
430
+ <li><a class="reference internal" href="#maintainers" id="toc-entry-46">Maintainers</a></li>
427
431
  </ul>
428
432
  </li>
429
433
  </ul>
@@ -481,15 +485,25 @@ can be found on GitHub.</p>
481
485
  <div class="section" id="changelog">
482
486
  <h1><a class="toc-backref" href="#toc-entry-5">Changelog</a></h1>
483
487
  <div class="section" id="section-1">
484
- <h2><a class="toc-backref" href="#toc-entry-6">16.0.5.1.9 (2024-02-09)</a></h2>
488
+ <h2><a class="toc-backref" href="#toc-entry-6">17.0.1.0.2 (2024-11-11)</a></h2>
489
+ <div class="section" id="features">
490
+ <h3><a class="toc-backref" href="#toc-entry-7">Features</a></h3>
491
+ <ul class="simple">
492
+ <li>Add support for branch companies.
493
+ (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/648">#648</a>)</li>
494
+ </ul>
495
+ </div>
496
+ </div>
497
+ <div class="section" id="section-2">
498
+ <h2><a class="toc-backref" href="#toc-entry-8">16.0.5.1.9 (2024-02-09)</a></h2>
485
499
  <p><strong>Bugfixes</strong></p>
486
500
  <ul class="simple">
487
501
  <li>Restore compatibility with python 3.9
488
502
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/590">#590</a>)</li>
489
503
  </ul>
490
504
  </div>
491
- <div class="section" id="section-2">
492
- <h2><a class="toc-backref" href="#toc-entry-7">16.0.5.1.8 (2024-02-08)</a></h2>
505
+ <div class="section" id="section-3">
506
+ <h2><a class="toc-backref" href="#toc-entry-9">16.0.5.1.8 (2024-02-08)</a></h2>
493
507
  <p><strong>Bugfixes</strong></p>
494
508
  <ul class="simple">
495
509
  <li>Resolve a permission issue when creating report periods with a user
@@ -497,16 +511,16 @@ without admin rights.
497
511
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/596">#596</a>)</li>
498
512
  </ul>
499
513
  </div>
500
- <div class="section" id="section-3">
501
- <h2><a class="toc-backref" href="#toc-entry-8">16.0.5.1.0 (2023-04-04)</a></h2>
514
+ <div class="section" id="section-4">
515
+ <h2><a class="toc-backref" href="#toc-entry-10">16.0.5.1.0 (2023-04-04)</a></h2>
502
516
  <p><strong>Features</strong></p>
503
517
  <ul class="simple">
504
518
  <li>Improve UX by adding the option to edit the pivot date directly on
505
519
  the view.</li>
506
520
  </ul>
507
521
  </div>
508
- <div class="section" id="section-4">
509
- <h2><a class="toc-backref" href="#toc-entry-9">16.0.5.0.0 (2023-04-01)</a></h2>
522
+ <div class="section" id="section-5">
523
+ <h2><a class="toc-backref" href="#toc-entry-11">16.0.5.0.0 (2023-04-01)</a></h2>
510
524
  <p><strong>Features</strong></p>
511
525
  <ul class="simple">
512
526
  <li>Migration to 16.0<ul>
@@ -546,24 +560,24 @@ enough.</li>
546
560
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/415">#415</a>)</li>
547
561
  </ul>
548
562
  </div>
549
- <div class="section" id="section-5">
550
- <h2><a class="toc-backref" href="#toc-entry-10">15.0.4.0.5 (2022-07-19)</a></h2>
563
+ <div class="section" id="section-6">
564
+ <h2><a class="toc-backref" href="#toc-entry-12">15.0.4.0.5 (2022-07-19)</a></h2>
551
565
  <p><strong>Bugfixes</strong></p>
552
566
  <ul class="simple">
553
567
  <li>Support users without timezone.
554
568
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/388">#388</a>)</li>
555
569
  </ul>
556
570
  </div>
557
- <div class="section" id="section-6">
558
- <h2><a class="toc-backref" href="#toc-entry-11">15.0.4.0.4 (2022-07-19)</a></h2>
571
+ <div class="section" id="section-7">
572
+ <h2><a class="toc-backref" href="#toc-entry-13">15.0.4.0.4 (2022-07-19)</a></h2>
559
573
  <p><strong>Bugfixes</strong></p>
560
574
  <ul class="simple">
561
575
  <li>Allow deleting a report that has subreports.
562
576
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/431">#431</a>)</li>
563
577
  </ul>
564
578
  </div>
565
- <div class="section" id="section-7">
566
- <h2><a class="toc-backref" href="#toc-entry-12">15.0.4.0.2 (2022-02-16)</a></h2>
579
+ <div class="section" id="section-8">
580
+ <h2><a class="toc-backref" href="#toc-entry-14">15.0.4.0.2 (2022-02-16)</a></h2>
567
581
  <p><strong>Bugfixes</strong></p>
568
582
  <ul class="simple">
569
583
  <li>Fix access right issue when clicking the “Save” button on a MIS
@@ -571,8 +585,8 @@ Report Instance form.
571
585
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/410">#410</a>)</li>
572
586
  </ul>
573
587
  </div>
574
- <div class="section" id="section-8">
575
- <h2><a class="toc-backref" href="#toc-entry-13">14.0.4.0.0 (2022-01-08)</a></h2>
588
+ <div class="section" id="section-9">
589
+ <h2><a class="toc-backref" href="#toc-entry-15">14.0.4.0.0 (2022-01-08)</a></h2>
576
590
  <p><strong>Features</strong></p>
577
591
  <ul class="simple">
578
592
  <li>Remove various field size limits.
@@ -604,8 +618,8 @@ use <tt class="docutils literal">parent_state</tt>, we now remove this argument.
604
618
  </li>
605
619
  </ul>
606
620
  </div>
607
- <div class="section" id="section-9">
608
- <h2><a class="toc-backref" href="#toc-entry-14">14.0.3.6.7 (2021-06-02)</a></h2>
621
+ <div class="section" id="section-10">
622
+ <h2><a class="toc-backref" href="#toc-entry-16">14.0.3.6.7 (2021-06-02)</a></h2>
609
623
  <p><strong>Bugfixes</strong></p>
610
624
  <ul class="simple">
611
625
  <li>When on a MIS Report Instance, if you wanted to generate a new line
@@ -617,16 +631,16 @@ record solves the problem.
617
631
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/361">#361</a>)</li>
618
632
  </ul>
619
633
  </div>
620
- <div class="section" id="section-10">
621
- <h2><a class="toc-backref" href="#toc-entry-15">14.0.3.6.6 (2021-04-23)</a></h2>
634
+ <div class="section" id="section-11">
635
+ <h2><a class="toc-backref" href="#toc-entry-17">14.0.3.6.6 (2021-04-23)</a></h2>
622
636
  <p><strong>Bugfixes</strong></p>
623
637
  <ul class="simple">
624
638
  <li>Fix drilldown action name when the account model has been customized.
625
639
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/350">#350</a>)</li>
626
640
  </ul>
627
641
  </div>
628
- <div class="section" id="section-11">
629
- <h2><a class="toc-backref" href="#toc-entry-16">14.0.3.6.5 (2021-04-23)</a></h2>
642
+ <div class="section" id="section-12">
643
+ <h2><a class="toc-backref" href="#toc-entry-18">14.0.3.6.5 (2021-04-23)</a></h2>
630
644
  <p><strong>Bugfixes</strong></p>
631
645
  <ul class="simple">
632
646
  <li>While duplicating a MIS report instance, comparison columns are
@@ -635,8 +649,8 @@ old source_cmpcol_from_id and source_cmpcol_to_id from the original
635
649
  record. (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/343">#343</a>)</li>
636
650
  </ul>
637
651
  </div>
638
- <div class="section" id="section-12">
639
- <h2><a class="toc-backref" href="#toc-entry-17">14.0.3.6.4 (2021-04-06)</a></h2>
652
+ <div class="section" id="section-13">
653
+ <h2><a class="toc-backref" href="#toc-entry-19">14.0.3.6.4 (2021-04-06)</a></h2>
640
654
  <p><strong>Features</strong></p>
641
655
  <ul class="simple">
642
656
  <li>The drilldown action name displayed on the breadcrumb has been
@@ -648,8 +662,8 @@ interactive view.
648
662
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/320">#320</a>)</li>
649
663
  </ul>
650
664
  </div>
651
- <div class="section" id="section-13">
652
- <h2><a class="toc-backref" href="#toc-entry-18">13.0.3.6.3 (2020-08-28)</a></h2>
665
+ <div class="section" id="section-14">
666
+ <h2><a class="toc-backref" href="#toc-entry-20">13.0.3.6.3 (2020-08-28)</a></h2>
653
667
  <p><strong>Bugfixes</strong></p>
654
668
  <ul class="simple">
655
669
  <li>Having a “Compare columns” added on a KPI with an associated style
@@ -663,8 +677,8 @@ the percentages when exporting to XLSX.
663
677
  <a class="reference external" href="https://github.com/OCA/mis-builder/issues/296">#296</a></li>
664
678
  </ul>
665
679
  </div>
666
- <div class="section" id="section-14">
667
- <h2><a class="toc-backref" href="#toc-entry-19">13.0.3.6.2 (2020-04-22)</a></h2>
680
+ <div class="section" id="section-15">
681
+ <h2><a class="toc-backref" href="#toc-entry-21">13.0.3.6.2 (2020-04-22)</a></h2>
668
682
  <p><strong>Bugfixes</strong></p>
669
683
  <ul class="simple">
670
684
  <li>The “Settings” button is now displayed for users with the “Show full
@@ -672,8 +686,8 @@ accounting features” right when previewing a report.
672
686
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/281">#281</a>)</li>
673
687
  </ul>
674
688
  </div>
675
- <div class="section" id="section-15">
676
- <h2><a class="toc-backref" href="#toc-entry-20">13.0.3.6.1 (2020-04-22)</a></h2>
689
+ <div class="section" id="section-16">
690
+ <h2><a class="toc-backref" href="#toc-entry-22">13.0.3.6.1 (2020-04-22)</a></h2>
677
691
  <p><strong>Bugfixes</strong></p>
678
692
  <ul class="simple">
679
693
  <li>Fix <tt class="docutils literal">TypeError: 'module' object is not iterable</tt> when using budgets
@@ -681,8 +695,8 @@ by account.
681
695
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/276">#276</a>)</li>
682
696
  </ul>
683
697
  </div>
684
- <div class="section" id="section-16">
685
- <h2><a class="toc-backref" href="#toc-entry-21">13.0.3.6.0 (2020-03-28)</a></h2>
698
+ <div class="section" id="section-17">
699
+ <h2><a class="toc-backref" href="#toc-entry-23">13.0.3.6.0 (2020-03-28)</a></h2>
686
700
  <p><strong>Features</strong></p>
687
701
  <ul class="simple">
688
702
  <li>Add column-level filters on analytic account and analytic tags. These
@@ -700,12 +714,12 @@ balance_sheet.total_assets).
700
714
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/155">#155</a>)</li>
701
715
  </ul>
702
716
  </div>
703
- <div class="section" id="section-17">
704
- <h2><a class="toc-backref" href="#toc-entry-22">13.0.3.5.0 (2020-01-??)</a></h2>
717
+ <div class="section" id="section-18">
718
+ <h2><a class="toc-backref" href="#toc-entry-24">13.0.3.5.0 (2020-01-??)</a></h2>
705
719
  <p>Migration to odoo 13.0.</p>
706
720
  </div>
707
- <div class="section" id="section-18">
708
- <h2><a class="toc-backref" href="#toc-entry-23">12.0.3.5.0 (2019-10-26)</a></h2>
721
+ <div class="section" id="section-19">
722
+ <h2><a class="toc-backref" href="#toc-entry-25">12.0.3.5.0 (2019-10-26)</a></h2>
709
723
  <p><strong>Features</strong></p>
710
724
  <ul class="simple">
711
725
  <li>The <tt class="docutils literal">account_id</tt> field of the model selected in ‘Move lines source’
@@ -744,8 +758,8 @@ replacing it with %.
744
758
  (<a class="reference external" href="https://github.com/oca/mis-builder/issues/220">#220</a>)</li>
745
759
  </ul>
746
760
  </div>
747
- <div class="section" id="section-19">
748
- <h2><a class="toc-backref" href="#toc-entry-24">12.0.3.4.0 (2019-07-09)</a></h2>
761
+ <div class="section" id="section-20">
762
+ <h2><a class="toc-backref" href="#toc-entry-26">12.0.3.4.0 (2019-07-09)</a></h2>
749
763
  <p><strong>Features</strong></p>
750
764
  <ul class="simple">
751
765
  <li>New year-to-date mode for defining periods.
@@ -769,8 +783,8 @@ non-multi expressions yield tuples of incorrect lenght.
769
783
  (<a class="reference external" href="https://github.com/oca/mis-builder/issues/192">#192</a>)</li>
770
784
  </ul>
771
785
  </div>
772
- <div class="section" id="section-20">
773
- <h2><a class="toc-backref" href="#toc-entry-25">12.0.3.3.0 (2019-01-26)</a></h2>
786
+ <div class="section" id="section-21">
787
+ <h2><a class="toc-backref" href="#toc-entry-27">12.0.3.3.0 (2019-01-26)</a></h2>
774
788
  <p><strong>Features</strong></p>
775
789
  <p><em>Dynamic analytic filters in report preview are not yet available in 11,
776
790
  this requires an update to the JS widget that proved difficult to
@@ -820,8 +834,8 @@ inherit” is checked, as for all other syle elements.
820
834
  analytic filters, the underlying model must now have an
821
835
  <tt class="docutils literal">analytic_account_id</tt> field.</p>
822
836
  </div>
823
- <div class="section" id="section-21">
824
- <h2><a class="toc-backref" href="#toc-entry-26">11.0.3.2.2 (2018-06-30)</a></h2>
837
+ <div class="section" id="section-22">
838
+ <h2><a class="toc-backref" href="#toc-entry-28">11.0.3.2.2 (2018-06-30)</a></h2>
825
839
  <ul class="simple">
826
840
  <li>[FIX] Fix bug in company_default_get call returning id instead of
827
841
  recordset (<a class="reference external" href="https://github.com/OCA/mis-builder/pull/103">#103</a>)</li>
@@ -830,16 +844,16 @@ that serve as basis for other formulas, but do not need to be
830
844
  displayed). (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/46">#46</a>)</li>
831
845
  </ul>
832
846
  </div>
833
- <div class="section" id="section-22">
834
- <h2><a class="toc-backref" href="#toc-entry-27">11.0.3.2.1 (2018-05-29)</a></h2>
847
+ <div class="section" id="section-23">
848
+ <h2><a class="toc-backref" href="#toc-entry-29">11.0.3.2.1 (2018-05-29)</a></h2>
835
849
  <ul class="simple">
836
850
  <li>[FIX] Missing comparison operator for AccountingNone leading to
837
851
  errors in pbal computations
838
852
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issue/93">#93</a>)</li>
839
853
  </ul>
840
854
  </div>
841
- <div class="section" id="section-23">
842
- <h2><a class="toc-backref" href="#toc-entry-28">10.0.3.2.0 (2018-05-02)</a></h2>
855
+ <div class="section" id="section-24">
856
+ <h2><a class="toc-backref" href="#toc-entry-30">10.0.3.2.0 (2018-05-02)</a></h2>
843
857
  <ul class="simple">
844
858
  <li>[FIX] make subkpi ordering deterministic
845
859
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/71">#71</a>)</li>
@@ -853,13 +867,13 @@ resp positive balances)
853
867
  (<a class="reference external" href="https://github.com/OCA/mis-builder/issues/86">#86</a>)</li>
854
868
  </ul>
855
869
  </div>
856
- <div class="section" id="section-24">
857
- <h2><a class="toc-backref" href="#toc-entry-29">11.0.3.1.2 (2018-02-04)</a></h2>
870
+ <div class="section" id="section-25">
871
+ <h2><a class="toc-backref" href="#toc-entry-31">11.0.3.1.2 (2018-02-04)</a></h2>
858
872
  <p>Migration to Odoo 11. No new feature.
859
873
  (<a class="reference external" href="https://github.com/OCA/mis-builder/pull/67">#67</a>)</p>
860
874
  </div>
861
- <div class="section" id="section-25">
862
- <h2><a class="toc-backref" href="#toc-entry-30">10.0.3.1.1 (2017-11-14)</a></h2>
875
+ <div class="section" id="section-26">
876
+ <h2><a class="toc-backref" href="#toc-entry-32">10.0.3.1.1 (2017-11-14)</a></h2>
863
877
  <p>New features:</p>
864
878
  <ul class="simple">
865
879
  <li>[ADD] month and year relative periods, easier to use than date ranges
@@ -896,24 +910,24 @@ created (not yet saved) report instances.
896
910
  <li>Alternative move line data sources must have a company_id field.</li>
897
911
  </ul>
898
912
  </div>
899
- <div class="section" id="section-26">
900
- <h2><a class="toc-backref" href="#toc-entry-31">10.0.3.0.4 (2017-10-14)</a></h2>
913
+ <div class="section" id="section-27">
914
+ <h2><a class="toc-backref" href="#toc-entry-33">10.0.3.0.4 (2017-10-14)</a></h2>
901
915
  <p>Bug fix:</p>
902
916
  <ul class="simple">
903
917
  <li>[FIX] issue with initial balance rounding.
904
918
  <a class="reference external" href="https://github.com/OCA/mis-builder/issues/30">#30</a></li>
905
919
  </ul>
906
920
  </div>
907
- <div class="section" id="section-27">
908
- <h2><a class="toc-backref" href="#toc-entry-32">10.0.3.0.3 (2017-10-03)</a></h2>
921
+ <div class="section" id="section-28">
922
+ <h2><a class="toc-backref" href="#toc-entry-34">10.0.3.0.3 (2017-10-03)</a></h2>
909
923
  <p>Bug fix:</p>
910
924
  <ul class="simple">
911
925
  <li>[FIX] fix error saving KPI on newly created reports.
912
926
  <a class="reference external" href="https://github.com/OCA/mis-builder/issues/18">#18</a></li>
913
927
  </ul>
914
928
  </div>
915
- <div class="section" id="section-28">
916
- <h2><a class="toc-backref" href="#toc-entry-33">10.0.3.0.2 (2017-10-01)</a></h2>
929
+ <div class="section" id="section-29">
930
+ <h2><a class="toc-backref" href="#toc-entry-35">10.0.3.0.2 (2017-10-01)</a></h2>
917
931
  <p>New features:</p>
918
932
  <ul class="simple">
919
933
  <li>[ADD] Alternative move line source per report column. This makes mis
@@ -958,7 +972,7 @@ user</li>
958
972
  </ul>
959
973
  </div>
960
974
  <div class="section" id="unreleased">
961
- <h2><a class="toc-backref" href="#toc-entry-34">10.0.2.0.3 (unreleased)</a></h2>
975
+ <h2><a class="toc-backref" href="#toc-entry-36">10.0.2.0.3 (unreleased)</a></h2>
962
976
  <ul class="simple">
963
977
  <li>[IMP] more robust behaviour in presence of missing expressions</li>
964
978
  <li>[FIX] indent style</li>
@@ -970,24 +984,24 @@ generating reports with no objects</li>
970
984
  <li>[IMP] provide full access to mis builder style for group Adviser.</li>
971
985
  </ul>
972
986
  </div>
973
- <div class="section" id="section-29">
974
- <h2><a class="toc-backref" href="#toc-entry-35">9.0.2.0.2 (2016-09-27)</a></h2>
987
+ <div class="section" id="section-30">
988
+ <h2><a class="toc-backref" href="#toc-entry-37">9.0.2.0.2 (2016-09-27)</a></h2>
975
989
  <ul class="simple">
976
990
  <li>[IMP] Add refresh button in mis report preview.</li>
977
991
  <li>[IMP] Widget code changes to allow to add fields in the widget more
978
992
  easily.</li>
979
993
  </ul>
980
994
  </div>
981
- <div class="section" id="section-30">
982
- <h2><a class="toc-backref" href="#toc-entry-36">9.0.2.0.1 (2016-05-26)</a></h2>
995
+ <div class="section" id="section-31">
996
+ <h2><a class="toc-backref" href="#toc-entry-38">9.0.2.0.1 (2016-05-26)</a></h2>
983
997
  <ul class="simple">
984
998
  <li>[IMP] remove unused argument in declare_and_compute_period() for a
985
999
  cleaner API. This is a breaking API changing merged in urgency before
986
1000
  it is used by other modules.</li>
987
1001
  </ul>
988
1002
  </div>
989
- <div class="section" id="section-31">
990
- <h2><a class="toc-backref" href="#toc-entry-37">9.0.2.0.0 (2016-05-24)</a></h2>
1003
+ <div class="section" id="section-32">
1004
+ <h2><a class="toc-backref" href="#toc-entry-39">9.0.2.0.0 (2016-05-24)</a></h2>
991
1005
  <p>Part of the work for this release has been done at the Sorrento sprint
992
1006
  April 26-29, 2016. The rest (ie a major refactoring) has been done in
993
1007
  the weeks after.</p>
@@ -1036,8 +1050,8 @@ more flexible alternative to fiscal periods</li>
1036
1050
  consolidation accounts have been removed</li>
1037
1051
  </ul>
1038
1052
  </div>
1039
- <div class="section" id="section-32">
1040
- <h2><a class="toc-backref" href="#toc-entry-38">8.0.1.0.0 (2016-04-27)</a></h2>
1053
+ <div class="section" id="section-33">
1054
+ <h2><a class="toc-backref" href="#toc-entry-40">8.0.1.0.0 (2016-04-27)</a></h2>
1041
1055
  <ul class="simple">
1042
1056
  <li>The copy of a MIS Report Instance now copies period.
1043
1057
  <a class="reference external" href="https://github.com/OCA/account-financial-reporting/pull/181">https://github.com/OCA/account-financial-reporting/pull/181</a></li>
@@ -1061,13 +1075,13 @@ value). <a class="reference external" href="https://github.com/OCA/account-finan
1061
1075
  <a class="reference external" href="https://github.com/OCA/account-financial-reporting/pull/131">https://github.com/OCA/account-financial-reporting/pull/131</a></li>
1062
1076
  </ul>
1063
1077
  </div>
1064
- <div class="section" id="section-33">
1065
- <h2><a class="toc-backref" href="#toc-entry-39">8.0.0.2.0</a></h2>
1078
+ <div class="section" id="section-34">
1079
+ <h2><a class="toc-backref" href="#toc-entry-41">8.0.0.2.0</a></h2>
1066
1080
  <p>Pre-history. Or rather, you need to look at the git log.</p>
1067
1081
  </div>
1068
1082
  </div>
1069
1083
  <div class="section" id="bug-tracker">
1070
- <h1><a class="toc-backref" href="#toc-entry-40">Bug Tracker</a></h1>
1084
+ <h1><a class="toc-backref" href="#toc-entry-42">Bug Tracker</a></h1>
1071
1085
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/mis-builder/issues">GitHub Issues</a>.
1072
1086
  In case of trouble, please check there if your issue has already been reported.
1073
1087
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -1075,15 +1089,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
1075
1089
  <p>Do not contact contributors directly about support or help with technical issues.</p>
1076
1090
  </div>
1077
1091
  <div class="section" id="credits">
1078
- <h1><a class="toc-backref" href="#toc-entry-41">Credits</a></h1>
1092
+ <h1><a class="toc-backref" href="#toc-entry-43">Credits</a></h1>
1079
1093
  <div class="section" id="authors">
1080
- <h2><a class="toc-backref" href="#toc-entry-42">Authors</a></h2>
1094
+ <h2><a class="toc-backref" href="#toc-entry-44">Authors</a></h2>
1081
1095
  <ul class="simple">
1082
1096
  <li>ACSONE SA/NV</li>
1083
1097
  </ul>
1084
1098
  </div>
1085
1099
  <div class="section" id="contributors">
1086
- <h2><a class="toc-backref" href="#toc-entry-43">Contributors</a></h2>
1100
+ <h2><a class="toc-backref" href="#toc-entry-45">Contributors</a></h2>
1087
1101
  <ul class="simple">
1088
1102
  <li>Stéphane Bidoul &lt;<a class="reference external" href="mailto:stephane.bidoul&#64;acsone.eu">stephane.bidoul&#64;acsone.eu</a>&gt;</li>
1089
1103
  <li>Laetitia Gangloff &lt;<a class="reference external" href="mailto:laetitia.gangloff&#64;acsone.eu">laetitia.gangloff&#64;acsone.eu</a>&gt;</li>
@@ -1117,7 +1131,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
1117
1131
  </ul>
1118
1132
  </div>
1119
1133
  <div class="section" id="maintainers">
1120
- <h2><a class="toc-backref" href="#toc-entry-44">Maintainers</a></h2>
1134
+ <h2><a class="toc-backref" href="#toc-entry-46">Maintainers</a></h2>
1121
1135
  <p>This module is maintained by the OCA.</p>
1122
1136
  <a class="reference external image-reference" href="https://odoo-community.org">
1123
1137
  <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@@ -410,3 +410,28 @@ class TestAEP(common.TransactionCase):
410
410
  datetime.date(self.prev_year, 12, 1),
411
411
  )
412
412
  assert "Error while querying move line source" in str(cm.exception)
413
+
414
+ def test_aep_branch(self):
415
+ # create branch
416
+ self.branch = self.res_company.create(
417
+ {
418
+ "name": "AEP Branch",
419
+ "parent_id": self.company.id,
420
+ }
421
+ )
422
+ # create branch move in March this year
423
+ branch_move = self._create_move(
424
+ date=datetime.date(self.curr_year, 3, 1),
425
+ amount=50,
426
+ debit_acc=self.account_ar,
427
+ credit_acc=self.account_in,
428
+ )
429
+ branch_move.company_id = self.branch
430
+ self.aep = AEP(self.company | self.branch)
431
+ self.aep.parse_expr("balp[]")
432
+ self.aep.done_parsing()
433
+ self._do_queries(
434
+ datetime.date(self.curr_year, 3, 1), datetime.date(self.curr_year, 3, 31)
435
+ )
436
+ variation = self._eval_by_account_id("balp[]")
437
+ self.assertEqual(variation, {self.account_ar.id: 550, self.account_in.id: -550})
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-mis_builder
3
- Version: 17.0.1.0.0.7
3
+ Version: 17.0.1.0.2
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-date_range>=17.0dev,<17.1dev
6
6
  Requires-Dist: odoo-addon-report_xlsx>=17.0dev,<17.1dev
@@ -25,7 +25,7 @@ MIS Builder
25
25
  !! This file is generated by oca-gen-addon-readme !!
26
26
  !! changes will be overwritten. !!
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
- !! source digest: sha256:f8989a4fefbc9688a39969027c326e5999fc1eff237716e8dbe5d54550584837
28
+ !! source digest: sha256:54076b45673a7d1ffd748cf064f7394098d0ba3520fe43985ea4e3cda74772ba
29
29
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
30
30
 
31
31
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -118,6 +118,15 @@ can be found on GitHub.
118
118
  Changelog
119
119
  =========
120
120
 
121
+ 17.0.1.0.2 (2024-11-11)
122
+ -----------------------
123
+
124
+ Features
125
+ ~~~~~~~~
126
+
127
+ - Add support for branch companies.
128
+ (`#648 <https://github.com/OCA/mis-builder/issues/648>`__)
129
+
121
130
  16.0.5.1.9 (2024-02-09)
122
131
  -----------------------
123
132
 
@@ -1,6 +1,6 @@
1
- odoo/addons/mis_builder/README.rst,sha256=-KLM2dSVzPywFwAyi8YeohrXu2PZsjnBF4gY5mASKno,30280
1
+ odoo/addons/mis_builder/README.rst,sha256=1vK110G6qhvHAQqbaPAhLVAeUfglIT2DgQ7rG9hry_4,30448
2
2
  odoo/addons/mis_builder/__init__.py,sha256=-8wG-57WxKfMMA5_TFzpubBcfthcsAP5vjTkhXKf7ds,185
3
- odoo/addons/mis_builder/__manifest__.py,sha256=gwXBF25wFSiUgmPSJHvyKqnTQbUlZvhnbld6yfWa6fs,1556
3
+ odoo/addons/mis_builder/__manifest__.py,sha256=l38xBJwg5kbu5F1fq94PaxQg_RaYRwqOFURJSJOqcIc,1556
4
4
  odoo/addons/mis_builder/datas/ir_cron.xml,sha256=H5nnz-4CqZPVveJdRoJ_DrBOOsihK4XwOjWcSMYv68A,558
5
5
  odoo/addons/mis_builder/i18n/ca.po,sha256=tnO27zu_QCTgIEJx90e2u83wjSD0q9sirIgglS7ELt0,90543
6
6
  odoo/addons/mis_builder/i18n/de.po,sha256=zITcHR6Mrg_JTOvqaUP642fF_uJe_9Yh63-JCnXaxGw,64061
@@ -20,14 +20,14 @@ odoo/addons/mis_builder/i18n/tr.po,sha256=QyJxnmYQnFefKPJ7ZOY5V8LjCEzduSIAooggJs
20
20
  odoo/addons/mis_builder/i18n/zh_CN.po,sha256=afFVK3VNrxBpcIeTXOFSxzpTHIvsYbgFbOgazALLn5o,71008
21
21
  odoo/addons/mis_builder/models/__init__.py,sha256=_h9tbt-H0JjtHL6kI7-wiEnd5u2qkP855DevyjxLBbI,331
22
22
  odoo/addons/mis_builder/models/accounting_none.py,sha256=6EE6x4slUbyP2TVnHpilsWu8XqWhGZMt79uBOmNLcVs,4156
23
- odoo/addons/mis_builder/models/aep.py,sha256=VJo55AUyWrYooUV6nmhy6nVvAwaxF_4HxQmp42kXCMI,22492
23
+ odoo/addons/mis_builder/models/aep.py,sha256=nk706Bo0bjhgSfISh6BfXLtZMOJB759xQtDGipyBxoY,22692
24
24
  odoo/addons/mis_builder/models/aggregate.py,sha256=jLULkhMPh4FBJ9T8Al2Qf9uUwBjhS5t8W2J2tRrYQAA,2860
25
25
  odoo/addons/mis_builder/models/data_error.py,sha256=ltTIrFCbsxYXmdPTVFVJj3ejZxyc83NEsIFQs2s3-L0,442
26
26
  odoo/addons/mis_builder/models/expression_evaluator.py,sha256=bMCqqVwQ3_8JED2ddZPAaUz0jWaYRK1VcjYp9DXm_Kk,2458
27
27
  odoo/addons/mis_builder/models/kpimatrix.py,sha256=daXS0k2VHLJO3_0cBcSQUBuJrvBBPxwnDJkXHTgvzFM,19852
28
28
  odoo/addons/mis_builder/models/mis_kpi_data.py,sha256=hN6W8C80CxtoDwQzs4BLsnc401tVPA1-bKEVuuQQva8,4124
29
29
  odoo/addons/mis_builder/models/mis_report.py,sha256=N5LwMRTlBJfjqpEzRmzJKyihbTCbGN38DlxMjfYtVDc,37696
30
- odoo/addons/mis_builder/models/mis_report_instance.py,sha256=QOmyxrFEfpjWVGX3aYoYh2rGTXAmcFXegIWcJaX6U-o,36609
30
+ odoo/addons/mis_builder/models/mis_report_instance.py,sha256=NQ8vfq-Le8KnSinBzbLQLZH2-Wnz6S3OQXrRa07DIVY,36646
31
31
  odoo/addons/mis_builder/models/mis_report_style.py,sha256=rSv2UlUPpFmRC1nnWICfSuMaog93M0xbZRTPwSZoy4U,10591
32
32
  odoo/addons/mis_builder/models/mis_report_subreport.py,sha256=FAGXqbc2XWRAwnRNndBnyemdQE7UtUJ7akTJIn6DM7g,2102
33
33
  odoo/addons/mis_builder/models/mis_safe_eval.py,sha256=F2Xgtmy-gHDvstzq4_yi5BtdWBgyxjpta5fHG2NxRTI,1061
@@ -36,7 +36,7 @@ odoo/addons/mis_builder/models/simple_array.py,sha256=wEgxZexbMs1mYirZJEVep0-8cG
36
36
  odoo/addons/mis_builder/readme/CONTRIBUTORS.md,sha256=Co86FA4bZ4BAMXVJDFQD6Ty9vbSg9VvCfK8LUfG14Wg,1355
37
37
  odoo/addons/mis_builder/readme/DESCRIPTION.md,sha256=Ez1CGiDNh1Q33Rz3r-r6OgwXpAPoPyhRU3sicGcJylE,334
38
38
  odoo/addons/mis_builder/readme/DEVELOP.md,sha256=yxt3R0Rkr9qLW4SVVCbrxKMXLclXty90mX8TUMftSVY,464
39
- odoo/addons/mis_builder/readme/HISTORY.md,sha256=o0PyFhMfPmMNMSjMTW_vXeBg4BBJreJXXgd3aR9TMzE,22499
39
+ odoo/addons/mis_builder/readme/HISTORY.md,sha256=9ujicjmOGj7NNHWolwiS_bkIJTLBHhpujFu8HMojL6k,22635
40
40
  odoo/addons/mis_builder/readme/INSTALL.md,sha256=PyTqVPs_5SuiPXEEU-iJbfiKqDUoGYqjzBtpTTNTC20,285
41
41
  odoo/addons/mis_builder/readme/ROADMAP.md,sha256=ljHrud2BlUFK320R6LKkvA-sTVvny_pkrPLBu7qmJVk,233
42
42
  odoo/addons/mis_builder/readme/USAGE.md,sha256=aYM9YOMU-gz50eEkFcbN5OZGS9rEiCqJfXrO637gz2o,918
@@ -52,7 +52,7 @@ odoo/addons/mis_builder/static/description/ex_report_preview.png,sha256=NKBRn70E
52
52
  odoo/addons/mis_builder/static/description/ex_report_settings.png,sha256=T7j_3DUUtdZ6XKsAvJ3uKsK_-GtRl0sRPD68ZOa6ebA,103790
53
53
  odoo/addons/mis_builder/static/description/ex_report_template.png,sha256=c8KgzyGD5QiZNCmxaVR4u3h1K0TJN50uXZWoNsieN8A,100278
54
54
  odoo/addons/mis_builder/static/description/icon.png,sha256=0OCahdqDvaS_CHV97ZCbajW0_AcBLVVvja_EJA2mC6s,4770
55
- odoo/addons/mis_builder/static/description/index.html,sha256=DigOnfrQSPBUVC13hE5eo4KyShQGhWqXeBR2uUrz3RI,56011
55
+ odoo/addons/mis_builder/static/description/index.html,sha256=_ZAZjqTxy-nIg6-81OLOqiYxsR9U-X6GDwqZDs9LvUY,56611
56
56
  odoo/addons/mis_builder/static/src/components/mis_report_widget.css,sha256=ew7iozGAv9ue3KPf_8qA_AhHlNGis7pJu8A7tc6CO4Y,1198
57
57
  odoo/addons/mis_builder/static/src/components/mis_report_widget.esm.js,sha256=RmXA9UKreBrKOT4RxjCumskqZMV0O8p4NiWD3ereCOg,5529
58
58
  odoo/addons/mis_builder/static/src/components/mis_report_widget.xml,sha256=mKgFff56wLRgJzq8Cdc9oZVajkTY73u_S1S0-Z-oHhQ,5648
@@ -61,7 +61,7 @@ odoo/addons/mis_builder/tests/__init__.py,sha256=ilgojed90T4NL_YXgVf3CACd8fo7nxp
61
61
  odoo/addons/mis_builder/tests/common.py,sha256=7LqnpPyJ8yOi5gA4CwiKZaep6NGY_vIDnK36u8WVC1o,1918
62
62
  odoo/addons/mis_builder/tests/fake_models.py,sha256=DWJsXiIVVXZwXfLQ-9TmUs3eM5KBCXibS2qRXgkFt1c,177
63
63
  odoo/addons/mis_builder/tests/test_accounting_none.py,sha256=satnhbRuI4DdWIOpe-mG7sW9KlamgnyvoVaPQlqZ9FA,239
64
- odoo/addons/mis_builder/tests/test_aep.py,sha256=ItDcHQ0jvho8afe1guUpluQ7aqsahk_7X7-FNwWhDHg,16269
64
+ odoo/addons/mis_builder/tests/test_aep.py,sha256=P37S57PbQMBSWtKy3YgmBLL56l_rIx5Fybeg_cvUOto,17181
65
65
  odoo/addons/mis_builder/tests/test_aggregate.py,sha256=ZXEVW0hMZYUIJM6ikQpmBH9Xc9TaY46xYbBsH8vcXDQ,226
66
66
  odoo/addons/mis_builder/tests/test_data_sources.py,sha256=ao0FFFxvgvDfGZJzQ_ErTIRc8HM9JD_-8nr8OGeSu_g,7461
67
67
  odoo/addons/mis_builder/tests/test_kpi_data.py,sha256=PrgfJIkrw5liJ8InLoXCGXMD-uc7y23J-7R-UYxWIO8,4860
@@ -80,7 +80,7 @@ odoo/addons/mis_builder/views/mis_report_style.xml,sha256=5cK60KTio96_roE0Xcm91W
80
80
  odoo/addons/mis_builder/wizard/__init__.py,sha256=qlc_LcwA6U3Wgv-qC9uacPjZXV3jShrV_RBiuKCBNPA,158
81
81
  odoo/addons/mis_builder/wizard/mis_builder_dashboard.py,sha256=DIas3iie9fb2WzJ2eGcrVc7y64IuRyxSG7tJrcV-53g,3404
82
82
  odoo/addons/mis_builder/wizard/mis_builder_dashboard.xml,sha256=ArG86hdyRWm531nK0hYU-j1N87yXtpDVpSuKTmOB47I,1440
83
- odoo_addon_mis_builder-17.0.1.0.0.7.dist-info/METADATA,sha256=oYLMlCdhr0B_aa2B8XWi7oWuiQxUIKmPiMny7w6mTZ4,30996
84
- odoo_addon_mis_builder-17.0.1.0.0.7.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
85
- odoo_addon_mis_builder-17.0.1.0.0.7.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
86
- odoo_addon_mis_builder-17.0.1.0.0.7.dist-info/RECORD,,
83
+ odoo_addon_mis_builder-17.0.1.0.2.dist-info/METADATA,sha256=8esWk7ejZeSexTCDs32RecjW9nTkh2YiFxOn-VYc7mQ,31162
84
+ odoo_addon_mis_builder-17.0.1.0.2.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
85
+ odoo_addon_mis_builder-17.0.1.0.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
86
+ odoo_addon_mis_builder-17.0.1.0.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: Whool 1.0.1
2
+ Generator: Whool 1.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5