Esempio n. 1
0
def securityapp(file):
    
    start = datetime.strptime('05:15:00', '%H:%M:%S').time()
            end = datetime.strptime('11:45:00', '%H:%M:%S').time()

            files = request.files.getlist('securityfileinputFile[]')
            #os.chdir('/Users/mobile/Dropbox/BACK OFFICE SECURITY FILE/')
            #print(os.getcwd())
            #FileList = glob.glob('*.rtf')
            #print(FileList)

            newdf = []

            for file in files:
                inputfilename = file
                excel_file = inputfilename
                store_number = file
                a = str(store_number)
                print(a)
                b = re.search('\d+', a).group()
                print(b)
                print(store_number)

                df = pd.read_csv(excel_file, sep='\t', header=None)
                df.columns = ['Text']
                print(df.dtypes)
                print(df.head)

                df2 = df[df['Text'].str.contains('Pump', na=False)].copy()
                print(df2)

                if df2.empty:
                    continue

                df2['Time'] = df2['Text'].str.extract('(..:..:..)', expand=True)
                df2['Time'] = pd.to_datetime(
                    df2['Time'], format='%H:%M:%S').dt.time
                df2 = df2[df2['Time'].between(start, end)]

                df2['Date'] = df2['Text'].str.slice(start=0, stop=9)
                df2['Date'] = pd.to_datetime(
                    df2['Date'], format='%d %b %y').dt.date
                #df2['Date']=df2['Date'].datetime.strptime(b1, "%d %m %y").strftime("%b-%Y")

                df2['Store'] = b
                print(df2)
                newdf.append(df2)

            newdf = pd.concat(newdf)
Esempio n. 2
0
def securityfileupload():

    if request.method == "POST":

        start = datetime.strptime('05:15:00', '%H:%M:%S').time()
        end = datetime.strptime('11:45:00', '%H:%M:%S').time()

        files = request.files.getlist('securityfileinputFile[]')
        newdf = []

        for file in files:
            inputfilename = file
            excel_file = inputfilename
            store_number = file
            a = str(store_number)
            b = re.search('\d+', a).group()
            df = pd.read_csv(excel_file, sep='\t', header=None)
            df.columns = ['Text']

            #use regular expresssions re to find character sets in a string of data
            #in a dataframe

            df['Date'] = df['Text'].str.extract(
                r"([\d]{1,2} [ADJFMNOS]\w* [\d]{2})").copy()

            df2 = df[df['Text'].str.contains('Pump', na=False)].copy()
            if df2.empty:
                continue
            df2['Store'] = b
            newdf.append(df2)

        newdf = pd.concat(newdf)
        newdf['Date'] = pd.to_datetime(newdf['Date'], dayfirst=True)
        newdf['Time'] = newdf['Text'].str.extract(
            r"([\d]{1,2}\:[\d]{1,2}\:[\d]{1,2})")
        newdf['Time'] = pd.to_datetime(newdf['Time'],
                                       format='%H:%M:%S').dt.time
        newdf = newdf[newdf['Time'].between(start, end)]
        newdf.set_index('Date', inplace=True)

    output = BytesIO()
    writer = pd.ExcelWriter(output, engine='xlsxwriter')
    newdf.to_excel(writer)
    writer.save()
    output.seek(0)

    return send_file(output,
                     attachment_filename="sfoutput.xlsx",
                     as_attachment=True)
