Skip to content

Commit

Permalink
test for 405_baseclass
Browse files Browse the repository at this point in the history
  • Loading branch information
domi4484 committed Jul 29, 2024
1 parent 02434f1 commit 369e6e1
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2854,16 +2854,20 @@ def base_common(self, row, type_name):
"t_type": type_name,
"t_id": self.get_tid(row),
}
if self.current_basket:
base["t_basket"] = self.current_basket.t_id
# if self.current_basket:
# base["t_basket"] = self.current_basket.t_id

return base

def sia_405_base_common(self, row, type_name):
return {
base = {
**self.base_common(row, type_name),
"letzte_aenderung": row.last_modification,
}
if self.current_basket:
base["t_basket_sia405_baseclass"] = self.current_basket.t_id

return base

def vsa_base_common(self, row, type_name):
"""
Expand Down

0 comments on commit 369e6e1

Please sign in to comment.