consolidator
91 строка · 5.3 Кб
1import os
2import sys
3import pandas as pd
4import datetime
5from MainConsolidator import MainConsolidator
6
7class handler(object):
8@staticmethod
9def module_name():
10return 'Лист Стан 5000'
11@staticmethod
12def handle(row:pd.Series,consolidator:MainConsolidator)->pd.Series:
13product_up = None
14try:
15product = row["Первичный продукт"]
16bz_sign = consolidator.scalar_in_guid("Продукт по НТД",f"`НТД качества (прокат) <Производство>`=='{row['НТД качества (прокат) <Производство>']}'","Доп признак")
17steel_mark = row["Марка стали <Производство>"]
18width = row["Ширина листа (штрипса), мм <Производство>"]
19thickness=row["Толщина, мм <Производство>"]
20steel_mark_1_letter = steel_mark[:1]
21strength = row["Класс прочности <Производство>"]
22if steel_mark_1_letter in ["К","Х","K","X"]: strength=steel_mark
23elif steel_mark_1_letter not in ["К","Х","K","X"]: strength=pd.NA
24if pd.isna(strength):
25strength=consolidator.strength_by_steel(steel_mark)
26strength_1 = consolidator.strength_mapping(strength,steel_mark)
27strength_led = consolidator.strength_led(strength_1[0])
28if strength_led=="К0": strength_led="К52"
29gmsps = consolidator.get_gmsps(steel_mark,product)
30diametr_=0
31if width==1500 or width==2000: diametr_=0
32q1020_1 = (width - 5) * (1 - 0.4 / 100) * (1 + 1.1 / 100) / 3.1416 + thickness
33q1420_1 = (width - 5) * (1 - 0 / 100) * (1 + 0.6 / 100) / 3.1416 + thickness
34d1020 = consolidator.nearest_in_guid("Диаметры ТБД","`Диаметры`>0","Диаметры",q1020_1,"Диаметры")
35d1420 = consolidator.nearest_in_guid("Диаметры ТБД","`Диаметры`>0","Диаметры",q1420_1,"Диаметры")
36delta_abs_1020=abs(q1020_1-d1020)
37delta_abs_1420=abs(q1420_1-d1420)
38if delta_abs_1020<delta_abs_1420 : diametr_=d1020
39else : diametr_=d1420
40diametr = str(diametr_).replace(".0","")
41
42thickness_range=None
43if product=="ЛИСТ ТРБ":
44thickness_range = consolidator.scalar_in_guid("Параметры по Продукту Прокат",
45# f"`Производство`=='Лист Стан 5000' and `Продукт`=='{product}' and `Доп параметр2`=='{strength_led}' and `Доп параметр3`=='ШВ1' and `Мин`<={thickness}<=`Макс`",
46f"`Производство`=='Лист Стан 5000' and `Продукт`=='{product}' and `Доп параметр2`=='{strength_led}' and `Доп параметр3`=='ШВ1' and `Доп параметр1`=='{diametr}'",
47"Диапазон")
48product_up=f"{product} Д{diametr} {thickness_range} ШВ1 {strength_led}"
49elif product=="ЛИСТ Р":
50if str(bz_sign)=="БЗ":
51thickness_range = consolidator.scalar_in_guid("Параметры по Продукту Прокат",
52f"`Производство`=='Лист Стан 5000' and `Продукт`=='{product}' and `Доп параметр1`=='БЗ' and `Мин`<={thickness}<=`Макс`",
53"Диапазон")
54product_up=f"{product} {thickness_range} БЗ"
55else:
56thickness_range = consolidator.scalar_in_guid("Параметры по Продукту Прокат",
57f"`Производство`=='Лист Стан 5000' and `Продукт`=='{product}' and `Доп параметр1`=='{gmsps}' and `Мин`<={thickness}<=`Макс`",
58"Диапазон")
59product_up = f"{product} {thickness_range} {gmsps}"
60
61print(f"{row['ID в SAP ERP VMZ']} - {product} - {strength_led} - {gmsps} - {diametr_}")
62row["error"] = pd.NA
63except Exception as exp:
64row["error"] = f"{exp}"
65finally:
66row["Продукт УП"]=product_up
67row["Время укрупнения"]=datetime.datetime.now()
68return row
69
70def debug_handle(self,inputDf:pd.DataFrame,consolidator:MainConsolidator,module:str=None)->pd.DataFrame:
71try:
72if module is None: return inputDf.apply(lambda row: self.handle(row,consolidator), axis=1)
73else: return inputDf[inputDf["Производство2"]==module].apply(lambda row: self.handle(row,consolidator), axis=1)
74except: raise
75
76def get_compiled(self):
77code:str=f"print('{__file__}')"
78try:
79with open(__file__,encoding="utf-8",mode="r") as f:
80code=f.read()
81except Exception as exp:
82code=f"print('error: {exp}')"
83finally:
84cc = compile(code,"","exec")
85return cc
86
87if __name__=="__sheet_5k__":
88consolidator:MainConsolidator
89record:pd.Series
90result:pd.Series
91result = handler.handle(record,consolidator)
92
93