Esempio n. 3
0
def upload():

    if request.method == "POST":

        file = request.files['inputFile']
        print(file)
        filename = secure_filename(file.filename)

        #this will save file to folder in root named Files
        #file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))

        def convert_amount(val):
            """
                Convert the string number value to a float
                - Remove $
                - Remove commas
                - Convert to float type
                """
            new_val = val.replace(',', '').replace('%', '').replace('/0', '')
            return pd.to_numeric(new_val)

    excel_file = file
    df = pd.read_excel(excel_file, header=3)

    #print (df)

    xls = pd.ExcelFile(excel_file)
    res = len(xls.sheet_names)
    tabs = (xls.sheet_names)
    newtabs = (tabs)
    columnheaders = (df.columns.tolist())
    #print (columnheaders)
    kpidate = (columnheaders[2])

    current_kpidate = datetime.strptime(kpidate, "%Y-%m").strftime("%b-%Y")
    #print (current_kpidate)
    newkpi = []
    finalkpi = []

    for x in newtabs:
        type = x[:5]
        #print(type)
        data = pd.read_excel(excel_file,
                             sheet_name=x,
                             skiprows=3,
                             usecols=range(8))
        data['store'] = type
        data['Date'] = current_kpidate
        finalkpi.append(data)

        finalkpi = pd.concat(finalkpi)

        #print(finalkpi)

        #name columns

        finalkpi.columns = [
            'Category1', 'Category2', kpidate, 'Value2', 'value3', 'value4',
            'value5', 'Rolling', 'Store', 'Date'
        ]
        #reorder columns

        finalkpi = finalkpi[[
            'Date', 'Store', 'Category1', 'Category2', kpidate, 'Value2',
            'value3', 'value4', 'value5', 'Rolling'
        ]]
        """combine two columns
        """
        finalkpi['Category'] = finalkpi.Category2.combine_first(
            finalkpi.Category1)

        finalkpi = finalkpi[[
            'Date', 'Store', 'Category', kpidate, 'Value2', 'value3', 'value4',
            'value5', 'Rolling'
        ]]

        finalkpi['Date'] = pd.to_datetime((finalkpi['Date']), format='%b-%Y')

        finalkpi[kpidate] = finalkpi[kpidate].apply(convert_amount)
        finalkpi['Value2'] = finalkpi['Value2'].apply(convert_amount)
        finalkpi['value3'] = finalkpi['value3'].apply(convert_amount)
        finalkpi['value4'] = finalkpi['value4'].apply(convert_amount)
        finalkpi['value5'] = finalkpi['value5'].apply(convert_amount)
        finalkpi['Rolling'] = finalkpi['Rolling'].apply(convert_amount)

        #create output stream

        output = BytesIO()
        writer = pd.ExcelWriter(output, engine='xlsxwriter')
        finalkpi.to_excel(writer)
        writer.save()
        output.seek(0)

        return send_file(output,
                         attachment_filename="output.xlsx",
                         as_attachment=True)

        print(finalkpi)

        return render_template("applications.html")
Esempio n. 4
0
def carwashkpiupload():

    if request.method == "POST":

        file = request.files['cwinputFile']
        print(file)
        filename = secure_filename(file.filename)

        excel_file = file

        df = pd.read_excel(excel_file, skiprows=9, usecols=(3, 4, 5))

        columnheaders = (df.columns.tolist())
        current_cwdate = (columnheaders[1])
        x = datetime.strptime(current_cwdate, "%Y/%b").strftime("%b-%Y")
        previous_cwdate = (columnheaders[2])
        px = datetime.strptime(previous_cwdate, "%Y/%b").strftime("%b-%Y")

        #get list of sheets
        xls = pd.ExcelFile(excel_file)
        res = len(xls.sheet_names)
        nres = res - 1

        #get type for the tab names they are a list
        #print(type(res))

        tabs = (xls.sheet_names)
        #print(type(tabs))
        newtabs = (tabs[0:-1])

        dffinal2 = []

        for line in newtabs:

            #first half of spreadsheet

            type = line.split("_")[1]
            df = pd.read_excel(excel_file,
                               sheet_name=line,
                               skiprows=9,
                               usecols=(3, 4, 5))
            df.columns = ['a', x, px]
            df['store'] = type
            df['Date'] = x
            df1 = df.iloc[1:3].copy()
            df1['label'] = 'revenue'
            df2 = df.iloc[4:14].copy()
            df2['label'] = 'expense'
            df3 = df.iloc[17:26].copy()
            df3['label'] = 'operation performnce'
            df4 = df.iloc[30:37].copy()
            df4['label'] = 'sales performance'
            df5 = df.iloc[40:45].copy()
            df5['label'] = 'paid units %'
            df6 = df.iloc[46:52].copy()
            df6['label'] = 'paid units Instore and Crind'
            df7 = df.iloc[54:68].copy()
            df7['label'] = 'total units'
            dfpartone = pd.concat([df1, df2, df3, df4, df5, df6, df7])

            #second half of spreadsheet

            dftwo = pd.read_excel(excel_file,
                                  sheet_name=line,
                                  skiprows=9,
                                  usecols=(3, 8, 9))
            dftwo.columns = ['a', x, px]

            dftwo['store'] = type
            dftwo['Date'] = x

            df8 = dftwo.iloc[1:3].copy()
            df8['label'] = 'revenue per car'
            df9 = dftwo.iloc[4:14].copy()
            df9['label'] = 'expense per car'
            df10 = dftwo.iloc[40:45].copy()
            df10['label'] = '% fullfillment per car'
            df11 = dftwo.iloc[46:52].copy()
            df11['label'] = 'paid fullfillments'
            df12 = dftwo.iloc[54:68].copy()
            df12['label'] = 'total fullfillments'
            dfparttwo = pd.concat([df8, df9, df10, df11, df12])

            dffinal = pd.concat([dfpartone, dfparttwo])

            #final table of data

            dffinal2.append(dffinal)

        #reorganise columns

        dffinal2 = pd.concat(dffinal2)
        dffinal2.columns = [
            'Item', 'Amount', px, 'Store', 'Date', 'Classification'
        ]

        dffinal2 = dffinal2[[
            'Date', 'Store', 'Classification', 'Item', 'Amount', px
        ]]
        dffinal2['Amount'] = pd.to_numeric(dffinal2['Amount'], errors='coerce')
        dffinal2['Date'] = pd.to_datetime(dffinal2['Date'], format='%b-%Y')
        dffinal2['Date'] = dffinal2['Date'].dt.date

        #save final spreadsheet

        #outputfilename = asksaveasfilename(filetypes=[("Excel files","*.xlsx")])
        #dffinal2.to_excel(outputfilename + ".xlsx", engine='xlsxwriter')

        #dffinal.to_excel("test.xlsx")

    output = BytesIO()
    writer = pd.ExcelWriter(output, engine='xlsxwriter')
    dffinal2.to_excel(writer)
    writer.save()
    output.seek(0)

    return send_file(output,
                     attachment_filename="cwoutput.xlsx",
                     as_attachment=True)

    return render_template("applications.html")
