104 lines
5.2 KiB
Python
104 lines
5.2 KiB
Python
from rest_framework.exceptions import ParseError
|
||
from apps.mtm.models import Process, Material
|
||
from apps.inm.models import WareHouse, MaterialBatch, MIOItem
|
||
from apps.utils.tools import ranstr
|
||
from apps.mtm.services_2 import cal_material_count
|
||
|
||
def daoru_mb(path: str):
|
||
"""
|
||
导入物料批次(如没有物料自动创建)
|
||
"""
|
||
# 注释的是初次导入时做的数据矫正
|
||
# objs1 = Material.objects.filter(specification__contains=' ')
|
||
# for i in objs1:
|
||
# i.specification = i.specification.replace(' ', '')
|
||
# i.save()
|
||
# objs2 = Material.objects.filter(specification__contains='×')
|
||
# for i in objs2:
|
||
# i.specification = i.specification.replace('×', '*')
|
||
# i.save()
|
||
# objs3 = (Material.objects.filter(
|
||
# specification__contains='优级') | Material.objects.filter(specification__contains='一级')).exclude(specification__contains='|')
|
||
# for i in objs3:
|
||
# i.specification = i.specification.replace(
|
||
# '优级', '|优级').replace('一级', '|一级')
|
||
# i.save()
|
||
type_dict = {"主要原料": 30, "半成品": 20, "成品": 10, "辅助材料": 40, "加工工具": 50, "辅助工装": 60, "办公用品": 70}
|
||
from apps.utils.snowflake import idWorker
|
||
from openpyxl import load_workbook
|
||
|
||
wb = load_workbook(path)
|
||
process_l = Process.objects.all()
|
||
process_d = {p.name: p for p in process_l}
|
||
warehouse_l = WareHouse.objects.all()
|
||
warehouse_d = {w.name: w for w in warehouse_l}
|
||
for sheet in wb.worksheets:
|
||
i = 3
|
||
while sheet[f"a{i}"].value:
|
||
try:
|
||
type = type_dict[sheet[f"a{i}"].value.replace(" ", "")]
|
||
name = sheet[f"b{i}"].value.replace(" ", "")
|
||
specification = sheet[f"c{i}"].value.replace(" ", "")
|
||
if sheet[f"d{i}"].value and sheet[f"d{i}"].value.replace(" ", ""):
|
||
specification = specification + "|" + sheet[f"d{i}"].value.replace(" ", "")
|
||
model = sheet[f"e{i}"].value.replace(" ", "")
|
||
process = process_d[sheet[f"f{i}"].value.replace(" ", "")]
|
||
batch = sheet[f"g{i}"].value.replace(" ", "")
|
||
count = int(sheet[f"h{i}"].value)
|
||
warehouse = warehouse_d[sheet[f"i{i}"].value.replace(" ", "")]
|
||
except KeyError as e:
|
||
raise ParseError(f"第{i}行数据有误:{str(e)}")
|
||
material, _ = Material.objects.get_or_create(
|
||
type=type,
|
||
name=name,
|
||
specification=specification,
|
||
model=model,
|
||
process=process,
|
||
defaults={"type": type, "name": name, "specification": specification, "model": model, "process": process, "number": ranstr(6), "id": idWorker.get_id()},
|
||
)
|
||
MaterialBatch.objects.get_or_create(
|
||
material=material, batch=batch, warehouse=warehouse, defaults={"material": material, "batch": batch, "warehouse": warehouse, "count": count, "id": idWorker.get_id()}
|
||
)
|
||
cal_material_count([material.id])
|
||
i = i + 1
|
||
|
||
def daoru_mioitem_test(path:str, mioitem:MIOItem):
|
||
from apps.utils.snowflake import idWorker
|
||
from openpyxl import load_workbook
|
||
from apps.qm.models import TestItem, Ftest, Qct, FtestItem
|
||
|
||
qct = Qct.get(mioitem.material)
|
||
ptxh = TestItem.objects.get(name="配套序号")
|
||
bbh = TestItem.objects.get(name="棒编号")
|
||
bzdwj = TestItem.object.get(name="棒最大外径/mm")
|
||
zd = TestItem.object.get(name="锥度/mm")
|
||
gbh = TestItem.objects.get(name="管编号")
|
||
gzdnj = TestItem.objects.get(name="管最大内径/mm")
|
||
phjx = TestItem.objects.get(name="配合间隙")
|
||
test_user = mioitem.mio.mio_user
|
||
|
||
wb = load_workbook(path)
|
||
sheet = wb["Sheet1"]
|
||
i = 4
|
||
n = 1
|
||
while sheet[f"c{i}"].value:
|
||
number = mioitem.number + "-" + str(n)
|
||
ftest, _ = Ftest.objects.get_or_create(
|
||
type="purin",
|
||
test_numer=number, defaults={
|
||
"qct": qct,
|
||
"test_user": test_user,
|
||
"is_ok": True
|
||
})
|
||
FtestItem.objects.filter(ftest=ftest).delete()
|
||
ftestitems = []
|
||
ftestitems.append(FtestItem(ftest=ftest, testitem=ptxh, test_val_json=sheet[f"b{i}"].value, test_user=test_user, id=idWorker.get_id()))
|
||
ftestitems.append(FtestItem(ftest=ftest, testitem=bbh, test_val_json=sheet[f"c{i}"].value, test_user=test_user, id=idWorker.get_id()))
|
||
ftestitems.append(FtestItem(ftest=ftest, testitem=bzdwj, test_val_json=sheet[f"e{i}"].value, test_user=test_user, id=idWorker.get_id()))
|
||
ftestitems.append(FtestItem(ftest=ftest, testitem=zd, test_val_json=sheet[f"f{i}"].value, test_user=test_user, id=idWorker.get_id()))
|
||
ftestitems.append(FtestItem(ftest=ftest, testitem=gbh, test_val_json=sheet[f"g{i}"].value, test_user=test_user, id=idWorker.get_id()))
|
||
ftestitems.append(FtestItem(ftest=ftest, testitem=gzdnj, test_val_json=sheet[f"j{i}"].value, test_user=test_user, id=idWorker.get_id()))
|
||
ftestitems.append(FtestItem(ftest=ftest, testitem=phjx, test_val_json=sheet[f"k{i}"].value, test_user=test_user, id=idWorker.get_id()))
|
||
FtestItem.objects.bulk_create(ftestitems)
|
||
i = i + 1
|
||
n = n + 1 |