consolidator
74 строки · 4.3 Кб
1import os2import sys3import pandas as pd4import datetime5from MainConsolidator import MainConsolidator6
7class handler(object):8@staticmethod9def module_name():10return 'Трубы ТБД'11@staticmethod12def handle(row:pd.Series,consolidator:MainConsolidator)->pd.Series:13product_up = None14try:15product = row["Первичный продукт"]16diametr = row["Диаметр, мм <Производство>"]17strength_1 = row["Класс прочности <Производство>"]18steel_mark = row["Марка стали <Производство>"]19strength_steel = consolidator.strength_mapping(strength_1,steel_mark)20thickness = row["Толщина стенки, мм <Производство>"]21seam_ = row["Тип трубы <Производство>"]22seam=None23if pd.notna(seam_) and seam_=="Одношовная": seam="ШВ1"24elif pd.notna(seam_): seam="ШВ2"25
26if diametr==508 :27product_up="ТРУБА Д508 ГН"28print(product_up)29else:30strength_led = consolidator.strength_led(strength_steel[0])31if strength_led=="К0": strength_led="К52"32diametr_led = consolidator.nearest_in_guid("Параметры по Продукту ТБД", f"`Продукт`=='{product}'", "Доп параметр1", diametr, "Доп параметр1")33thickness_led = consolidator.nearest_in_guid("Параметры по Продукту ТБД",34f"`Продукт`=='{product}' and `Доп параметр2`=='{seam}' and `Доп параметр1`=={diametr_led}", "Мин", thickness, "Мин")35diametr_led_s = str(diametr_led).replace(".0","")36thickness_led_s = str(thickness_led).replace(".0","")37thickness_range = consolidator.scalar_in_guid("Параметры по Продукту ТБД",38f"`Доп параметр3` == '{strength_led}' and `Доп параметр1`=={diametr_led} and `Мин`<={thickness_led_s}<=`Макс` and `Доп параметр2`=='{seam}'","Диапазон")39print(f"strength_steel: {strength_steel}; diametr_led_s: {diametr_led_s}; strength_led: {strength_led}; thickness_range: {thickness_range}; thickness: {thickness}")40# Наименование_УП = Продукт & Диам_тип & " " & Диап_толщин & " " & Шов & " " & Кл_прочности_прив41product_up=f"{product}{diametr_led_s} {thickness_range} {seam} {strength_led}"42if pd.notna(row["НТД внутреннего покрытия <Производство>"]) and pd.notna(row["НТД наружного покрытия <Производство>"]): product_up = product_up + " ИНВ"43elif pd.notna(row["НТД внутреннего покрытия <Производство>"]): product_up = product_up + " ИВ"44elif pd.notna(row["НТД наружного покрытия <Производство>"]): product_up = product_up + " ИН"45row["error"] = pd.NA46except Exception as exp:47row["error"] = f"{exp}"48finally:49row["Продукт УП"] = product_up50row["Время укрупнения"]=datetime.datetime.now()51return row52
53def debug_handle(self,inputDf:pd.DataFrame,consolidator:MainConsolidator,module:str=None)->pd.DataFrame:54try:55if module is None: return inputDf.apply(lambda row: self.handle(row,consolidator), axis=1)56else: return inputDf[inputDf["Производство2"]==module].apply(lambda row: self.handle(row,consolidator), axis=1)57except: raise58
59def get_compiled(self):60code:str=f"print('{__file__}')"61try:62with open(__file__,encoding="utf-8",mode="r") as f:63code=f.read()64except Exception as exp:65code=f"print('error: {exp}')"66finally:67cc = compile(code,"","exec")68return cc69
70if __name__=="__pipe_tbd__":71consolidator:MainConsolidator72record:pd.Series73result:pd.Series74result = handler.handle(record,consolidator)75
76