Esempio n. 5
0
def tpfileupload():

    if request.method == "POST":

        files = request.files.getlist('tpfileinputFile[]')

        newdf = []

        for file in files:
            input_filename = file
            #print(x)
            df_totalsheet = pd.read_excel(input_filename)
            print(df_totalsheet.head)
            tp_date = (df_totalsheet.iat[8, 0])
            print(tp_date)
            tp_store = (df_totalsheet.iat[6, 0])
            a, b1, c, d = tp_date.split()
            e, f, g = tp_store.split()
            tp_storefinal = g[:5]
            pd.to_datetime(b1)
            print(b1)
            b = datetime.strptime(b1, "%m/%d/%Y").strftime("%b-%Y")
            pd.to_numeric(tp_storefinal)
            df = pd.read_excel(input_filename, skiprows=14)
            cols = list(df)
            dropcols = [2, 3, 6, 7, 8, 13, 14]
            df.drop(df.columns[dropcols], axis=1, inplace=True)
            df = df.rename(columns={'Performance Measure': 'one'})
            df.set_index('one', inplace=True)
            df = df.T
            df2 = df.index
            df['Gsa'] = df.index
            df['Store'] = tp_storefinal
            df.reset_index(drop=True, inplace=True)
            df.Gsa = df.Gsa.shift(1)
            df['Store'] = tp_storefinal
            df['date'] = b
            df['date'] = pd.to_datetime(df['date'], format="%b-%Y")
            df['date'] = df['date'].dt.date
            df.dropna(subset=['Shift Count'], how='all', inplace=True)
            print(df)
            df = df[[
                'date', 'Store', 'Gsa', 'Shift Count', 'Average Check',
                '2 Pack Ratio', 'Season Pass', 'Wash & Go',
                'In-Store Premium Ratio', 'Crind Ratio',
                'Campaign Deals Total',
                'Campaign Deals to In-Store Transaction Ratio',
                'Campaign Deals by Confectionery',
                'Campaign Deals by Salty Snacks',
                'Campaign Deals by Alternative Beverages',
                'Campaign Deals by Packaged Soft Drinks', 'Hot Beverages',
                'FSR Redemptions', '$1 Snack Redemptions'
            ]]

            newdf.append(df)
        newdf = pd.concat(newdf)

    output = BytesIO()
    writer = pd.ExcelWriter(output, engine='xlsxwriter')
    newdf.to_excel(writer)
    writer.save()
    output.seek(0)

    return send_file(output,
                     attachment_filename="sfoutput.xlsx",
                     as_attachment=True)