functions/source/job-creation/job_creation.py [348:362]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        count = 0
        collection_date = ''
        for index in dataframe.index:

            if collection_date == dataframe.loc[index, 'collection_dt_tm']:
                count += 1
            else:
                count = 1
            collection_date = dataframe.loc[index, 'collection_dt_tm']

            collection_count = '{collection_date}_{number}'.format(
                collection_date=pd.to_datetime(dataframe.loc[
                    index, 'collection_dt_tm']).strftime('%Y-%m-%d'),
                number=count,
                )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



functions/source/loop/loop_lambda.py [317:330]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            count = 0
            collection_date = ''
            for index in dataframe.index:
                if collection_date == dataframe.loc[index, 'collection_dt_tm']:
                    count += 1
                else:
                    count = 1
                collection_date = dataframe.loc[index, 'collection_dt_tm']

                collection_count = '{collection_date}_{number}'.format(
                    collection_date=pd.to_datetime(dataframe.loc[
                        index, 'collection_dt_tm']).strftime('%Y-%m-%d'),
                    number=count,
                    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



