I am exporting data from database using this function:
def export_packing_xls(request):
response = HttpResponse(content_type='application/ms-excel')
file_name = "packing_list_"+str(datetime.now().date())+".xls"
response['Content-Disposition'] = 'attachment; filename="'+ file_name +'"'
wb = xlwt.Workbook(encoding='utf-8')
ws = wb.add_sheet('Packing List')
date1 = request.GET.get('exportStartDate')
date2 = request.GET.get('exportEndDate')
# Sheet header, first row
row_num = 0
font_style = xlwt.XFStyle()
font_style.font.bold = True
columns = ['Ref Number', 'Description of Goods','QTY','Gross WT',]
for col_num in range(len(columns)):
ws.write(row_num, col_num, columns[col_num], font_style)
# Sheet body, remaining rows
font_style = xlwt.XFStyle()
rows = Booking.objects.filter(created_at__range =[date1, date2]).values_list('booking_reference', 'product_list', 'gross_weight',)
for row in rows:
row_num += 1
for col_num in range(len(row)):
ws.write(row_num, col_num, row[col_num], font_style)
print(row[col_num][1][:4])
wb.save(response)
return response
Ref Number Description of Goods QTY Gross WT
AWBO114 [{"id":1,"Name":"T shirt","Quantity":"10","Weight":"2","WeightTypes":"KG","TotalWeight":"20","CustomsCharge":"20.0","Discount":"12","Subtotal":"188"}] 12 22
AWBO117 [{"id":1,"Name":"T shirt","Quantity":"15","Weight":"45","WeightTypes":"KG","TotalWeight":"675","CustomsCharge":"20.0","Discount":"45","Subtotal":"255"}] 45 455
AWBO118 [{"id":1,"Name":"Fan","Quantity":"12","Weight":"12","WeightTypes":"KG","TotalWeight":"144","CustomsCharge":"100.0","Discount":"12"},{"id":2,"Name":"T shirt","Quantity":"22","Weight":"5","WeightTypes":"KG","TotalWeight":"110","CustomsCharge":"20.0","Discount":""}] 15 15
AWBO121 [{"id":1,"Name":"T shirt","Quantity":"12","Weight":"12","WeightTypes":"KG","TotalWeight":"144","CustomsCharge":"20.0","Discount":"12","Subtotal":"228"}] 0 20
AWBO122 [{"id":1,"Name":"T shirt","Quantity":"12","Weight":"12","WeightTypes":"KG","TotalWeight":"144","CustomsCharge":"20.0","Discount":"12","Subtotal":"228"}] 12 12
But i want to make a list for "Description of Goods" As like this :
How can i list out my JSON data in the Excel file?
If you have anything to know, please let me know in the comment section. Thank you.