Skip to content

Commit

Permalink
Merge pull request #640 from gisce/fix-b2_2-no-fus_at
Browse files Browse the repository at this point in the history
B2.2: Se añade el filtro que no sean del tipo FUS_AT
  • Loading branch information
ecarreras authored Apr 4, 2024
2 parents 0df500f + b018f2e commit 1c356d1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libcnmc/cir_8_2021/FB2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ def get_sequence(self):
:return: None
"""
cella_obj = self.connection.GiscedataCellesCella
search_params = [('cini', '=like', 'I28%')]
search_params = [
('cini', '=like', 'I28%'),
("tipus_element.codi", "!=", "FUS_AT")
]

data_pm = '{}-01-01'.format(self.year + 1)
data_baixa = '{}-12-31'.format(self.year)
Expand Down

0 comments on commit 1c356d1

Please sign in to comment.