Spaces:
Sleeping
Sleeping
File size: 9,533 Bytes
2e53f8d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
from django.shortcuts import render
from django.http import HttpResponse, StreamingHttpResponse
from django.views.decorators.csrf import csrf_exempt
import json
from .models import FabriRoll, FabricBatch
def grns(request):
grns = FabricBatch.objects.all()
data = []
for grn in grns:
tempGRN = {}
tempGRN["GRN"] = grn.GRN
tempGRN["quantity"] = grn.quantity
tempGRN["fabricDescription"] = grn.fabricDescription
tempGRN["itemDescription"] = grn.itemDescription
tempGRN["fabricForm"] = grn.fabricForm
tempGRN["POWidth"] = grn.POWidth
tempGRN["POUOM"] = grn.POUOM
tempGRN["PointsUOM"] = grn.PointsUOM
tempGRN["Tolarence"] = grn.Tolarence
tempGRN["color"] = grn.color
tempGRN["buyer"] = grn.buyer
tempGRN["supplier"] = grn.supplier
tempGRN["item"] = grn.item
tempGRN["supplierName"] = grn.supplierName
tempGRN["PCH"] = grn.PCH
tempGRN["invoice"] = grn.invoice
tempGRN["fabricOdour"] = grn.fabricOdour
tempGRN["PO"] = grn.PO
tempGRN["basicUOM"] = grn.basicUOM
tempGRN["Warehouse"] = grn.Warehouse
tempGRN["convFactor"] = grn.convFactor
tempGRN["created_at"] = grn.created_at.strftime("%Y-%m-%d %H:%M:%S")
tempGRN["updated_at"] = grn.updated_at.strftime("%Y-%m-%d %H:%M:%S")
data.append(tempGRN)
data = sorted(data, key=lambda x: int(x["GRN"]))
return HttpResponse(json.dumps({"data": list(data)}), content_type="application/json")
def grnRolls(request, grn_id):
rolls = FabriRoll.objects.filter(GRN__GRN=grn_id)
data = []
for roll in rolls:
tempRoll = {}
tempRoll["name"] = roll.name
tempRoll["GRN"] = roll.GRN.GRN
tempRoll["rLength"] = roll.rLength
tempRoll["aLength"] = roll.aLength
tempRoll["minWidth"] = roll.minWidth
tempRoll["maxWidth"] = roll.maxWidth
tempRoll["CS"] = roll.CS
tempRoll["LWV"] = roll.LWV
tempRoll["EPI"] = roll.EPI
tempRoll["PPI"] = roll.PPI
tempRoll["CutPcs"] = roll.CutPcs
tempRoll["sWarp"] = roll.sWarp
tempRoll["sWeft"] = roll.sWeft
tempRoll["GSM"] = roll.GSM
tempRoll["SL"] = roll.SL
tempRoll["SG"] = roll.SG
tempRoll["Bowing"] = roll.Bowing
tempRoll["buyer"] = roll.GRN.buyer
tempRoll["supplierName"] = roll.GRN.supplierName
tempRoll["created_at"] = roll.created_at.strftime("%Y-%m-%d %H:%M:%S")
tempRoll["updated_at"] = roll.updated_at.strftime("%Y-%m-%d %H:%M:%S")
data.append(tempRoll)
data = sorted(data, key=lambda x: int(x["name"]))
return HttpResponse(json.dumps({"data": list(data)}), content_type="application/json")
def rolls(request):
rolls = FabriRoll.objects.all()
data = []
for roll in rolls:
tempRoll = {}
tempRoll["name"] = roll.name
tempRoll["GRN"] = roll.GRN.GRN
tempRoll["rLength"] = roll.rLength
tempRoll["aLength"] = roll.aLength
tempRoll["minWidth"] = roll.minWidth
tempRoll["maxWidth"] = roll.maxWidth
tempRoll["CS"] = roll.CS
tempRoll["LWV"] = roll.LWV
tempRoll["EPI"] = roll.EPI
tempRoll["PPI"] = roll.PPI
tempRoll["CutPcs"] = roll.CutPcs
tempRoll["sWarp"] = roll.sWarp
tempRoll["sWeft"] = roll.sWeft
tempRoll["GSM"] = roll.GSM
tempRoll["SL"] = roll.SL
tempRoll["SG"] = roll.SG
tempRoll["Bowing"] = roll.Bowing
tempRoll["buyer"] = roll.GRN.buyer
tempRoll["supplierName"] = roll.GRN.supplierName
tempRoll["created_at"] = roll.created_at.strftime("%Y-%m-%d %H:%M:%S")
tempRoll["updated_at"] = roll.updated_at.strftime("%Y-%m-%d %H:%M:%S")
data.append(tempRoll)
data = sorted(data, key=lambda x: int(x["name"]))
return HttpResponse(json.dumps({"data": list(data)}), content_type="application/json")
def roll(request, roll_id):
roll = FabriRoll.objects.get(name=roll_id)
data = roll.__dict__
data.pop("_state")
data["created_at"] = data["created_at"].strftime("%Y-%m-%d %H:%M:%S")
data["updated_at"] = data["updated_at"].strftime("%Y-%m-%d %H:%M:%S")
return HttpResponse(json.dumps({"data": data}), content_type="application/json")
def rollEntry(request):
if request.method == "POST":
try:
name = request.POST.get("name", "")
supplierName = request.POST.get("supplierName", "")
stock = request.POST.get("stock", "")
description = request.POST.get("description", "")
image = request.FILES.get("image", "")
if FabriRoll.objects.filter(name=name).exists():
return HttpResponse(json.dumps({"msg": "Roll already exists", "status": "error"}), content_type="application/json")
roll = FabriRoll.objects.create(
name=name,
supplierName=supplierName,
stock=stock,
description=description,
image=image
)
roll.save()
return HttpResponse(json.dumps({"msg": "Roll created successfully", "status": "success"}), content_type="application/json")
except Exception as e:
return HttpResponse(json.dumps({"msg": str(e), "status": "error"}), content_type="application/json")
else:
return HttpResponse(json.dumps({"msg": "Method not allowed", "status": "error"}), content_type="application/json")
def rollUpdate(request, roll_id):
if request.method == "POST":
try:
roll = FabriRoll.objects.get(name=roll_id)
rLength = request.POST.get("rLength", None)
aLength = request.POST.get("aLength", None)
minWidth = request.POST.get("minWidth", None)
maxWidth = request.POST.get("maxWidth", None)
CS = request.POST.get("CS", None)
LWV = request.POST.get("LWV", None)
EPI = request.POST.get("EPI", None)
PPI = request.POST.get("PPI", None)
CutPcs = request.POST.get("CutPcs", None)
sWarp = request.POST.get("sWarp", None)
sWeft = request.POST.get("sWeft", None)
GSM = request.POST.get("GSM", None)
SL = request.POST.get("SL", None)
SG = request.POST.get("SG", None)
Bowing = request.POST.get("Bowing", None)
print(rLength, aLength, minWidth, maxWidth, CS, LWV, EPI, PPI, CutPcs, sWarp, sWeft, GSM, SL, SG, Bowing)
roll.rLength = rLength
roll.aLength = aLength
roll.minWidth = minWidth
roll.maxWidth = maxWidth
roll.CS = CS
roll.LWV = LWV
roll.EPI = EPI
roll.PPI = PPI
roll.CutPcs = CutPcs
roll.sWarp = sWarp
roll.sWeft = sWeft
roll.GSM = GSM
roll.SL = SL
roll.SG = SG
roll.Bowing = Bowing
roll.save()
return HttpResponse(json.dumps({"msg": "Roll updated successfully", "status": "success"}), content_type="application/json")
except Exception as e:
return HttpResponse(json.dumps({"msg": str(e), "status": "error"}), content_type="application/json")
else:
return HttpResponse(json.dumps({"msg": "Method not allowed", "status": "error"}), content_type="application/json")
def GRNUpdate(request, grn_id):
if request.method == "POST":
try:
grn = FabricBatch.objects.get(GRN=grn_id)
fabricForm = request.POST.get("fabricForm", "Roll")
POWidth = request.POST.get("POWidth", "")
PointsUOM = request.POST.get("PointsUOM", "YRD")
Tolarence = request.POST.get("Tolarence", 20)
grn.fabricForm = fabricForm
grn.POWidth = POWidth
grn.PointsUOM = PointsUOM
grn.Tolarence = Tolarence
grn.save()
return HttpResponse(json.dumps({"msg": "GRN updated successfully", "status": "success"}), content_type="application/json")
except Exception as e:
return HttpResponse(json.dumps({"msg": str(e), "status": "error"}), content_type="application/json")
else:
return HttpResponse(json.dumps({"msg": "Method not allowed", "status": "error"}), content_type="application/json")
# def dataAdder(request):
# for i in data:
# newRoll = FabriRoll()
# newRoll.name=int(i['Ro.No'])
# newRoll.GRN = FabricBatch.objects.filter(GRN=1524983023).first()
# newRoll.rLength=i['R.Len.']
# newRoll.aLength = i['A.Len']
# newRoll.minWidth=i['Min.W']
# newRoll.maxWidth=i['Max.W.']
# newRoll.EPI=i['EPI']
# newRoll.PPI=i['PPI']
# newRoll.CutPcs=i['Cut Pcs']
# newRoll.sWarp=i['Warp']
# newRoll.sWeft=i['Weft']
# newRoll.GSM=i['Gsm']
# newRoll.SL=i['S.L']
# newRoll.Bowing = i['Bowing']
# if i["CS"] != "-":
# newRoll.CS = i["CS"]
# if i["LWV"] != "-":
# newRoll.LWV = i["LWV"]
# if i["S.G."] != "-":
# newRoll.SG = i["S.G."]
# newRoll.save()
# print(int(i['Ro.No']))
# return "Done"
|