Changeset 9194


Ignore:
Timestamp:
17 Sep 2012, 08:06:47 (12 years ago)
Author:
Henrik Bettermann
Message:

Add converter for boolean.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/tools/fix_import_file.py

    r9160 r9194  
    102102    'type': 'company',
    103103    'date': 'date',
     104    'core_or_elective': 'bool',
    104105    'category': 'p_category',
    105106    'reg_transition': 'reg_state',  # we completely change this column,
     
    205206        """
    206207        if len(value) == 7:
    207             return 'B' + value
     208            return 'K' + value
    208209        return value
    209210
     
    324325        if value == 'True':
    325326            return 'yes'
     327        return
     328
     329    @classmethod
     330    def bool(self, value, row):
     331        """ True --> 1
     332        """
     333        if value in ('TRUE', 'True'):
     334            return '1'
     335        elif value in ('FALSE', 'False'):
     336            return '0'
    326337        return
    327338
Note: See TracChangeset for help on using the changeset viewer.