Skip to content

Commit

Permalink
fix in rdi import
Browse files Browse the repository at this point in the history
  • Loading branch information
pkujawa committed Aug 20, 2024
1 parent adbb7e7 commit e35ca76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ def handle_pdu_fields(self, row: list[Any], header: list[Any], individual: Pendi
collection_date_cell = row_dict.get(column_collection_date)
subtype = flexible_attribute.pdu_data.subtype
handle_subtype = handle_subtype_mapping[subtype]
value = handle_subtype(value_cell)
value = handle_subtype(value_cell, is_flex_field=True)
if not collection_date_cell.value:
collection_date = self.registration_data_import.created_at.date()
else:
Expand Down

0 comments on commit e35ca76

Please sign in to comment.