Skip to content

Commit

Permalink
B2.2: Se añade el filtro que no sean del tipo FUS_AT
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarreras committed Apr 4, 2024
1 parent 0df500f commit b018f2e
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 b018f2e

Please sign in to comment.