Subversion Repositories SmartDukaan

Rev

Rev 18882 | Rev 18891 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2787 chandransh 1
package in.shop2020.hotspot.dashbaord.server;
2
 
3
import in.shop2020.config.ConfigException;
3044 chandransh 4
import in.shop2020.logistics.DeliveryType;
2787 chandransh 5
import in.shop2020.logistics.LogisticsServiceException;
5527 anupam.sin 6
import in.shop2020.logistics.PickUpType;
5556 rajveer 7
import in.shop2020.logistics.PickupStore;
2787 chandransh 8
import in.shop2020.logistics.Provider;
7792 anupam.sin 9
import in.shop2020.logistics.ProviderDetails;
7190 amar.kumar 10
import in.shop2020.model.v1.catalog.CatalogService;
18875 manish.sha 11
import in.shop2020.model.v1.catalog.CatalogServiceException;
7190 amar.kumar 12
import in.shop2020.model.v1.catalog.Item;
6746 rajveer 13
import in.shop2020.model.v1.inventory.BillingType;
5948 mandeep.dh 14
import in.shop2020.model.v1.inventory.InventoryServiceException;
5945 mandeep.dh 15
import in.shop2020.model.v1.inventory.Warehouse;
7528 rajveer 16
import in.shop2020.model.v1.order.AmazonOrder;
5527 anupam.sin 17
import in.shop2020.model.v1.order.Attribute;
8182 amar.kumar 18
import in.shop2020.model.v1.order.EbayOrder;
13691 manish.sha 19
import in.shop2020.model.v1.order.HsOrder;
2787 chandransh 20
import in.shop2020.model.v1.order.LineItem;
21
import in.shop2020.model.v1.order.Order;
7318 rajveer 22
import in.shop2020.model.v1.order.OrderSource;
4361 rajveer 23
import in.shop2020.model.v1.order.OrderStatus;
5527 anupam.sin 24
import in.shop2020.model.v1.order.OrderType;
10310 amar.kumar 25
import in.shop2020.model.v1.order.ProductCondition;
8488 amar.kumar 26
import in.shop2020.model.v1.order.SnapdealOrder;
8996 amar.kumar 27
import in.shop2020.model.v1.order.FlipkartOrder;
9432 amar.kumar 28
import in.shop2020.model.v1.order.TaxType;
18530 manish.sha 29
import in.shop2020.model.v1.user.Address;
7190 amar.kumar 30
import in.shop2020.thrift.clients.CatalogClient;
3132 rajveer 31
import in.shop2020.thrift.clients.LogisticsClient;
32
import in.shop2020.thrift.clients.TransactionClient;
2787 chandransh 33
import in.shop2020.thrift.clients.config.ConfigClient;
5948 mandeep.dh 34
import in.shop2020.thrift.clients.InventoryClient;
18530 manish.sha 35
import in.shop2020.thrift.clients.UserClient;
2787 chandransh 36
 
8067 manish.sha 37
import java.awt.image.BufferedImage;
2787 chandransh 38
import java.io.ByteArrayOutputStream;
39
import java.io.File;
40
import java.io.FileOutputStream;
41
import java.io.IOException;
8067 manish.sha 42
import java.io.OutputStream;
2787 chandransh 43
import java.text.DateFormat;
44
import java.text.DecimalFormat;
4361 rajveer 45
import java.util.ArrayList;
2787 chandransh 46
import java.util.Date;
13276 manish.sha 47
import java.util.HashMap;
2787 chandransh 48
import java.util.List;
49
import java.util.Locale;
13276 manish.sha 50
import java.util.Map;
2787 chandransh 51
 
52
import javax.servlet.ServletException;
53
import javax.servlet.ServletOutputStream;
54
import javax.servlet.http.HttpServlet;
55
import javax.servlet.http.HttpServletRequest;
56
import javax.servlet.http.HttpServletResponse;
57
 
7014 rajveer 58
import org.apache.commons.lang.StringUtils;
2787 chandransh 59
import org.apache.commons.lang.WordUtils;
60
import org.apache.thrift.TException;
8067 manish.sha 61
import org.krysalis.barcode4j.impl.code128.Code128Bean;
62
import org.krysalis.barcode4j.output.bitmap.BitmapCanvasProvider;
63
import org.krysalis.barcode4j.tools.UnitConv;
2787 chandransh 64
import org.slf4j.Logger;
65
import org.slf4j.LoggerFactory;
66
 
67
import com.ibm.icu.text.RuleBasedNumberFormat;
68
 
69
import com.itextpdf.text.Document;
70
import com.itextpdf.text.Element;
71
import com.itextpdf.text.Font;
72
import com.itextpdf.text.FontFactory;
73
import com.itextpdf.text.FontFactoryImp;
74
import com.itextpdf.text.Image;
18875 manish.sha 75
import com.itextpdf.text.PageSize;
2787 chandransh 76
import com.itextpdf.text.Paragraph;
77
import com.itextpdf.text.Phrase;
78
import com.itextpdf.text.Rectangle;
79
import com.itextpdf.text.Font.FontFamily;
8034 manish.sha 80
import com.itextpdf.text.pdf.Barcode128;
2787 chandransh 81
import com.itextpdf.text.pdf.BaseFont;
8037 manish.sha 82
import com.itextpdf.text.pdf.PdfContentByte;
2787 chandransh 83
import com.itextpdf.text.pdf.PdfPCell;
84
import com.itextpdf.text.pdf.PdfPTable;
85
import com.itextpdf.text.pdf.PdfWriter;
86
import com.itextpdf.text.pdf.draw.DottedLineSeparator;
87
 
88
@SuppressWarnings("serial")
89
public class InvoiceServlet extends HttpServlet {
7014 rajveer 90
 
91
	private static Logger logger = LoggerFactory.getLogger(InvoiceServlet.class);
92
 
93
	@Override
94
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
95
		long orderId = Long.parseLong(request.getParameter("id"));
13276 manish.sha 96
		String logisticsTxnId  = request.getParameter("logisticsTxnId");
7014 rajveer 97
		long warehouseId = Long.parseLong(request.getParameter("warehouse"));
98
		boolean withBill = false;
99
		boolean printAll = false;
100
		try {
101
			withBill = Boolean.parseBoolean(request.getParameter("withBill"));
102
		} catch(Exception e){
103
			logger.warn("Couldn't infer whether bill should be printed. Not printing the bill.", e);
104
		}
105
		try {
106
			printAll = Boolean.parseBoolean(request.getParameter("printAll"));
107
		} catch(Exception e){
108
			logger.warn("Couldn't infer whether bill should be printed. Not printing the bill.", e);
109
		}
110
 
13276 manish.sha 111
		if(logisticsTxnId!=null && !logisticsTxnId.isEmpty()){
112
			logger.info("Printing invoice for master order id: " + logisticsTxnId);
113
		}else{
114
			logger.info("Printing invoice for order id: " + orderId);
115
		}
8182 amar.kumar 116
 
8194 amar.kumar 117
		ByteArrayOutputStream baos = null;
8182 amar.kumar 118
 
119
		InvoiceGenerationService invoiceGenerationService = new InvoiceGenerationService();
120
		baos = invoiceGenerationService.generateInvoice(orderId, withBill, printAll, warehouseId);
7014 rajveer 121
 
122
		response.setContentType("application/pdf");
13276 manish.sha 123
		if(logisticsTxnId!=null && !logisticsTxnId.isEmpty()){
124
			response.setHeader("Content-disposition", "inline; filename=invoice-"+logisticsTxnId+".pdf" );
125
		} else {
126
			response.setHeader("Content-disposition", "inline; filename=invoice-"+orderId+".pdf" );
127
		}
7014 rajveer 128
 
129
		ServletOutputStream sos;
130
		try {
131
			sos = response.getOutputStream();
132
			baos.writeTo(sos);
133
			sos.flush();
134
		} catch (IOException e) {
135
			logger.error("Encountered error while sending invoice response: ", e);
136
		}
137
	}
2787 chandransh 138
}
139
 
140
class InvoiceGenerationService {
141
 
7014 rajveer 142
	private static Logger logger = LoggerFactory.getLogger(InvoiceGenerationService.class);
2787 chandransh 143
 
7014 rajveer 144
	private TransactionClient tsc = null;
145
	private InventoryClient csc = null;
146
	private LogisticsClient lsc = null;
7190 amar.kumar 147
	private CatalogClient ctsc = null;
18530 manish.sha 148
	private UserClient usc = null;
2787 chandransh 149
 
7014 rajveer 150
	private static Locale indianLocale = new Locale("en", "IN");
151
	private DecimalFormat amountFormat = new DecimalFormat("#,##0.00");
2787 chandransh 152
 
7994 manish.sha 153
	//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
154
	private static final Font helvetica6 = FontFactory.getFont(FontFactory.HELVETICA, 6);
7995 manish.sha 155
	//End:-Added By Manish Sharma for FedEx Integration  - Shipment Creation on 21-Aug-2013
7014 rajveer 156
	private static final Font helvetica8 = FontFactory.getFont(FontFactory.HELVETICA, 8);
157
	private static final Font helvetica10 = FontFactory.getFont(FontFactory.HELVETICA, 10);
158
	private static final Font helvetica12 = FontFactory.getFont(FontFactory.HELVETICA, 12);
159
	private static final Font helvetica16 = FontFactory.getFont(FontFactory.HELVETICA, 16);
8551 manish.sha 160
	private static final Font helvetica22 = FontFactory.getFont(FontFactory.HELVETICA, 22);
2787 chandransh 161
 
7014 rajveer 162
	private static final Font helveticaBold8 = FontFactory.getFont(FontFactory.HELVETICA_BOLD, 8);
163
	private static final Font helveticaBold12 = FontFactory.getFont(FontFactory.HELVETICA_BOLD, 12);
164
 
165
	private static final String delhiPincodePrefix = "11";
9319 amar.kumar 166
	private static final String[] maharashtraPincodePrefix = {"40", "41", "42", "43", "44"};
16196 manish.sha 167
	private static final String[] karnatakaPincodePrefix = {"56", "57", "58", "59"};
12809 manish.sha 168
	private static final String[] telanganaPincodes = {"500001","500002","500003","500004","500005","500006","500007","500008","500009","500010","500011","500012","500013","500014","500015","500016","500017","500018","500019","500020","500021","500022","500023","500024","500025","500026","500027","500028","500029","500030","500031","500032","500033","500034","500035","500036","500037","500038","500039","500040","500041","500042","500043","500044","500045","500046","500047","500048","500049","500050","500051","500052","500053","500054","500055","500056","500057","500058","500059","500060","500061","500062","500063","500064","500065","500066","500067","500068","500069","500070","500071","500072","500073","500074","500075","500076","500077","500078","500079","500080","500081","500082","500083","500084","500085","500086","500087","500088","500089","500090","500091","500092","500093","500094","500095","500096","500097","500098","500178","500409","501218","501301","501401","501510","501511","501512","502307","502319","517501","517502","517503","517505","517507","520001","520002","520003","520004","520005","520006","520007","520008","520009","520010","520011","520012","520013","520014","520015","521108","521225","522001","522002","522003","522004","522005","522006","522007","522019","522509","530001","530002","530003","530004","530005","530007","530008","530009","530010","530010","530011","530012","530013","530014","530015","530016","530017","530018","530020","530021","530022","530023","530024","530026","530027","530028","530029","530032","530035","530040","530041","530043","530044","530045","530046","531001","533101","533103","533104","533105"};
18657 manish.sha 169
	private Address billingAddress;
7014 rajveer 170
 
171
	public InvoiceGenerationService() {
172
		try {
173
			tsc = new TransactionClient();
174
			csc = new InventoryClient();
175
			lsc = new LogisticsClient();
7190 amar.kumar 176
			ctsc = new CatalogClient();
18530 manish.sha 177
			usc = new UserClient();
7014 rajveer 178
		} catch (Exception e) {
179
			logger.error("Error while instantiating thrift clients.", e);
180
		}
181
	}
182
 
183
	public ByteArrayOutputStream generateInvoice(long orderId, boolean withBill, boolean printAll, long warehouseId) {
184
		ByteArrayOutputStream baosPDF = null;
185
		in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
186
		in.shop2020.model.v1.inventory.InventoryService.Client iclient = csc.getClient();
187
		in.shop2020.logistics.LogisticsService.Client logisticsClient = lsc.getClient();
18875 manish.sha 188
 
7014 rajveer 189
		try {
190
			baosPDF = new ByteArrayOutputStream();
191
 
192
			Document document = new Document();
8039 manish.sha 193
			PdfWriter.getInstance(document, baosPDF);
7014 rajveer 194
			document.addAuthor("shop2020");
195
			//document.addTitle("Invoice No: " + order.getInvoice_number());
196
			document.open();
13276 manish.sha 197
			//document.bo
7014 rajveer 198
 
199
			List<Order> orders = new ArrayList<Order>();
13276 manish.sha 200
			Map<String, List<Order>> logisticsTxnIdOrdersMap = new HashMap<String, List<Order>>();
7014 rajveer 201
			if(printAll){
202
				try {
203
					List<OrderStatus> statuses = new ArrayList<OrderStatus>();
204
					statuses.add(OrderStatus.ACCEPTED);
13276 manish.sha 205
					if(!tclient.isAlive()){
206
						tclient = tsc.getClient();
207
					}
7014 rajveer 208
					orders = tclient.getAllOrders(statuses, 0, 0, warehouseId);
13276 manish.sha 209
					for(Order o:orders){
210
						if(o.isSetLogisticsTransactionId()){
211
							if(logisticsTxnIdOrdersMap.containsKey(o.getLogisticsTransactionId())){
212
								List<Order> groupOrdersList = logisticsTxnIdOrdersMap.get(o.getLogisticsTransactionId());
213
								groupOrdersList.add(o);
214
								logisticsTxnIdOrdersMap.put(o.getLogisticsTransactionId(), groupOrdersList);
215
							}else {
216
								List<Order> groupOrdersList = new ArrayList<Order>();
217
								groupOrdersList.add(o);
218
								logisticsTxnIdOrdersMap.put(o.getLogisticsTransactionId(), groupOrdersList);
219
							}
220
						}
221
					}
7014 rajveer 222
				} catch (Exception e) {
223
					logger.error("Error while getting order information", e);
224
					return baosPDF; 
4361 rajveer 225
				}
7014 rajveer 226
			}else{
13276 manish.sha 227
				if(!tclient.isAlive()){
228
					tclient = tsc.getClient();
229
				}
230
				orders.add(tclient.getOrder(orderId));
231
				Order o = orders.get(0);
232
				if(o.isSetLogisticsTransactionId()){
233
					List<Order> groupOrdersList = tclient.getGroupOrdersByLogisticsTxnId(o.getLogisticsTransactionId());
234
					logisticsTxnIdOrdersMap.put(o.getLogisticsTransactionId(), groupOrdersList);
235
				}
7014 rajveer 236
			}
237
			boolean isFirst = true;
13276 manish.sha 238
			if(logisticsTxnIdOrdersMap!=null && logisticsTxnIdOrdersMap.size()>0){
239
				for(String logisticsTxnId : logisticsTxnIdOrdersMap.keySet()){
240
					List<Order> ordersList = logisticsTxnIdOrdersMap.get(logisticsTxnId);
241
					Order singleOrder = ordersList.get(0);
242
					Warehouse warehouse = null;
243
					Provider provider = null;
244
					String destCode = null;
245
					Warehouse shippingLocation = null;
246
					int barcodeFontSize = 0;
247
					String invoiceFormat = null;
248
					try {
249
						warehouse = iclient.getWarehouse(singleOrder.getWarehouse_id());
250
						long providerId = singleOrder.getLogistics_provider_id();
251
						provider = logisticsClient.getProvider(providerId);
252
						if(provider.getPickup().equals(PickUpType.SELF) || provider.getPickup().equals(PickUpType.RUNNER))
253
							destCode = provider.getPickup().toString();
254
						else
255
							destCode = logisticsClient.getDestinationCode(providerId, singleOrder.getCustomer_pincode());
5387 rajveer 256
 
13276 manish.sha 257
						barcodeFontSize = Integer.parseInt(ConfigClient.getClient().get(provider.getName().toLowerCase() + "_barcode_fontsize"));
258
						shippingLocation = CatalogUtils.getWarehouse(warehouse.getShippingWarehouseId());
259
						invoiceFormat = tclient.getInvoiceFormatLogisticsTxnId(singleOrder.getTransactionId(), Long.parseLong(logisticsTxnId.split("-")[1])); 
260
					} catch (InventoryServiceException ise) {
261
						logger.error("Error while getting the warehouse information.", ise);
262
						return baosPDF;
263
					} catch (LogisticsServiceException lse) {
264
						logger.error("Error while getting the provider information.", lse);
265
						return baosPDF;
266
					} catch (ConfigException ce) {
267
						logger.error("Error while getting the fontsize for the given provider", ce);
268
						return baosPDF;
269
					} catch (TException te) {
270
						logger.error("Error while getting some essential information from the services", te);
271
						return baosPDF;
272
					}
273
 
274
					if(printAll && warehouse.getBillingType() == BillingType.OURS_EXTERNAL){
275
						for(Order order : ordersList){
276
							if(isFirst){
277
								document.add(getFixedTextTable(16, "Spice Online Retail Pvt Ltd"));
278
								isFirst = false;
279
							}
280
							document.add(getExtraInfoTable(order, provider, 16, warehouse.getBillingType()));
281
							continue;
282
						}
283
					}
284
					PdfPTable dispatchAdviceTable = null;
285
					Order order = ordersList.get(0);
286
					if(ordersList.size()==1){					
287
						if (new Long(order.getSource()).intValue() == OrderSource.SNAPDEAL.getValue()) {
288
							dispatchAdviceTable = new PdfPTable(1);
289
						}  else if(new Long(order.getSource()).intValue() == OrderSource.FLIPKART.getValue()) {
290
							dispatchAdviceTable = new PdfPTable(1);
13691 manish.sha 291
						}  else if(new Long(order.getSource()).intValue() == OrderSource.HOMESHOP18.getValue()) {
292
							dispatchAdviceTable = new PdfPTable(1);
13276 manish.sha 293
						}  else if ((new Long(order.getSource()).intValue() == OrderSource.EBAY.getValue()) && (order.getLogistics_provider_id()>7)) {
294
							if(order.getWarehouse_id() == 7 || order.getWarehouse_id() == 5 || order.getWarehouse_id() == 9) {
295
								dispatchAdviceTable = new PdfPTable(1);
296
							} else { 
297
								if (order.getAirwaybill_no()== null || order.getAirwaybill_no().equals("null") || order.getAirwaybill_no().isEmpty()) {
298
									dispatchAdviceTable = new PdfPTable(1);
299
								} else {
300
									EbayInvoiceGenerationService invoiceGenerationService = new EbayInvoiceGenerationService();
301
									dispatchAdviceTable = invoiceGenerationService.getDispatchAdviceTable(orderId, warehouseId);
302
								}
303
							}
304
						}
305
						else {
306
							dispatchAdviceTable = getDispatchAdviceTable(ordersList, warehouse, provider, barcodeFontSize, destCode, withBill, shippingLocation, invoiceFormat);
307
						}
308
					} else {
309
						dispatchAdviceTable = getDispatchAdviceTable(ordersList, warehouse, provider, barcodeFontSize, destCode, withBill, shippingLocation, invoiceFormat);
310
					}
311
 
312
					dispatchAdviceTable.setSpacingAfter(10.0f);
313
					dispatchAdviceTable.setWidthPercentage(90.0f);
314
					document.add(dispatchAdviceTable);
315
					if("Bulk".equalsIgnoreCase(invoiceFormat)){
13321 manish.sha 316
						if(ordersList.size()>3 || (order.getLogistics_provider_id()==7 && order.isLogisticsCod())){
13320 manish.sha 317
							document.newPage();
318
						}
13276 manish.sha 319
					}
320
 
321
					if ((new Long(order.getSource()).intValue() == OrderSource.EBAY.getValue()) && (order.getLogistics_provider_id()>7) &&(ordersList.size()==1)) {
322
						if (order.getAirwaybill_no()== null || order.getAirwaybill_no().equals("null") || order.getAirwaybill_no().isEmpty() 
323
								|| order.getWarehouse_id() == 7 || order.getWarehouse_id() == 5 || order.getWarehouse_id() == 9) {
324
							if(withBill){
325
								PdfPTable taxTable = getTaxCumRetailInvoiceTable(ordersList, provider, shippingLocation.getLocation() + "-" + shippingLocation.getPincode() , shippingLocation.getTinNumber(), invoiceFormat);
326
								taxTable.setSpacingBefore(5.0f);
327
								taxTable.setWidthPercentage(90.0f);
328
								document.add(new DottedLineSeparator());
329
								document.add(taxTable);
330
							}else{
331
								PdfPTable extraInfoTable = getExtraInfoTable(order, provider, 16, warehouse.getBillingType());
332
								extraInfoTable.setSpacingBefore(5.0f);
333
								extraInfoTable.setWidthPercentage(90.0f);
334
								document.add(new DottedLineSeparator());
335
								document.add(extraInfoTable);
336
							}
337
						} else {
338
							document.newPage();
339
						}
340
					} else if (new Long(order.getSource()).intValue() == OrderSource.SNAPDEAL.getValue() &&(ordersList.size()==1)) {
341
						if(withBill){
342
							PdfPTable taxTable = getTaxCumRetailInvoiceTable(ordersList, provider, shippingLocation.getLocation() + "-" + shippingLocation.getPincode() , shippingLocation.getTinNumber(), invoiceFormat);
343
							taxTable.setSpacingBefore(5.0f);
344
							taxTable.setWidthPercentage(90.0f);
345
							document.add(new DottedLineSeparator());
346
							document.add(taxTable);
347
						}else{
348
							PdfPTable extraInfoTable = getExtraInfoTable(order, provider, 16, warehouse.getBillingType());
349
							extraInfoTable.setSpacingBefore(5.0f);
350
							extraInfoTable.setWidthPercentage(90.0f);
351
							document.add(new DottedLineSeparator());
352
							document.add(extraInfoTable);
353
						}
354
					}
355
					if(withBill){
356
						PdfPTable taxTable = getTaxCumRetailInvoiceTable(ordersList, provider, shippingLocation.getLocation() + "-" + shippingLocation.getPincode() , shippingLocation.getTinNumber(), invoiceFormat);
357
						taxTable.setSpacingBefore(5.0f);
358
						taxTable.setWidthPercentage(90.0f);
359
						document.add(new DottedLineSeparator());
360
						document.add(taxTable);
361
						if(order.getSource() == OrderSource.FLIPKART.getValue()) {
362
							//document.add(new DottedLineSeparator());
363
							document.add(getFlipkartBarCodes(order));
364
						}
2787 chandransh 365
 
13276 manish.sha 366
					}else{
367
						PdfPTable extraInfoTable = getExtraInfoTable(order, provider, 16, warehouse.getBillingType());
368
						extraInfoTable.setSpacingBefore(5.0f);
369
						extraInfoTable.setWidthPercentage(90.0f);
370
						document.add(new DottedLineSeparator());
371
						document.add(extraInfoTable);
372
					}
13316 manish.sha 373
 
374
					if("Bulk".equalsIgnoreCase(invoiceFormat)){
375
						PdfPTable orderItemsDetailTable = new PdfPTable(1);
376
						orderItemsDetailTable.setWidthPercentage(90.0f);
377
						orderItemsDetailTable.setSpacingBefore(5.0f);
378
						orderItemsDetailTable.addCell(new Phrase("SubOrder Ids :", helveticaBold8));
379
						StringBuffer sbOrders = new StringBuffer();
380
 
13318 manish.sha 381
						for(Order o1 : ordersList){
13316 manish.sha 382
							sbOrders.append(o1.getId()+",");
383
						}
384
 
385
 
386
						String orderIds = sbOrders.toString();
387
						orderIds = orderIds.substring(0, orderIds.length()-1);
13319 manish.sha 388
 
13316 manish.sha 389
						StringBuffer sbImeis = new StringBuffer();
390
 
13317 manish.sha 391
						for(Order o1 : ordersList){
13316 manish.sha 392
							if(o1.getLineitems().get(0).getSerial_number()!=null){
393
								sbImeis.append(o1.getLineitems().get(0).getSerial_number()+",");
394
							}
395
						}
396
 
13319 manish.sha 397
						orderItemsDetailTable.addCell(new Phrase(orderIds.toString(), helvetica8));
13316 manish.sha 398
 
13319 manish.sha 399
						if(sbImeis.length()>0){
400
							orderItemsDetailTable.addCell(new Phrase("IMEI Details :", helveticaBold8));
401
							logger.info("Imeis List:- " + sbImeis);
402
							String imeis = sbImeis.toString();
13490 manish.sha 403
							if(imeis.endsWith(","))
404
								imeis = imeis.substring(0, imeis.length()-1);
13319 manish.sha 405
							logger.info("Final Imeis List:- " + sbImeis);
406
 
407
							orderItemsDetailTable.addCell(new Phrase(imeis, helvetica8));
408
						}
409
 
13316 manish.sha 410
						document.add(orderItemsDetailTable);
411
					}
18779 manish.sha 412
					PdfPTable billingAddressTable = getCustomerAddressTable(order, null, true, helvetica8, true, true);
18778 manish.sha 413
					if(billingAddress!=null){
414
						billingAddressTable.setWidthPercentage(90.0f);
415
						billingAddressTable.setSpacingBefore(5.0f);
416
						billingAddressTable.addCell(new Phrase("Billing Address :", helveticaBold8));
417
						billingAddressTable.addCell(new Phrase(billingAddress.getName() +" "+billingAddress.getLine1()
418
								+billingAddress.getLine2() +" "+billingAddress.getCity() + "," + billingAddress.getState()
419
								+" -"+billingAddress.getPin(), helvetica8));
420
						document.add(billingAddressTable);
421
					}
13316 manish.sha 422
 
13276 manish.sha 423
					document.newPage();
7014 rajveer 424
				}
13276 manish.sha 425
			} else {
426
				for(Order singleOrder : orders){
427
					List<Order> ordersList = new ArrayList<Order>();
428
					ordersList.add(singleOrder);
429
					Warehouse warehouse = null;
430
					Provider provider = null;
431
					String destCode = null;
432
					Warehouse shippingLocation = null;
433
					int barcodeFontSize = 0;
434
					String invoiceFormat = "Individual";
435
					try {
436
						warehouse = iclient.getWarehouse(singleOrder.getWarehouse_id());
437
						long providerId = singleOrder.getLogistics_provider_id();
438
						provider = logisticsClient.getProvider(providerId);
439
						if(provider.getPickup().equals(PickUpType.SELF) || provider.getPickup().equals(PickUpType.RUNNER))
440
							destCode = provider.getPickup().toString();
441
						else
442
							destCode = logisticsClient.getDestinationCode(providerId, singleOrder.getCustomer_pincode());
4361 rajveer 443
 
13276 manish.sha 444
						barcodeFontSize = Integer.parseInt(ConfigClient.getClient().get(provider.getName().toLowerCase() + "_barcode_fontsize"));
445
						shippingLocation = CatalogUtils.getWarehouse(warehouse.getShippingWarehouseId()); 
446
					} catch (InventoryServiceException ise) {
447
						logger.error("Error while getting the warehouse information.", ise);
448
						return baosPDF;
449
					} catch (LogisticsServiceException lse) {
450
						logger.error("Error while getting the provider information.", lse);
451
						return baosPDF;
452
					} catch (ConfigException ce) {
453
						logger.error("Error while getting the fontsize for the given provider", ce);
454
						return baosPDF;
455
					} catch (TException te) {
456
						logger.error("Error while getting some essential information from the services", te);
457
						return baosPDF;
7014 rajveer 458
					}
13276 manish.sha 459
 
460
					if(printAll && warehouse.getBillingType() == BillingType.OURS_EXTERNAL){
461
						for(Order order : ordersList){
462
							if(isFirst){
463
								document.add(getFixedTextTable(16, "Spice Online Retail Pvt Ltd"));
464
								isFirst = false;
465
							}
466
							document.add(getExtraInfoTable(order, provider, 16, warehouse.getBillingType()));
467
							continue;
468
						}
469
					}
470
					PdfPTable dispatchAdviceTable = null;
471
					Order order = ordersList.get(0);
472
					if(ordersList.size()==1){					
473
						if (new Long(order.getSource()).intValue() == OrderSource.SNAPDEAL.getValue()) {
8303 amar.kumar 474
							dispatchAdviceTable = new PdfPTable(1);
13276 manish.sha 475
						}  else if(new Long(order.getSource()).intValue() == OrderSource.FLIPKART.getValue()) {
476
							dispatchAdviceTable = new PdfPTable(1);
13705 manish.sha 477
						}  else if(new Long(order.getSource()).intValue() == OrderSource.HOMESHOP18.getValue()) {
478
							dispatchAdviceTable = new PdfPTable(1);
13276 manish.sha 479
						}  else if ((new Long(order.getSource()).intValue() == OrderSource.EBAY.getValue()) && (order.getLogistics_provider_id()>7)) {
480
							if(order.getWarehouse_id() == 7 || order.getWarehouse_id() == 5 || order.getWarehouse_id() == 9) {
481
								dispatchAdviceTable = new PdfPTable(1);
482
							} else { 
483
								if (order.getAirwaybill_no()== null || order.getAirwaybill_no().equals("null") || order.getAirwaybill_no().isEmpty()) {
484
									dispatchAdviceTable = new PdfPTable(1);
485
								} else {
486
									EbayInvoiceGenerationService invoiceGenerationService = new EbayInvoiceGenerationService();
487
									dispatchAdviceTable = invoiceGenerationService.getDispatchAdviceTable(orderId, warehouseId);
488
								}
489
							}
490
						}
491
						else {
492
							dispatchAdviceTable = getDispatchAdviceTable(ordersList, warehouse, provider, barcodeFontSize, destCode, withBill, shippingLocation, invoiceFormat);
493
						}
494
					} else {
495
						dispatchAdviceTable = getDispatchAdviceTable(ordersList, warehouse, provider, barcodeFontSize, destCode, withBill, shippingLocation, invoiceFormat);
496
					}
497
 
498
					dispatchAdviceTable.setSpacingAfter(10.0f);
499
					dispatchAdviceTable.setWidthPercentage(90.0f);
500
					document.add(dispatchAdviceTable);
501
					if("Bulk".equalsIgnoreCase(invoiceFormat)){
13320 manish.sha 502
						if(ordersList.size()>1){
503
							document.newPage();
504
						}
13276 manish.sha 505
					}
506
 
507
					if ((new Long(order.getSource()).intValue() == OrderSource.EBAY.getValue()) && (order.getLogistics_provider_id()>7) &&(ordersList.size()==1)) {
508
						if (order.getAirwaybill_no()== null || order.getAirwaybill_no().equals("null") || order.getAirwaybill_no().isEmpty() 
509
								|| order.getWarehouse_id() == 7 || order.getWarehouse_id() == 5 || order.getWarehouse_id() == 9) {
510
							if(withBill){
511
								PdfPTable taxTable = getTaxCumRetailInvoiceTable(ordersList, provider, shippingLocation.getLocation() + "-" + shippingLocation.getPincode() , shippingLocation.getTinNumber(), invoiceFormat);
512
								taxTable.setSpacingBefore(5.0f);
513
								taxTable.setWidthPercentage(90.0f);
514
								document.add(new DottedLineSeparator());
515
								document.add(taxTable);
516
							}else{
517
								PdfPTable extraInfoTable = getExtraInfoTable(order, provider, 16, warehouse.getBillingType());
518
								extraInfoTable.setSpacingBefore(5.0f);
519
								extraInfoTable.setWidthPercentage(90.0f);
520
								document.add(new DottedLineSeparator());
521
								document.add(extraInfoTable);
522
							}
8303 amar.kumar 523
						} else {
13276 manish.sha 524
							document.newPage();
8303 amar.kumar 525
						}
13276 manish.sha 526
					} else if (new Long(order.getSource()).intValue() == OrderSource.SNAPDEAL.getValue() &&(ordersList.size()==1)) {
8303 amar.kumar 527
						if(withBill){
13276 manish.sha 528
							PdfPTable taxTable = getTaxCumRetailInvoiceTable(ordersList, provider, shippingLocation.getLocation() + "-" + shippingLocation.getPincode() , shippingLocation.getTinNumber(), invoiceFormat);
8303 amar.kumar 529
							taxTable.setSpacingBefore(5.0f);
530
							taxTable.setWidthPercentage(90.0f);
531
							document.add(new DottedLineSeparator());
532
							document.add(taxTable);
533
						}else{
534
							PdfPTable extraInfoTable = getExtraInfoTable(order, provider, 16, warehouse.getBillingType());
535
							extraInfoTable.setSpacingBefore(5.0f);
536
							extraInfoTable.setWidthPercentage(90.0f);
537
							document.add(new DottedLineSeparator());
538
							document.add(extraInfoTable);
539
						}
540
					}
8488 amar.kumar 541
					if(withBill){
13276 manish.sha 542
						PdfPTable taxTable = getTaxCumRetailInvoiceTable(ordersList, provider, shippingLocation.getLocation() + "-" + shippingLocation.getPincode() , shippingLocation.getTinNumber(), invoiceFormat);
8488 amar.kumar 543
						taxTable.setSpacingBefore(5.0f);
544
						taxTable.setWidthPercentage(90.0f);
545
						document.add(new DottedLineSeparator());
546
						document.add(taxTable);
13276 manish.sha 547
						if(order.getSource() == OrderSource.FLIPKART.getValue()) {
548
							//document.add(new DottedLineSeparator());
549
							document.add(getFlipkartBarCodes(order));
550
						}
551
 
8488 amar.kumar 552
					}else{
553
						PdfPTable extraInfoTable = getExtraInfoTable(order, provider, 16, warehouse.getBillingType());
554
						extraInfoTable.setSpacingBefore(5.0f);
555
						extraInfoTable.setWidthPercentage(90.0f);
556
						document.add(new DottedLineSeparator());
557
						document.add(extraInfoTable);
558
					}
13276 manish.sha 559
 
560
					if("Bulk".equalsIgnoreCase(invoiceFormat)){
561
						PdfPTable orderItemsDetailTable = new PdfPTable(1);
562
						orderItemsDetailTable.setWidthPercentage(90.0f);
563
						orderItemsDetailTable.setSpacingBefore(5.0f);
13313 manish.sha 564
						orderItemsDetailTable.addCell(new Phrase("SubOrder Ids :", helveticaBold8));
13276 manish.sha 565
						StringBuffer sbOrders = new StringBuffer();
566
 
567
						for(Order o1 : orders){
568
							sbOrders.append(o1.getId()+",");
569
						}
570
 
571
 
572
						String orderIds = sbOrders.toString();
573
						orderIds = orderIds.substring(0, orderIds.length()-1);
574
 
575
						orderItemsDetailTable.addCell(new Phrase(orderIds.toString(), helvetica8));
13319 manish.sha 576
 
13276 manish.sha 577
 
578
						StringBuffer sbImeis = new StringBuffer();
579
 
580
						for(Order o1 : orders){
581
							if(o1.getLineitems().get(0).getSerial_number()!=null){
582
								sbImeis.append(o1.getLineitems().get(0).getSerial_number()+",");
583
							}
584
						}
585
 
13319 manish.sha 586
						if(sbImeis.length()>0){
587
							orderItemsDetailTable.addCell(new Phrase("IMEI Details :", helveticaBold8));
588
 
589
							logger.info("Imeis List:- " + sbImeis);
590
							String imeis = sbImeis.toString();
591
							imeis = imeis.substring(0, imeis.length()-2);
592
							logger.info("Final Imeis List:- " + sbImeis);
593
 
594
							orderItemsDetailTable.addCell(new Phrase(imeis, helvetica8));
595
						}
596
 
13276 manish.sha 597
						document.add(orderItemsDetailTable);
9009 amar.kumar 598
					}
18779 manish.sha 599
					PdfPTable billingAddressTable = getCustomerAddressTable(order, null, true, helvetica8, true, true);
18769 manish.sha 600
					if(billingAddress!=null){
601
						billingAddressTable.setWidthPercentage(90.0f);
602
						billingAddressTable.setSpacingBefore(5.0f);
603
						billingAddressTable.addCell(new Phrase("Billing Address :", helveticaBold8));
604
						billingAddressTable.addCell(new Phrase(billingAddress.getName() +" "+billingAddress.getLine1()
605
								+billingAddress.getLine2() +" "+billingAddress.getCity() + "," + billingAddress.getState()
606
								+" -"+billingAddress.getPin(), helvetica8));
607
						document.add(billingAddressTable);
608
					}
609
 
13276 manish.sha 610
					document.newPage();
7014 rajveer 611
				}
612
			}
13276 manish.sha 613
 
18875 manish.sha 614
 
615
			if(logisticsTxnIdOrdersMap!=null && logisticsTxnIdOrdersMap.size()>0){
616
                for(String logisticsTxnId : logisticsTxnIdOrdersMap.keySet()){
18879 manish.sha 617
                	document.newPage(); 
18875 manish.sha 618
					List<Order> ordersList = logisticsTxnIdOrdersMap.get(logisticsTxnId);
18881 manish.sha 619
					PdfPTable headerTable = new PdfPTable(1);
18875 manish.sha 620
	    	        headerTable.addCell(getInvoiceTableHeader(0,ordersList.get(0).getLogisticsTransactionId()));
621
					PdfPTable packagingTable = getPackagingInfoTable(ordersList);
18876 manish.sha 622
					PdfPTable signTable = new PdfPTable(new float[]{0.1f, 0.8f, 0.1f});
623
					signTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
624
					signTable.setSplitLate(false);
625
					signTable.setSpacingBefore(10.0f);
626
					signTable.addCell(new Phrase("Biller",helveticaBold8));
627
					signTable.addCell(new Phrase("",helveticaBold8));
628
					signTable.addCell(new Phrase("Packer",helveticaBold8));
18875 manish.sha 629
					document.add(headerTable);
630
					document.add(packagingTable);
18876 manish.sha 631
					document.add(signTable);
18875 manish.sha 632
				}
633
 
634
			}
635
 
7014 rajveer 636
			document.close();
637
			baosPDF.close();
638
			// Adding facility to store the bill on the local directory. This will happen for only for Mahipalpur warehouse.
639
			if(withBill && !printAll){
7079 rajveer 640
				String strOrderId = StringUtils.repeat("0", 10-String.valueOf(orderId).length()) + orderId;  
7014 rajveer 641
				String dirPath = "/SaholicInvoices" + File.separator + strOrderId.substring(0, 2) + File.separator + strOrderId.substring(2, 4) + File.separator + strOrderId.substring(4, 6);
642
				String filename = dirPath + File.separator + orderId + ".pdf";
643
				File dirFile = new File(dirPath);
644
				if(!dirFile.exists()){
645
					dirFile.mkdirs();
646
				}
647
				File f = new File(filename);
648
				FileOutputStream fos = new FileOutputStream(f);
649
				baosPDF.writeTo(fos);
650
			}
651
		} catch (Exception e) {
652
			logger.error("Error while generating Invoice: ", e);
653
		}
654
		return baosPDF;
655
	}
18875 manish.sha 656
 
657
 
658
	private PdfPTable getPackagingInfoTable(List<Order> orderList) throws CatalogServiceException, TException{
18879 manish.sha 659
		PdfPTable finalTable = new PdfPTable(1);
660
		PdfPTable customerAddresTable = new PdfPTable(1);
18880 manish.sha 661
		customerAddresTable.addCell(new Phrase("Customer Details: "+orderList.get(0).getCustomer_name() +" "+orderList.get(0).getCustomer_address1()
18879 manish.sha 662
				+orderList.get(0).getCustomer_address2() +" "+orderList.get(0).getCustomer_city() + "," + orderList.get(0).getCustomer_state()
663
				+" -"+orderList.get(0).getCustomer_pincode(), helvetica8));
18882 manish.sha 664
		PdfPTable packagingTable = new PdfPTable(new float[]{0.05f, 0.1f, 0.1f, 0.25f, 0.15f, 0.1f, 0.1f, 0.05f, 0.1f});
18876 manish.sha 665
		packagingTable.setSplitLate(false);
18882 manish.sha 666
		packagingTable.addCell(new Phrase("ItemId", helveticaBold8));
18875 manish.sha 667
		packagingTable.addCell(new Phrase("BIN Id", helveticaBold8));
18882 manish.sha 668
		packagingTable.addCell(new Phrase("SubOrder Id", helveticaBold8));
669
		packagingTable.addCell(new Phrase("Item Desc", helveticaBold8));
670
		packagingTable.addCell(new Phrase("Sr Nos", helveticaBold8));
671
		packagingTable.addCell(new Phrase("Rate", helveticaBold8));
18875 manish.sha 672
		packagingTable.addCell(new Phrase("Pack Size", helveticaBold8));
18882 manish.sha 673
		packagingTable.addCell(new Phrase("Qty", helveticaBold8));
674
		packagingTable.addCell(new Phrase("Total Pcs.", helveticaBold8));
18875 manish.sha 675
 
676
		Map<Long, Item> itemMap = new HashMap<Long, Item>();
677
 
678
		CatalogService.Client catalogClient = ctsc.getClient();
679
		for(Order order:orderList){
680
			if(!itemMap.containsKey(order.getLineitems().get(0).getItem_id())){
681
				itemMap.put(order.getLineitems().get(0).getItem_id(), catalogClient.getItem(order.getLineitems().get(0).getItem_id()));
682
			}
683
		}
684
 
18883 manish.sha 685
		double grandTotalPieces = 0;
686
 
18875 manish.sha 687
		for(Order order:orderList){
688
			packagingTable.addCell(new Phrase(order.getLineitems().get(0).getItem_id()+"", helvetica8));
689
			packagingTable.addCell(new Phrase("", helveticaBold8));
690
			packagingTable.addCell(new Phrase(order.getId()+"", helvetica8));
691
			packagingTable.addCell(new Phrase(getItemDisplayName(order.getLineitems().get(0), false), helvetica8));
692
			if(order.getLineitems().get(0).isSetSerial_number()){
693
				packagingTable.addCell(new Phrase(order.getLineitems().get(0).getSerial_number(), helvetica8));
694
			}else{
695
				packagingTable.addCell(new Phrase("", helvetica8));
696
			}
18879 manish.sha 697
			packagingTable.addCell(new Phrase(order.getLineitems().get(0).getUnit_price()+"", helvetica8));
18875 manish.sha 698
			packagingTable.addCell(new Phrase(itemMap.get(order.getLineitems().get(0).getItem_id()).getPackQuantity()+"", helvetica8));
699
			packagingTable.addCell(new Phrase(order.getLineitems().get(0).getQuantity()+"", helvetica8));
700
			packagingTable.addCell(new Phrase((order.getLineitems().get(0).getQuantity()*itemMap.get(order.getLineitems().get(0).getItem_id()).getPackQuantity())+"", helvetica8));
18883 manish.sha 701
			grandTotalPieces += order.getLineitems().get(0).getQuantity()*itemMap.get(order.getLineitems().get(0).getItem_id()).getPackQuantity();
18875 manish.sha 702
		}
18883 manish.sha 703
		packagingTable.addCell(getTotalCell(8));
704
		packagingTable.addCell(new Phrase(grandTotalPieces+"", helveticaBold8));
18879 manish.sha 705
		finalTable.addCell(customerAddresTable);
706
		finalTable.addCell(packagingTable);
707
		return finalTable;
18875 manish.sha 708
	}
3065 chandransh 709
 
13276 manish.sha 710
	private PdfPTable getDispatchAdviceTable(List<Order> orderList, Warehouse warehouse, Provider provider, float barcodeFontSize, String destCode, boolean withBill, Warehouse shippingLocation, String invoiceFormat){
711
		Order order = orderList.get(0);
7014 rajveer 712
		Font barCodeFont = getBarCodeFont(provider, barcodeFontSize);
13276 manish.sha 713
 
714
		double totalAmount = 0.0;
715
		double totalWeight = 0.0;
716
 
717
		for (Order o: orderList){
17470 manish.sha 718
			totalAmount = totalAmount + o.getTotal_amount() +o.getShippingCost()-o.getGvAmount()-o.getAdvanceAmount();
13276 manish.sha 719
			totalWeight = totalWeight + o.getTotal_weight();
720
		}
2787 chandransh 721
 
7014 rajveer 722
		PdfPTable table = new PdfPTable(1);
18847 manish.sha 723
		table.setSplitLate(false);
7014 rajveer 724
		table.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8106 manish.sha 725
 
726
		PdfPTable titleBarTable = new PdfPTable(new float[]{0.4f, 0.4f, 0.2f});
8107 manish.sha 727
		titleBarTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8106 manish.sha 728
 
8103 manish.sha 729
		PdfPTable logoTable = new PdfPTable(2);
730
		addLogoTable(logoTable,order); 
7318 rajveer 731
 
7014 rajveer 732
		PdfPCell titleCell = getTitleCell();
18530 manish.sha 733
		PdfPTable customerTable = getCustomerAddressTable(order, destCode, false, helvetica12, false, false);
13276 manish.sha 734
		PdfPTable providerInfoTable = getProviderTable(order, provider, barCodeFont, totalWeight);
2787 chandransh 735
 
7014 rajveer 736
		PdfPTable dispatchTable = new PdfPTable(new float[]{0.5f, 0.1f, 0.4f});
737
		dispatchTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
738
		dispatchTable.addCell(customerTable);
739
		dispatchTable.addCell(new Phrase(" "));
740
		dispatchTable.addCell(providerInfoTable);
2787 chandransh 741
 
13276 manish.sha 742
		PdfPTable invoiceTable = getTopInvoiceTable(orderList, shippingLocation.getTinNumber(), invoiceFormat);
8110 manish.sha 743
		PdfPTable addressTable = new PdfPTable(1);
744
		addressTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
745
		addressTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_LEFT);
746
 
7014 rajveer 747
		PdfPCell addressCell = getAddressCell(shippingLocation.getLocation() +
17203 manish.sha 748
				" - " + shippingLocation.getPincode() + "\nContact No.- +91-9811247808" + "\n\n");
2787 chandransh 749
 
7014 rajveer 750
		PdfPTable chargesTable = new PdfPTable(1);
751
		chargesTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
752
		chargesTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
753
		if(order.isLogisticsCod()){
13276 manish.sha 754
			chargesTable.addCell(new Phrase("AMOUNT TO BE COLLECTED : Rs " + (totalAmount), helveticaBold12));
7014 rajveer 755
			chargesTable.addCell(new Phrase("RTO ADDRESS:DEL/HPW/111116"));
7994 manish.sha 756
			//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
757
			if(order.getLogistics_provider_id()==7L){
758
				in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
759
				String fedexCodReturnBarcode = "";
8080 manish.sha 760
				String fedexCodReturnTrackingId = "";
7994 manish.sha 761
				try {
762
					fedexCodReturnBarcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_COD_Return_BarCode");
8080 manish.sha 763
					fedexCodReturnTrackingId = tclient.getOrderAttributeValue(order.getId(), "FedEx_COD_Return_Tracking_No");
7994 manish.sha 764
				} catch (TException e1) {
765
					logger.error("Error while getting the provider information.", e1);
766
				}
8080 manish.sha 767
				PdfPCell formIdCell= new PdfPCell(new Paragraph("COD Return "+fedexCodReturnTrackingId+" Form id-0325", helvetica6));
8104 manish.sha 768
				formIdCell.setPaddingTop(2.0f);
7994 manish.sha 769
				formIdCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
770
				formIdCell.setBorder(Rectangle.NO_BORDER);
771
				chargesTable.addCell(new Phrase("PRIORITY OVERNIGHT ", helvetica8));
772
				chargesTable.addCell(formIdCell);
8035 manish.sha 773
 
8067 manish.sha 774
				generateBarcode(fedexCodReturnBarcode, "fedex_codr_"+order.getId());
8037 manish.sha 775
 
8067 manish.sha 776
				Image barcodeImage=null;
777
				try {
778
					barcodeImage = Image.getInstance("/tmp/"+"fedex_codr_"+order.getId()+".png");
779
				} catch (Exception e) {
780
					logger.error("Exception during getting Barcode Image for Fedex : ", e);
781
				}
782
 
8173 manish.sha 783
				PdfPTable codReturnTable = new PdfPTable(new float[]{0.6f,0.4f});
784
				codReturnTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
785
				codReturnTable.addCell(barcodeImage);
786
				codReturnTable.addCell(new Phrase(" "));
787
				chargesTable.addCell(codReturnTable);
788
 
7994 manish.sha 789
			}
790
			//End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
7014 rajveer 791
		} else {
792
			chargesTable.addCell(new Phrase("Do not pay any extra charges to the Courier."));  
793
		}
8080 manish.sha 794
 
795
		if(order.getLogistics_provider_id()==7L){
796
			chargesTable.addCell(new Phrase("Term and Condition:- Subject to the Conditions of Carriage which " +
797
					"limits the liability of FedEx for loss, delay or damage to the consignment." +
798
					" Visit http://www.fedex.com/in/domestic/services/terms to view the conitions of Carriage" ,
8082 manish.sha 799
					new Font(FontFamily.TIMES_ROMAN, 8f)));
8080 manish.sha 800
		}
10310 amar.kumar 801
 
8110 manish.sha 802
		addressTable.addCell(new Phrase("If undelivered, return to:", helvetica10));
803
		addressTable.addCell(addressCell);
804
 
7014 rajveer 805
		PdfPTable addressAndNoteTable = new PdfPTable(new float[]{0.3f, 0.7f});
806
		addressAndNoteTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8110 manish.sha 807
		addressAndNoteTable.addCell(addressTable);
7014 rajveer 808
		addressAndNoteTable.addCell(chargesTable);
2787 chandransh 809
 
8106 manish.sha 810
		titleBarTable.addCell(logoTable);
811
		titleBarTable.addCell(titleCell);
812
		titleBarTable.addCell(" ");
813
 
814
		table.addCell(titleBarTable);
7014 rajveer 815
		table.addCell(dispatchTable);
816
		table.addCell(invoiceTable);
817
		table.addCell(addressAndNoteTable);
818
		return table;
819
	}
2787 chandransh 820
 
8103 manish.sha 821
	private void addLogoTable(PdfPTable logoTable,Order order) {
7318 rajveer 822
		logoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
823
		logoTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_RIGHT);
824
		logoTable.getDefaultCell().setVerticalAlignment(Element.ALIGN_BOTTOM);
8096 manish.sha 825
 
7318 rajveer 826
		PdfPCell logoCell;
827
		String logoPath;
8102 manish.sha 828
 
7556 rajveer 829
		if(order.getSource() == OrderSource.STORE.getValue()){
830
			logoCell = new PdfPCell(new Phrase(""));
831
 
832
		}else{
8102 manish.sha 833
			logoPath = InvoiceGenerationService.class.getResource("/logo.jpg").getPath();
8094 manish.sha 834
 
7318 rajveer 835
			try {
836
				logoCell = new PdfPCell(Image.getInstance(logoPath), false);
837
			} catch (Exception e) {
838
				//Too Many exceptions to catch here: BadElementException, MalformedURLException and IOException
839
				logger.warn("Couldn't load the Saholic logo: ", e);
840
				logoCell = new PdfPCell(new Phrase("Saholic Logo"));
841
			}
842
 
843
		}
8090 manish.sha 844
		logoCell.setBorder(Rectangle.NO_BORDER);
845
		logoCell.setHorizontalAlignment(Element.ALIGN_LEFT);
8102 manish.sha 846
		logoTable.addCell(logoCell);
847
		logoTable.addCell(" ");
8103 manish.sha 848
 
7318 rajveer 849
	}
850
 
7014 rajveer 851
	private Font getBarCodeFont(Provider provider, float barcodeFontSize) {
852
		String fontPath = InvoiceGenerationService.class.getResource("/" + provider.getName().toLowerCase() + "/barcode.TTF").getPath();
853
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
854
		ttfFontFactory.register(fontPath, "barcode");
855
		Font barCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, barcodeFontSize);
856
		return barCodeFont;
857
	}
2787 chandransh 858
 
7014 rajveer 859
	private PdfPCell getTitleCell() {
860
		PdfPCell titleCell = new PdfPCell(new Phrase("Dispatch Advice", helveticaBold12));
861
		titleCell.setHorizontalAlignment(Element.ALIGN_CENTER);
862
		titleCell.setBorder(Rectangle.NO_BORDER);
863
		return titleCell;
864
	}
2787 chandransh 865
 
13276 manish.sha 866
	private PdfPTable getProviderTable(Order order, Provider provider, Font barCodeFont, double totalWeight) {
7014 rajveer 867
		PdfPTable providerInfoTable = new PdfPTable(1);
868
		providerInfoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
7318 rajveer 869
		if(order.isLogisticsCod()){
8551 manish.sha 870
			PdfPCell deliveryTypeCell = new PdfPCell(new Phrase("COD   ", helvetica22));
7318 rajveer 871
			deliveryTypeCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
872
			deliveryTypeCell.setBorder(Rectangle.NO_BORDER);
873
			providerInfoTable.addCell(deliveryTypeCell);
874
		}
875
 
8035 manish.sha 876
 
7014 rajveer 877
		PdfPCell providerNameCell = new PdfPCell(new Phrase(provider.getName(), helveticaBold12));
878
		providerNameCell.setHorizontalAlignment(Element.ALIGN_LEFT);
879
		providerNameCell.setBorder(Rectangle.NO_BORDER);
7994 manish.sha 880
		PdfPCell formIdCell= null;
881
		if(order.getLogistics_provider_id()==7L){
882
			if(order.isCod()){
8034 manish.sha 883
				formIdCell = new PdfPCell(new Paragraph(order.getAirwaybill_no()+" Form id-0305", helvetica6));
7994 manish.sha 884
			}
885
			else{
8034 manish.sha 886
				formIdCell = new PdfPCell(new Paragraph(order.getAirwaybill_no()+" Form id-0467", helvetica6));
7994 manish.sha 887
			}
8551 manish.sha 888
			formIdCell.setPaddingTop(1.0f);
8015 rajveer 889
			formIdCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
890
			formIdCell.setBorder(Rectangle.NO_BORDER);
7994 manish.sha 891
		}
8015 rajveer 892
 
7994 manish.sha 893
 
894
		PdfPCell awbNumberCell= null;
8034 manish.sha 895
		String fedexPackageBarcode = "";
7994 manish.sha 896
		if(order.getLogistics_provider_id()!=7L){
897
			awbNumberCell = new PdfPCell(new Paragraph("*" + order.getAirwaybill_no() + "*", barCodeFont));
8017 manish.sha 898
			awbNumberCell.setPaddingTop(20.0f);
7994 manish.sha 899
		}
900
		else{
8013 rajveer 901
			in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
902
			try {
903
				fedexPackageBarcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_Package_BarCode");
904
			} catch (TException e1) {
905
				logger.error("Error while getting the provider information.", e1);
906
			}
8174 manish.sha 907
			awbNumberCell = new PdfPCell(new Paragraph(" ", helvetica6));
908
		}
909
		awbNumberCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
910
		awbNumberCell.setBorder(Rectangle.NO_BORDER);
911
 
912
		providerInfoTable.addCell(providerNameCell);
913
		if(formIdCell != null){
914
			providerInfoTable.addCell(formIdCell);
915
		}
916
		//End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
917
		if(order.getLogistics_provider_id()==7L){
8169 manish.sha 918
			generateBarcode(fedexPackageBarcode, "fedex_"+order.getId());
919
 
920
			Image barcodeImage=null;
921
			try {
922
				barcodeImage = Image.getInstance("/tmp/"+"fedex_"+order.getId()+".png");
923
			} catch (Exception e) {
924
				logger.error("Exception during getting Barcode Image for Fedex : ", e);
925
			}
8174 manish.sha 926
			providerInfoTable.addCell(barcodeImage);
7994 manish.sha 927
		}
8174 manish.sha 928
		providerInfoTable.addCell(awbNumberCell);
7014 rajveer 929
 
7792 anupam.sin 930
		Warehouse warehouse = null;
931
		try{
932
    		InventoryClient isc = new InventoryClient();
7804 amar.kumar 933
    		warehouse = isc.getClient().getWarehouse(order.getWarehouse_id());
7803 amar.kumar 934
		} catch(Exception e) {
7792 anupam.sin 935
		    logger.error("Unable to get warehouse for id : " + order.getWarehouse_id(), e);
7805 amar.kumar 936
		    //TODO throw e;
7792 anupam.sin 937
		}
938
		DeliveryType dt =  DeliveryType.PREPAID;
939
        if (order.isLogisticsCod()) {
940
            dt = DeliveryType.COD;
941
        }
7994 manish.sha 942
        //Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
943
        if(order.getLogistics_provider_id()!=7L){
944
	        for (ProviderDetails detail : provider.getDetails()) {
945
	            if(in.shop2020.model.v1.inventory.WarehouseLocation.findByValue((int) detail.getLogisticLocation()) == warehouse.getLogisticsLocation() && detail.getDeliveryType() == dt) {
946
	                providerInfoTable.addCell(new Phrase("Account No : " + detail.getAccountNo(), helvetica8));
947
	            }
948
	        }
7792 anupam.sin 949
        }
7994 manish.sha 950
        else{
951
        	providerInfoTable.addCell(new Phrase("STANDARD OVERNIGHT ", helvetica8));
952
        }
953
        //End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
7014 rajveer 954
		Date awbDate;
955
		if(order.getBilling_timestamp() == 0){
956
			awbDate = new Date();
957
		}else{
958
			awbDate = new Date(order.getBilling_timestamp());
959
		}
8106 manish.sha 960
		if(order.getLogistics_provider_id()!=7L){
961
			providerInfoTable.addCell(new Phrase("AWB Date   : " + DateFormat.getDateInstance(DateFormat.MEDIUM).format(awbDate), helvetica8));
962
		}
13322 manish.sha 963
		providerInfoTable.addCell(new Phrase("Weight         : " + totalWeight + " Kg", helvetica8));
8182 amar.kumar 964
		if(order.getSource() == OrderSource.EBAY.getValue()){
965
			EbayOrder ebayOrder = null;
966
			try {
967
				ebayOrder = tsc.getClient().getEbayOrderByOrderId(order.getId());
968
			} catch (TException e) {
969
				logger.error("Error while getting ebay order", e);
970
			}
971
			providerInfoTable.addCell(new Phrase("PaisaPayId            : " + ebayOrder.getPaisaPayId(), helvetica8));
972
			providerInfoTable.addCell(new Phrase("Sales Rec Number: " + ebayOrder.getSalesRecordNumber(), helvetica8));
973
		}
7994 manish.sha 974
		//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
975
		if(order.getLogistics_provider_id()==7L){
976
			providerInfoTable.addCell(new Phrase("Bill T/C Sender      "+ "Bill D/T Sender", helvetica8));
977
		}
978
		//End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
7014 rajveer 979
		return providerInfoTable;
980
	}
981
 
13276 manish.sha 982
	private PdfPTable getTopInvoiceTable(List<Order> orderList, String tinNo, String invoiceFormat){
7014 rajveer 983
		PdfPTable invoiceTable = new PdfPTable(new float[]{0.2f, 0.2f, 0.3f, 0.1f, 0.1f, 0.1f});
984
		invoiceTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
985
 
13276 manish.sha 986
		invoiceTable.addCell(getInvoiceTableHeader(6,orderList.get(0).getLogisticsTransactionId()));
987
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
988
			invoiceTable.addCell(new Phrase("Sr No", helvetica8));
989
		}else{
990
			invoiceTable.addCell(new Phrase("Order No", helvetica8));
991
		}
7014 rajveer 992
		invoiceTable.addCell(new Phrase("Paymode", helvetica8));
993
		invoiceTable.addCell(new Phrase("Product Name", helvetica8));
994
		invoiceTable.addCell(new Phrase("Quantity", helvetica8));
995
		invoiceTable.addCell(new Phrase("Rate", helvetica8));
996
		invoiceTable.addCell(new Phrase("Amount", helvetica8));
13276 manish.sha 997
		double totalAmount = 0.0;
17470 manish.sha 998
		double totalShippingCost = 0.0;
13276 manish.sha 999
		double insuranceAmount = 0.0;
1000
		double advanceAmount = 0.0;
1001
 
1002
 
1003
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
1004
			Map<Long, String> itemNamesMap= new HashMap<Long, String>();
1005
			Map<Long, Double> itemQuantityMap = new HashMap<Long, Double>();
1006
			Map<Long, Double> itemRateMap = new HashMap<Long, Double>();
1007
			Map<Long, Double> itemTotalAmtMap = new HashMap<Long, Double>();
1008
			String paymentMode = "";
1009
			for(Order order : orderList){
1010
				LineItem lineitem = order.getLineitems().get(0);
13496 manish.sha 1011
				totalAmount = totalAmount + order.getTotal_amount()-order.getAdvanceAmount();
17470 manish.sha 1012
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 1013
				if(order.getInsurer() > 0) {
1014
					insuranceAmount =insuranceAmount + order.getInsuranceAmount();
1015
				}
1016
				if(order.getSource() == OrderSource.STORE.getValue()) {
1017
					advanceAmount = advanceAmount + order.getAdvanceAmount();
1018
				}
1019
				if(!itemNamesMap.containsKey(lineitem.getItem_id())){
1020
					itemNamesMap.put(lineitem.getItem_id(), getItemDisplayName(lineitem, false));
1021
				}
1022
				if(!itemRateMap.containsKey(lineitem.getItem_id())){
1023
					itemRateMap.put(lineitem.getItem_id(), lineitem.getUnit_price());
1024
				}
1025
				if(itemQuantityMap.containsKey(lineitem.getItem_id())){
1026
					double currentQuantity = itemQuantityMap.get(lineitem.getItem_id()) +lineitem.getQuantity();
1027
					itemQuantityMap.put(lineitem.getItem_id(), currentQuantity);
1028
				}else{
1029
					itemQuantityMap.put(lineitem.getItem_id(), lineitem.getQuantity());
1030
				}
1031
 
1032
				if(itemTotalAmtMap.containsKey(lineitem.getItem_id())){
13492 manish.sha 1033
					double totalItemAmount = itemTotalAmtMap.get(lineitem.getItem_id()) + (order.getTotal_amount()-order.getAdvanceAmount()-order.getInsuranceAmount());
13276 manish.sha 1034
					itemTotalAmtMap.put(lineitem.getItem_id(), totalItemAmount);
1035
				}else{
13492 manish.sha 1036
					itemTotalAmtMap.put(lineitem.getItem_id(), (order.getTotal_amount()-order.getAdvanceAmount()-order.getInsuranceAmount()));
13276 manish.sha 1037
				}
1038
				if(paymentMode==null || paymentMode.isEmpty()){
1039
					if(order.getPickupStoreId() > 0 && order.isCod() == true)
1040
						paymentMode = "In-Store";
1041
					else if (order.isCod())
1042
						paymentMode = "COD";
1043
					else
1044
						paymentMode = "Prepaid";
1045
				}		
1046
			}
1047
 
1048
			int serialNo = 0;
1049
			for(Long itemId : itemNamesMap.keySet()){
1050
				serialNo ++;
1051
				invoiceTable.addCell(new Phrase(serialNo+ "", helvetica8));
1052
				invoiceTable.addCell(new Phrase(paymentMode, helvetica8));
1053
				invoiceTable.addCell(new Phrase(itemNamesMap.get(itemId), helvetica8));
1054
				invoiceTable.addCell(new Phrase(itemQuantityMap.get(itemId)+"", helvetica8));
1055
				invoiceTable.addCell(new Phrase(itemRateMap.get(itemId)+"", helvetica8));
1056
				invoiceTable.addCell(new Phrase(itemTotalAmtMap.get(itemId)+"", helvetica8));
1057
			}
1058
 
1059
			if(insuranceAmount>0){
1060
				invoiceTable.addCell(getInsuranceCell(4));
1061
				invoiceTable.addCell(getPriceCell(insuranceAmount));
1062
				invoiceTable.addCell(getPriceCell(insuranceAmount));
1063
			}
1064
			if(advanceAmount>0){
1065
				invoiceTable.addCell(getAdvanceAmountCell(4));
1066
				invoiceTable.addCell(getPriceCell(advanceAmount));
1067
				invoiceTable.addCell(getPriceCell(advanceAmount));
1068
			}
1069
		}else{
1070
			for(Order order : orderList){
1071
				populateTopInvoiceTable(order, invoiceTable);
1072
				if(order.getInsurer() > 0) {
1073
					invoiceTable.addCell(getInsuranceCell(4));
1074
					invoiceTable.addCell(getPriceCell(order.getInsuranceAmount()));
1075
					invoiceTable.addCell(getPriceCell(order.getInsuranceAmount()));
1076
				}
7014 rajveer 1077
 
13276 manish.sha 1078
				if(order.getSource() == OrderSource.STORE.getValue()) {
1079
					invoiceTable.addCell(getAdvanceAmountCell(4));
1080
					invoiceTable.addCell(getPriceCell(order.getAdvanceAmount()));
1081
					invoiceTable.addCell(getPriceCell(order.getAdvanceAmount()));
1082
				}
13494 manish.sha 1083
				totalAmount = totalAmount + order.getTotal_amount()-order.getAdvanceAmount();
17470 manish.sha 1084
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 1085
			}
7014 rajveer 1086
		}
17470 manish.sha 1087
		if(totalShippingCost>0){
1088
			invoiceTable.addCell(getShippingCostCell(4));      
17501 manish.sha 1089
			invoiceTable.addCell(getRupeesCell(false));
1090
			invoiceTable.addCell(getPriceCell(totalShippingCost));
17470 manish.sha 1091
		}
7014 rajveer 1092
		invoiceTable.addCell(getTotalCell(4));      
17501 manish.sha 1093
		invoiceTable.addCell(getRupeesCell(true));
17470 manish.sha 1094
		invoiceTable.addCell(getTotalAmountCell(totalAmount+totalShippingCost));
13276 manish.sha 1095
 
7014 rajveer 1096
 
1097
		PdfPCell tinCell = new PdfPCell(new Phrase("TIN NO. " + tinNo, helvetica8));
1098
		tinCell.setColspan(6);
1099
		tinCell.setPadding(2);
1100
		invoiceTable.addCell(tinCell);
1101
 
1102
		return invoiceTable;
1103
	}
1104
 
1105
	private void populateTopInvoiceTable(Order order, PdfPTable invoiceTable) {
1106
		List<LineItem> lineitems = order.getLineitems();
1107
		for (LineItem lineitem : lineitems) {
1108
			invoiceTable.addCell(new Phrase(order.getId() + "", helvetica8));
1109
			if(order.getPickupStoreId() > 0 && order.isCod() == true)
1110
				invoiceTable.addCell(new Phrase("In-Store", helvetica8));
1111
			else if (order.isCod())
1112
				invoiceTable.addCell(new Phrase("COD", helvetica8));
1113
			else
1114
				invoiceTable.addCell(new Phrase("Prepaid", helvetica8));
7318 rajveer 1115
 
7190 amar.kumar 1116
			invoiceTable.addCell(getProductNameCell(lineitem, false, order.getFreebieItemId()));
2787 chandransh 1117
 
7014 rajveer 1118
			invoiceTable.addCell(new Phrase(lineitem.getQuantity() + "", helvetica8));
2787 chandransh 1119
 
7014 rajveer 1120
			invoiceTable.addCell(getPriceCell(lineitem.getUnit_price()-order.getGvAmount()));
1121
 
1122
			invoiceTable.addCell(getPriceCell(lineitem.getTotal_price()-order.getGvAmount()));
1123
		}
1124
	}
1125
 
1126
	private PdfPCell getAddressCell(String address) {
1127
		Paragraph addressParagraph = new Paragraph(address, new Font(FontFamily.TIMES_ROMAN, 8f));
1128
		PdfPCell addressCell = new PdfPCell();
1129
		addressCell.addElement(addressParagraph);
1130
		addressCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1131
		addressCell.setBorder(Rectangle.NO_BORDER);
1132
		return addressCell;
1133
	}
1134
 
13276 manish.sha 1135
	private PdfPTable getTaxCumRetailInvoiceTable(List<Order> orderList, Provider provider, String ourAddress, String tinNo, String invoiceFormat){
1136
		Order order = orderList.get(0);
7014 rajveer 1137
		PdfPTable taxTable = new PdfPTable(1);
1138
		Phrase phrase = null;
18847 manish.sha 1139
		taxTable.setSplitLate(false);
7014 rajveer 1140
		taxTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1141
		taxTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
8104 manish.sha 1142
 
8110 manish.sha 1143
		PdfPTable logoTitleAndOurAddressTable = new PdfPTable(new float[]{0.4f, 0.3f, 0.3f});
8107 manish.sha 1144
		logoTitleAndOurAddressTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8112 manish.sha 1145
		logoTitleAndOurAddressTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_LEFT);
8107 manish.sha 1146
 
8110 manish.sha 1147
 
8103 manish.sha 1148
		PdfPTable logoTable = new PdfPTable(2);
1149
		addLogoTable(logoTable,order); 
7318 rajveer 1150
 
7014 rajveer 1151
 
17203 manish.sha 1152
		Paragraph sorlAddress = new Paragraph(ourAddress + "\n Contact No.- +91-9811247808" + "\nTIN NO. " + tinNo, new Font(FontFamily.TIMES_ROMAN, 8f, Element.ALIGN_CENTER));
7014 rajveer 1153
		PdfPCell sorlAddressCell = new PdfPCell(sorlAddress);
1154
		sorlAddressCell.addElement(sorlAddress);
8110 manish.sha 1155
		sorlAddressCell.setHorizontalAlignment(Element.ALIGN_LEFT);
7014 rajveer 1156
 
18769 manish.sha 1157
		PdfPTable customerAddress = getCustomerAddressTable(order, null, true, helvetica8, true, false);
18657 manish.sha 1158
		if (order.getOrderType().equals(OrderType.B2B)) {
1159
			if(billingAddress!=null){
1160
				if(order.getCustomer_state().trim().equalsIgnoreCase(billingAddress.getState())){
1161
					phrase = new Phrase("TAX INVOICE", helveticaBold12);
1162
				}else{
1163
					phrase = new Phrase("RETAIL INVOICE", helveticaBold12);
1164
				}
1165
			}else{
1166
				phrase = new Phrase("TAX INVOICE", helveticaBold12);
1167
			}
1168
		} else {
1169
			phrase = new Phrase("RETAIL INVOICE", helveticaBold12);
1170
		}
18693 manish.sha 1171
 
1172
		PdfPCell retailInvoiceTitleCell = new PdfPCell(phrase);
1173
		retailInvoiceTitleCell.setHorizontalAlignment(Element.ALIGN_CENTER);
1174
		retailInvoiceTitleCell.setBorder(Rectangle.NO_BORDER);
1175
 
7014 rajveer 1176
		PdfPTable orderDetails = getOrderDetails(order, provider);
1177
 
1178
		PdfPTable addrAndOrderDetailsTable = new PdfPTable(new float[]{0.5f, 0.1f, 0.4f});
1179
		addrAndOrderDetailsTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1180
		addrAndOrderDetailsTable.addCell(customerAddress);
1181
		addrAndOrderDetailsTable.addCell(new Phrase(" "));
1182
		addrAndOrderDetailsTable.addCell(orderDetails);
1183
 
9319 amar.kumar 1184
		boolean isVAT = isVatApplicable(order);
13276 manish.sha 1185
		PdfPTable invoiceTable = getBottomInvoiceTable(orderList, isVAT, invoiceFormat);
7014 rajveer 1186
 
10607 manish.sha 1187
		PdfPTable regAddAndDisCellTable = new PdfPTable(2);
1188
 
7014 rajveer 1189
		PdfPCell disclaimerCell = new PdfPCell(new Phrase("Goods once sold will not be taken back.\nAll disputes subject to Delhi Jurisdiction.\nThis is a Computer generated Invoice.", helvetica8));
1190
		disclaimerCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1191
		disclaimerCell.setBorder(Rectangle.NO_BORDER);
7318 rajveer 1192
 
17203 manish.sha 1193
		PdfPCell regAddressCell = new PdfPCell(new Phrase(" SPICE ONLINE RETAIL PRIVATE LIMITED\n Regd. Add. 60-D, STREET NO. C-5, SAINIK FARMS,NEW DELHI-110062\n CIN: U74140DL2008PTC183856 Tel. No. +91-9811247808 E-mail. help@saholic.com Website. www.saholic.com", helvetica6));
10607 manish.sha 1194
		regAddressCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1195
		regAddressCell.setBorder(Rectangle.NO_BORDER);
1196
		/*SPICE ONLINE RETAIL PRIVATE LIMITED
1197
		Regd. Add. 60-D, STREET NO. C-5, SAINIK FARMS,NEW DELHI-110062
1198
		CIN: U74140DL2008PTC183856
1199
		Tel. No. 0120-2479977
1200
		E-mail. help@saholic.com
1201
		Website. www.saholic.com*/
9014 amar.kumar 1202
		PdfPCell powerTextCell = new PdfPCell(new Phrase("Powered By  Flipkart", helvetica8));
1203
		powerTextCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1204
		powerTextCell.setBorder(Rectangle.NO_BORDER);
1205
		powerTextCell.setPaddingBottom(30.0f);
8104 manish.sha 1206
 
1207
		logoTitleAndOurAddressTable.addCell(logoTable);
8110 manish.sha 1208
		logoTitleAndOurAddressTable.addCell(retailInvoiceTitleCell);
1209
		logoTitleAndOurAddressTable.addCell(sorlAddress);
8104 manish.sha 1210
 
10607 manish.sha 1211
		regAddAndDisCellTable.addCell(disclaimerCell);
1212
		regAddAndDisCellTable.addCell(regAddressCell);
1213
 
8104 manish.sha 1214
		taxTable.addCell(logoTitleAndOurAddressTable);
7014 rajveer 1215
		taxTable.addCell(addrAndOrderDetailsTable);
1216
		taxTable.addCell(invoiceTable);
10608 manish.sha 1217
		taxTable.addCell(regAddAndDisCellTable);
9014 amar.kumar 1218
		if(order.getSource() == OrderSource.FLIPKART.getValue()) {
1219
			taxTable.addCell(powerTextCell);
1220
 
1221
		}
10320 amar.kumar 1222
		if(order.getProductCondition().equals(ProductCondition.BAD)){
10328 amar.kumar 1223
			PdfPCell badSaleDisclaimerCell = new PdfPCell(new Phrase(" Item(s) above are sold on as is where is basis. They " +
10320 amar.kumar 1224
					"may be in dead/defective/damaged/refurbished/incomplete/open condition. These " +
1225
					"are not returnable, exchangeable or refundable under any circumstances. No " +
1226
					"warranty is assured on these items." ,
10329 amar.kumar 1227
					new Font(FontFamily.TIMES_ROMAN, 8f)));
10328 amar.kumar 1228
			badSaleDisclaimerCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1229
			badSaleDisclaimerCell.setBorder(Rectangle.NO_BORDER);
1230
			taxTable.addCell(badSaleDisclaimerCell);
10320 amar.kumar 1231
		}
7014 rajveer 1232
		return taxTable;
1233
	}
9009 amar.kumar 1234
 
9319 amar.kumar 1235
	private boolean isVatApplicable(Order order) {
1236
		if(order.getWarehouse_id() == 7) {
1237
			if(order.getCustomer_pincode().startsWith(delhiPincodePrefix)) {
1238
				return true;
1239
			} else {
1240
				return false;
1241
			}
12809 manish.sha 1242
		} else if(order.getWarehouse_id() == 3298){
1243
			for(int i=0; i< telanganaPincodes.length; i++) {
1244
				if(order.getCustomer_pincode().trim().equalsIgnoreCase(telanganaPincodes[i])) {
1245
					return true;
1246
				}
1247
			}
1248
			return false;
16196 manish.sha 1249
		} else if(order.getWarehouse_id() == 1765 || order.getWarehouse_id() == 1768){
1250
			for(int i=0; i< karnatakaPincodePrefix.length; i++) {
1251
				if(order.getCustomer_pincode().startsWith(karnatakaPincodePrefix[i])) {
1252
					return true;
1253
				}
1254
			}
1255
			return false;
12809 manish.sha 1256
		}
1257
		else {
9319 amar.kumar 1258
			for(int i=0; i< maharashtraPincodePrefix.length; i++) {
1259
				if(order.getCustomer_pincode().startsWith(maharashtraPincodePrefix[i])) {
1260
					return true;
1261
				}
1262
			}
1263
			return false;
1264
		}
1265
	}
1266
 
9037 amar.kumar 1267
	private PdfPTable getFlipkartBarCodes(Order order) {
1268
		PdfPTable flipkartTable = new PdfPTable(3);
1269
 
1270
		PdfPCell spacerCell = new PdfPCell();
9040 amar.kumar 1271
		spacerCell.setBorder(Rectangle.NO_BORDER);
9037 amar.kumar 1272
		spacerCell.setColspan(3);
9099 amar.kumar 1273
		spacerCell.setPaddingTop(330.0f);
9037 amar.kumar 1274
 
1275
		String flipkartCodeFontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1276
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
1277
		ttfFontFactory.register(flipkartCodeFontPath, "barcode");
1278
		Font flipkartBarCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, 20);
1279
 
9040 amar.kumar 1280
		String serialNumber = "0000000000";
9511 manish.sha 1281
		if(order.getLineitems().get(0).getSerial_number()!=null && !order.getLineitems().get(0).getSerial_number().isEmpty()) {
9040 amar.kumar 1282
			serialNumber = order.getLineitems().get(0).getSerial_number();
9511 manish.sha 1283
		} else if(order.getLineitems().get(0).getItem_number()!=null && !order.getLineitems().get(0).getItem_number().isEmpty()) {
9040 amar.kumar 1284
			serialNumber = order.getLineitems().get(0).getItem_number();
1285
		}
1286
 
1287
		PdfPCell serialNumberBarCodeCell = new PdfPCell(new Paragraph("*" +  serialNumber + "*", flipkartBarCodeFont));
9037 amar.kumar 1288
		serialNumberBarCodeCell.setBorder(Rectangle.TOP);
9044 amar.kumar 1289
		serialNumberBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1290
		serialNumberBarCodeCell.setPaddingTop(11.0f);
1291
 
1292
 
1293
		PdfPCell invoiceNumberBarCodeCell = new PdfPCell(new Paragraph("*" +  order.getInvoice_number() + "*", flipkartBarCodeFont));
1294
		invoiceNumberBarCodeCell.setBorder(Rectangle.TOP);
9044 amar.kumar 1295
		invoiceNumberBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1296
		invoiceNumberBarCodeCell.setPaddingTop(11.0f);
1297
 
1298
		double rate = order.getLineitems().get(0).getVatRate();
1299
		double salesTax = (rate * order.getTotal_amount())/(100 + rate);
9040 amar.kumar 1300
		PdfPCell vatAmtBarCodeCell = new PdfPCell(new Paragraph("*" +  amountFormat.format(salesTax) + "*", flipkartBarCodeFont));
9037 amar.kumar 1301
		vatAmtBarCodeCell.setBorder(Rectangle.TOP);
9044 amar.kumar 1302
		vatAmtBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1303
		vatAmtBarCodeCell.setPaddingTop(11.0f);
1304
 
1305
		flipkartTable.addCell(spacerCell);
1306
		flipkartTable.addCell(serialNumberBarCodeCell);
1307
		flipkartTable.addCell(invoiceNumberBarCodeCell);
1308
		flipkartTable.addCell(vatAmtBarCodeCell);
1309
 
1310
		return flipkartTable;
1311
 
9009 amar.kumar 1312
	}
18657 manish.sha 1313
 
1314
	private void setBillingAddress(long userId, in.shop2020.model.v1.user.UserContextService.Client userClient) throws TException{
1315
		billingAddress = userClient.getBillingAddressForUser(userId);
1316
	}
9009 amar.kumar 1317
 
18530 manish.sha 1318
	private PdfPTable getCustomerAddressTable(Order order, String destCode, boolean showPaymentMode, Font font, boolean forInvoce, boolean billingAdd){
7014 rajveer 1319
		PdfPTable customerTable = new PdfPTable(1);
1320
		if(forInvoce || order.getPickupStoreId() == 0){
18530 manish.sha 1321
			in.shop2020.model.v1.user.UserContextService.Client userClient = usc.getClient();
1322
			try {
1323
				if(billingAdd && userClient.isPrivateDealUser(order.getCustomer_id())){
18657 manish.sha 1324
					setBillingAddress(order.getCustomer_id(), userClient);
1325
					if(billingAddress!=null){
18769 manish.sha 1326
						return customerTable;
1327
						/*
18657 manish.sha 1328
						customerTable.addCell(new Phrase(billingAddress.getName(), font));
1329
						customerTable.addCell(new Phrase(billingAddress.getLine1(), font));
1330
						customerTable.addCell(new Phrase(billingAddress.getLine2(), font));
1331
						customerTable.addCell(new Phrase(billingAddress.getCity() + "," + billingAddress.getState(), font));
1332
						customerTable.addCell(new Phrase(billingAddress.getPin(), font));
1333
						customerTable.addCell(new Phrase("Phone : " + (billingAddress.getPhone()== null ? "" : billingAddress.getPhone()), font));
18769 manish.sha 1334
						*/
18657 manish.sha 1335
					}else{
1336
						customerTable.addCell(new Phrase(order.getCustomer_name(), font));
1337
						if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1338
							HsOrder hsOrder = null;
1339
							try {
1340
								hsOrder = tsc.getClient().getHomeShopOrder(order.getId(), null, null).get(0);
1341
							}catch (TException e) {
1342
								logger.error("Error while getting homeshop18 order", e);
1343
							}
1344
							String hsShippingName = hsOrder.getShippingName();
1345
							if(hsShippingName!=null && !hsShippingName.isEmpty()){
1346
								customerTable.addCell(new Phrase("Shipped To: "+hsShippingName, font));
1347
							}
1348
						}
1349
						customerTable.addCell(new Phrase(order.getCustomer_address1(), font));
1350
						customerTable.addCell(new Phrase(order.getCustomer_address2(), font));
1351
						customerTable.addCell(new Phrase(order.getCustomer_city() + "," + order.getCustomer_state(), font));
1352
						//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1353
						if(order.getLogistics_provider_id()!=7L){
1354
							if(destCode != null)
1355
								customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + destCode, helvetica16));
1356
							else
1357
								customerTable.addCell(new Phrase(order.getCustomer_pincode(), font));
1358
							}
1359
						else{
1360
							in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
1361
							String fedexLocationcode = "";
1362
							try {
1363
								fedexLocationcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_Location_Code");
1364
							} catch (TException e1) {
1365
								logger.error("Error while getting the provider information.", e1);
1366
							}
1367
							customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + fedexLocationcode, helvetica16));
1368
						}
1369
						//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1370
						if(order.getCustomer_mobilenumber()!=null && !order.getCustomer_mobilenumber().isEmpty()) {
1371
							customerTable.addCell(new Phrase("Phone : " + (order.getCustomer_mobilenumber()== null ? "" : order.getCustomer_mobilenumber()), font));
1372
						}
1373
					}
18530 manish.sha 1374
				}else{
18769 manish.sha 1375
					customerTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
18530 manish.sha 1376
					customerTable.addCell(new Phrase(order.getCustomer_name(), font));
1377
					if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1378
						HsOrder hsOrder = null;
1379
						try {
1380
							hsOrder = tsc.getClient().getHomeShopOrder(order.getId(), null, null).get(0);
1381
						}catch (TException e) {
1382
							logger.error("Error while getting homeshop18 order", e);
1383
						}
1384
						String hsShippingName = hsOrder.getShippingName();
1385
						if(hsShippingName!=null && !hsShippingName.isEmpty()){
1386
							customerTable.addCell(new Phrase("Shipped To: "+hsShippingName, font));
1387
						}
1388
					}
1389
					customerTable.addCell(new Phrase(order.getCustomer_address1(), font));
1390
					customerTable.addCell(new Phrase(order.getCustomer_address2(), font));
1391
					customerTable.addCell(new Phrase(order.getCustomer_city() + "," + order.getCustomer_state(), font));
1392
					//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1393
					if(order.getLogistics_provider_id()!=7L){
1394
						if(destCode != null)
1395
							customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + destCode, helvetica16));
1396
						else
1397
							customerTable.addCell(new Phrase(order.getCustomer_pincode(), font));
1398
						}
1399
					else{
1400
						in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
1401
						String fedexLocationcode = "";
1402
						try {
1403
							fedexLocationcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_Location_Code");
1404
						} catch (TException e1) {
1405
							logger.error("Error while getting the provider information.", e1);
1406
						}
1407
						customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + fedexLocationcode, helvetica16));
1408
					}
1409
					//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1410
					if(order.getCustomer_mobilenumber()!=null && !order.getCustomer_mobilenumber().isEmpty()) {
1411
						customerTable.addCell(new Phrase("Phone : " + (order.getCustomer_mobilenumber()== null ? "" : order.getCustomer_mobilenumber()), font));
1412
					}
13734 manish.sha 1413
				}
18530 manish.sha 1414
			} catch (TException e2) {
1415
				e2.printStackTrace();
13734 manish.sha 1416
			}
18530 manish.sha 1417
 
7014 rajveer 1418
		}else{
18769 manish.sha 1419
			customerTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
7014 rajveer 1420
			try {
5556 rajveer 1421
				in.shop2020.logistics.LogisticsService.Client lclient = (new LogisticsClient()).getClient();
7014 rajveer 1422
				PickupStore store = lclient.getPickupStore(order.getPickupStoreId());
1423
				customerTable.addCell(new Phrase(order.getCustomer_name() + " \nc/o " + store.getName(), font));
1424
				customerTable.addCell(new Phrase(store.getLine1(), font));
1425
				customerTable.addCell(new Phrase(store.getLine2(), font));
1426
				customerTable.addCell(new Phrase(store.getCity() + "," + store.getState(), font));
1427
				if(destCode != null)
1428
					customerTable.addCell(new Phrase(store.getPin() + " - " + destCode, helvetica16));
1429
				else
1430
					customerTable.addCell(new Phrase(store.getPin(), font));
1431
				customerTable.addCell(new Phrase("Phone :" + store.getPhone(), font));
5556 rajveer 1432
			} catch (TException e) {
1433
				// TODO Auto-generated catch block
1434
				e.printStackTrace();
1435
			}
5527 anupam.sin 1436
 
7014 rajveer 1437
		}
1438
 
1439
		if(order.getOrderType().equals(OrderType.B2B)) {
1440
			String tin = null;
1441
			in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
1442
			List<Attribute> attributes;
1443
			try {
1444
				attributes = tclient.getAllAttributesForOrderId(order.getId());
1445
 
1446
				for(Attribute attribute : attributes) {
1447
					if(attribute.getName().equals("tinNumber")) {
1448
						tin = attribute.getValue();
1449
					}
1450
				}
1451
				if (tin != null) {
1452
					customerTable.addCell(new Phrase("TIN :" + tin, font));
1453
				}
1454
 
1455
			} catch (Exception e) {
1456
				logger.error("Error while getting order attributes", e);
1457
			}
1458
		}
1459
		/*
2787 chandransh 1460
        if(showPaymentMode){
1461
            customerTable.addCell(new Phrase(" ", font));
1462
            customerTable.addCell(new Phrase("Payment Mode: Prepaid", font));
5856 anupam.sin 1463
        }*/
7014 rajveer 1464
		return customerTable;
1465
	}
2787 chandransh 1466
 
7014 rajveer 1467
	private PdfPTable getOrderDetails(Order order, Provider provider){
1468
		PdfPTable orderTable = new PdfPTable(new float[]{0.4f, 0.6f});
1469
		orderTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
2787 chandransh 1470
 
7014 rajveer 1471
		orderTable.addCell(new Phrase("Invoice No:", helvetica8));
1472
		orderTable.addCell(new Phrase(order.getInvoice_number(), helvetica8));
2787 chandransh 1473
 
7014 rajveer 1474
		orderTable.addCell(new Phrase("Date:", helvetica8));
1475
		orderTable.addCell(new Phrase(DateFormat.getDateInstance(DateFormat.MEDIUM).format(new Date(order.getBilling_timestamp())), helvetica8));
2787 chandransh 1476
 
13691 manish.sha 1477
		String hsCourierName = "";
12590 amit.gupta 1478
		if(order.getSource() == OrderSource.AMAZON.getValue() || order.getSource() == OrderSource.JUNGLEE.getValue()){
7528 rajveer 1479
			AmazonOrder aorder = null;
1480
			try {
1481
				aorder = tsc.getClient().getAmazonOrder(order.getId());
1482
			} catch (TException e) {
1483
				logger.error("Error while getting amazon order", e);
1484
			}
12590 amit.gupta 1485
			if(order.getSource() == OrderSource.JUNGLEE.getValue()){
1486
				orderTable.addCell(new Phrase("Junglee Order ID:", helvetica8));
1487
			}else {
1488
				orderTable.addCell(new Phrase("Amazon Order ID:", helvetica8));
1489
			}
7528 rajveer 1490
			orderTable.addCell(new Phrase(aorder.getAmazonOrderCode(), helvetica8));
13691 manish.sha 1491
		} else if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1492
			HsOrder hsOrder = null;
1493
			try {
13706 manish.sha 1494
				hsOrder = tsc.getClient().getHomeShopOrder(order.getId(), null, null).get(0);
13691 manish.sha 1495
			}catch (TException e) {
1496
				logger.error("Error while getting homeshop18 order", e);
1497
			}
1498
			hsCourierName = hsOrder.getCourierName();
1499
			orderTable.addCell(new Phrase("HomeShop18 Order No:", helvetica8));
1500
			orderTable.addCell(new Phrase(hsOrder.getHsOrderNo(), helvetica8));
1501
			orderTable.addCell(new Phrase("HomeShop18 Sub Order No:", helvetica8));
1502
			orderTable.addCell(new Phrase(hsOrder.getHsSubOrderNo(), helvetica8));
1503
 
8182 amar.kumar 1504
		} else if(order.getSource() == OrderSource.EBAY.getValue()){
1505
			EbayOrder ebayOrder = null;
1506
			try {
1507
				ebayOrder = tsc.getClient().getEbayOrderByOrderId(order.getId());
1508
			} catch (TException e) {
1509
				logger.error("Error while getting ebay order", e);
1510
			}
1511
			orderTable.addCell(new Phrase("PaisaPayId:", helvetica8));
1512
			orderTable.addCell(new Phrase(ebayOrder.getPaisaPayId(), helvetica8));
1513
			orderTable.addCell(new Phrase("Sales Rec Number:", helvetica8));
1514
			orderTable.addCell(new Phrase(new Long(ebayOrder.getSalesRecordNumber()).toString(), helvetica8));
8488 amar.kumar 1515
		} else if(order.getSource() == OrderSource.SNAPDEAL.getValue()){
1516
			SnapdealOrder snapdealOrder = null;
1517
			try {
11424 kshitij.so 1518
				snapdealOrder = tsc.getClient().getSnapdealOrder(order.getId(), null, null).get(0);
8488 amar.kumar 1519
			} catch (TException e) {
1520
				logger.error("Error while getting snapdeal order", e);
1521
			}
1522
			orderTable.addCell(new Phrase("Snapdeal OrderId:", helvetica8));
1523
			orderTable.addCell(new Phrase(new Long(snapdealOrder.getSubOrderId()).toString(), helvetica8));
8828 amar.kumar 1524
 
1525
			String refernceCodeFontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1526
			FontFactoryImp ttfFontFactory = new FontFactoryImp();
1527
			ttfFontFactory.register(refernceCodeFontPath, "barcode");
8876 amar.kumar 1528
			Font referenceCodeBarCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, 20);
8828 amar.kumar 1529
 
8874 amar.kumar 1530
			PdfPCell snapdealReferenceBarCodeCell = new PdfPCell(new Paragraph("*" +  snapdealOrder.getReferenceCode() + "*", referenceCodeBarCodeFont));
8828 amar.kumar 1531
			snapdealReferenceBarCodeCell.setBorder(Rectangle.NO_BORDER);
8876 amar.kumar 1532
			snapdealReferenceBarCodeCell.setPaddingTop(9.0f);
1533
			snapdealReferenceBarCodeCell.setColspan(2);
9042 amar.kumar 1534
			snapdealReferenceBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
8876 amar.kumar 1535
			//orderTable.addCell(new Phrase("Snapdeal ReferenceCode:", helvetica8));
8828 amar.kumar 1536
			orderTable.addCell(snapdealReferenceBarCodeCell);
1537
			//orderTable.addCell(new Phrase(snapdealOrder.getReferenceCode(), helvetica8));
7528 rajveer 1538
		}
8989 vikram.rag 1539
		else if(order.getSource() == OrderSource.FLIPKART.getValue()){
1540
			FlipkartOrder flipkartOrder = null;
1541
			try {
1542
				flipkartOrder = tsc.getClient().getFlipkartOrder(order.getId());
1543
			} catch (TException e) {
8996 amar.kumar 1544
				logger.error("Error while getting flipkart order", e);
8989 vikram.rag 1545
			}
1546
			orderTable.addCell(new Phrase("Flipkart OrderId:", helvetica8));
1547
			orderTable.addCell(new Phrase(flipkartOrder.getFlipkartOrderId(), helvetica8));
9037 amar.kumar 1548
 
1549
			//orderTable.addCell(new Phrase("Flipkart OrderItemId:", helvetica8));
1550
			String flipkartBarCodeFontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1551
			FontFactoryImp ttfFontFactory = new FontFactoryImp();
1552
			ttfFontFactory.register(flipkartBarCodeFontPath, "barcode");
9043 amar.kumar 1553
			Font flipkartBarCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, 18);
9037 amar.kumar 1554
 
9043 amar.kumar 1555
			orderTable.addCell(new Phrase("Flipkart OrderItemId:", helvetica8));
9037 amar.kumar 1556
			PdfPCell flipkartOrderItemIdBarCodeCell = new PdfPCell(new Paragraph("*" +  new Long(flipkartOrder.getFlipkartSubOrderId()).toString() + "*", flipkartBarCodeFont));
1557
			flipkartOrderItemIdBarCodeCell.setBorder(Rectangle.NO_BORDER);
1558
			flipkartOrderItemIdBarCodeCell.setPaddingTop(9.0f);
9043 amar.kumar 1559
			//flipkartOrderItemIdBarCodeCell.setColspan(2);
1560
			//flipkartOrderItemIdBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1561
			orderTable.addCell(flipkartOrderItemIdBarCodeCell);
1562
			//orderTable.addCell(new Phrase("Flipkart OrderItemId:", helvetica8));
1563
			//orderTable.addCell(new Phrase(new Long(flipkartOrder.getFlipkartSubOrderId()).toString(), helvetica8));
8989 vikram.rag 1564
		}
1565
 
1566
 
7014 rajveer 1567
		orderTable.addCell(new Phrase("Order Date:", helvetica8));
1568
		orderTable.addCell(new Phrase(DateFormat.getDateInstance(DateFormat.MEDIUM).format(new Date(order.getCreated_timestamp())), helvetica8));
13276 manish.sha 1569
 
1570
		if(OrderType.B2B==order.getOrderType()){
1571
			try {
1572
				String poRefVal = tsc.getClient().getOrderAttributeValue(order.getId(), "poRefNumber");
1573
				if(poRefVal!=null && poRefVal.length()>0){
1574
					orderTable.addCell(new Phrase("PO Ref:", helvetica8));
1575
					orderTable.addCell(new Phrase(poRefVal, helvetica8));
1576
				}
1577
 
1578
			} catch (TException e) {
1579
				logger.error("Error while getting amazon order", e);
1580
			}
1581
		}
2787 chandransh 1582
 
7014 rajveer 1583
		orderTable.addCell(new Phrase("Courier:", helvetica8));
13691 manish.sha 1584
		if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1585
			orderTable.addCell(new Phrase(hsCourierName, helvetica8));
1586
		} else{
1587
			orderTable.addCell(new Phrase(provider.getName(), helvetica8));
1588
		}
2787 chandransh 1589
 
9038 amar.kumar 1590
		if(order.getAirwaybill_no()!=null && !order.getAirwaybill_no().isEmpty()) {
1591
			orderTable.addCell(new Phrase("AWB No:", helvetica8));
1592
			orderTable.addCell(new Phrase(order.getAirwaybill_no(), helvetica8));
1593
		}
2787 chandransh 1594
 
7014 rajveer 1595
		orderTable.addCell(new Phrase("AWB Date:", helvetica8));
1596
		orderTable.addCell(new Phrase(DateFormat.getDateInstance(DateFormat.MEDIUM).format(new Date(order.getBilling_timestamp())), helvetica8));
2787 chandransh 1597
 
7014 rajveer 1598
		return orderTable;
1599
	}
2787 chandransh 1600
 
13276 manish.sha 1601
	private PdfPTable getBottomInvoiceTable(List<Order> orderList,boolean isVAT, String invoiceFormat){
1602
		PdfPTable invoiceTable = new PdfPTable(new float[]{0.1f, 0.3f, 0.1f, 0.1f, 0.1f, 0.1f, 0.1f, 0.1f});
7014 rajveer 1603
		invoiceTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
2787 chandransh 1604
 
13284 manish.sha 1605
		invoiceTable.addCell(getInvoiceTableHeader(8,orderList.get(0).getLogisticsTransactionId()));
4262 rajveer 1606
 
13276 manish.sha 1607
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
1608
			invoiceTable.addCell(new Phrase("Sr No", helveticaBold8));
1609
		}else{
1610
			invoiceTable.addCell(new Phrase("Order No", helveticaBold8));
1611
		}
7014 rajveer 1612
		invoiceTable.addCell(new Phrase("Description", helveticaBold8));
1613
		invoiceTable.addCell(new Phrase("Quantity", helveticaBold8));
1614
		invoiceTable.addCell(new Phrase("Rate (Rs)", helveticaBold8));
1615
		invoiceTable.addCell(new Phrase("Amount (Rs)", helveticaBold8));
13276 manish.sha 1616
		invoiceTable.addCell(new Phrase("Tax Rate%", helveticaBold8));
1617
		invoiceTable.addCell(new Phrase("Tax (Rs)", helveticaBold8));
1618
		invoiceTable.addCell(new Phrase("Item Total (Rs)", helveticaBold8));;
1619
		double totalAmount = 0.0;
1620
		double insuranceAmount = 0.0;
17470 manish.sha 1621
		double totalShippingCost = 0.0;
13276 manish.sha 1622
		int i=1;
1623
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
1624
			Map<Long, String> itemNamesMap= new HashMap<Long, String>();
1625
			Map<Long, Double> itemQuantityMap = new HashMap<Long, Double>();
1626
			Map<Long, Double> itemRateMap = new HashMap<Long, Double>();
1627
			Map<Long, Double> itemTotalAmtMap = new HashMap<Long, Double>();
1628
			Map<Long, Double> itemTaxPercentageMap = new HashMap<Long, Double>();
1629
			Map<Long, Double> itemTaxValueMap = new HashMap<Long, Double>();
1630
 
1631
			for(Order order : orderList){
1632
				LineItem lineitem = order.getLineitems().get(0);
1633
 
1634
				double orderAmount = order.getTotal_amount();
1635
				double rate = lineitem.getVatRate();
1636
				double salesTax = (rate * (orderAmount - order.getInsuranceAmount()))/(100 + rate);
1637
				totalAmount = totalAmount + orderAmount;
17470 manish.sha 1638
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 1639
				double itemPrice = lineitem.getUnit_price();
1640
				double showPrice = (100 * itemPrice)/(100 + rate);
1641
				double totalPrice = lineitem.getTotal_price();
1642
				double showTotalPrice = (100 * totalPrice)/(100 + rate);
1643
 
1644
				if(order.getInsurer() > 0) {
1645
					insuranceAmount =insuranceAmount + order.getInsuranceAmount();
1646
				}
1647
 
1648
				if(!itemNamesMap.containsKey(lineitem.getItem_id())){
1649
					itemNamesMap.put(lineitem.getItem_id(), getItemDisplayName(lineitem, false));
1650
				}
1651
				if(itemQuantityMap.containsKey(lineitem.getItem_id())){
1652
					double quantity = itemQuantityMap.get(lineitem.getItem_id()) + lineitem.getQuantity();
1653
					itemQuantityMap.put(lineitem.getItem_id(), quantity);
1654
				} else {
1655
					itemQuantityMap.put(lineitem.getItem_id(),lineitem.getQuantity());
1656
				}
1657
				if(!itemRateMap.containsKey(lineitem.getItem_id())){
1658
					itemRateMap.put(lineitem.getItem_id(), showPrice);
1659
				}
1660
				if(!itemTaxPercentageMap.containsKey(lineitem.getItem_id())){
1661
					itemTaxPercentageMap.put(lineitem.getItem_id(), rate);
1662
				}
1663
				if(itemTaxValueMap.containsKey(lineitem.getItem_id())){
1664
					double taxValue = itemTaxValueMap.get(lineitem.getItem_id()) + salesTax;
1665
					itemTaxValueMap.put(lineitem.getItem_id(), taxValue);
1666
				}else{
1667
					itemTaxValueMap.put(lineitem.getItem_id(), salesTax);
1668
				}
1669
				if(itemTotalAmtMap.containsKey(lineitem.getItem_id())){
1670
					double totalItemAmount = itemTotalAmtMap.get(lineitem.getItem_id()) + showTotalPrice;
1671
					itemTotalAmtMap.put(lineitem.getItem_id(), totalItemAmount);
1672
				}else{
1673
					itemTotalAmtMap.put(lineitem.getItem_id(), showTotalPrice);
1674
				}
1675
			}
1676
 
1677
			for(Long itemId : itemNamesMap.keySet()){
1678
				invoiceTable.addCell(new Phrase(i+"", helveticaBold8));
1679
				invoiceTable.addCell(new Phrase(itemNamesMap.get(itemId),helvetica8));
1680
				invoiceTable.addCell(new Phrase(itemQuantityMap.get(itemId)+"",helvetica8));
13285 manish.sha 1681
				invoiceTable.addCell(getPriceCell(itemRateMap.get(itemId)));
1682
				invoiceTable.addCell(getPriceCell(itemTotalAmtMap.get(itemId)));
1683
				invoiceTable.addCell(new Phrase(itemTaxPercentageMap.get(itemId)+"%",helvetica8));
1684
				invoiceTable.addCell(getPriceCell(itemTaxValueMap.get(itemId)));
1685
				invoiceTable.addCell(getPriceCell(itemTotalAmtMap.get(itemId)+itemTaxValueMap.get(itemId)));
13313 manish.sha 1686
				i++;
13276 manish.sha 1687
			}
1688
		}
1689
		else{
9432 amar.kumar 1690
 
13276 manish.sha 1691
			for(Order order :orderList){
1692
				LineItem lineItem = order.getLineitems().get(0);
1693
				double orderAmount = order.getTotal_amount();
1694
				double rate = lineItem.getVatRate();
1695
				double salesTax = (rate * (orderAmount - order.getInsuranceAmount()))/(100 + rate);
1696
 
1697
				invoiceTable.addCell(new Phrase(order.getId()+"", helveticaBold8));
1698
				invoiceTable.addCell(getProductNameCell(lineItem, true, order.getFreebieItemId()));
1699
				invoiceTable.addCell(new Phrase("" + lineItem.getQuantity(), helvetica8));
1700
 
1701
 
1702
				//populateBottomInvoiceTable(order, invoiceTable, rate);
1703
 
1704
				double itemPrice = lineItem.getUnit_price();
1705
				double showPrice = (100 * itemPrice)/(100 + rate);
1706
				invoiceTable.addCell(getPriceCell(showPrice));
1707
 
1708
				double totalPrice = lineItem.getTotal_price();
1709
				showPrice = (100 * totalPrice)/(100 + rate);
1710
				invoiceTable.addCell(getPriceCell(showPrice));
1711
 
1712
				PdfPCell salesTaxCell = getPriceCell(salesTax);
1713
 
1714
 
1715
				invoiceTable.addCell(new Phrase(rate + "%", helvetica8));
1716
				invoiceTable.addCell(salesTaxCell);
1717
				invoiceTable.addCell(getTotalAmountCell(orderAmount));
1718
 
1719
				if(order.getInsurer() > 0) {
1720
					insuranceAmount =insuranceAmount + order.getInsuranceAmount();
1721
				}
1722
				totalAmount = totalAmount+ orderAmount;
17470 manish.sha 1723
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 1724
				i++;
1725
			}
9432 amar.kumar 1726
		}
7014 rajveer 1727
 
13276 manish.sha 1728
		if(insuranceAmount>0){
1729
			invoiceTable.addCell(getInsuranceCell(7));
1730
			invoiceTable.addCell(getPriceCell(insuranceAmount));
7014 rajveer 1731
		}
17470 manish.sha 1732
		if(totalShippingCost>0){
17501 manish.sha 1733
			invoiceTable.addCell(getShippingCostCell(6));      
1734
			invoiceTable.addCell(getRupeesCell(false));
1735
			invoiceTable.addCell(getPriceCell(totalShippingCost));
17470 manish.sha 1736
		}
13276 manish.sha 1737
		invoiceTable.addCell(getTotalCell(6));
17501 manish.sha 1738
		invoiceTable.addCell(getRupeesCell(true));
17470 manish.sha 1739
		invoiceTable.addCell(getTotalAmountCell(totalAmount+totalShippingCost));
7014 rajveer 1740
 
13276 manish.sha 1741
		invoiceTable.addCell(new Phrase("Amount in Words:", helveticaBold8));
17470 manish.sha 1742
		invoiceTable.addCell(getAmountInWordsCell(totalAmount+totalShippingCost));
7014 rajveer 1743
 
13276 manish.sha 1744
		invoiceTable.addCell(getEOECell(8));
7014 rajveer 1745
 
1746
		return invoiceTable;
1747
	}
1748
 
13276 manish.sha 1749
	private PdfPCell getInvoiceTableHeader(int colspan, String masterOrderId) {
1750
		PdfPTable invoiceHeaderTable = new PdfPTable(2);
1751
		PdfPCell masterOrderIdCell = new PdfPCell(new Phrase("Master Order Id- "+masterOrderId, helvetica10));
13320 manish.sha 1752
		if(masterOrderId!=null && !masterOrderId.isEmpty()){
1753
			masterOrderIdCell.setBorder(Rectangle.NO_BORDER);
1754
			masterOrderIdCell.setPaddingTop(1);
1755
		}
13281 manish.sha 1756
		PdfPCell invoiceTableHeader = new PdfPCell(new Phrase("Order Details:", helveticaBold12));
7014 rajveer 1757
		invoiceTableHeader.setBorder(Rectangle.NO_BORDER);
8551 manish.sha 1758
		invoiceTableHeader.setPaddingTop(1);
13276 manish.sha 1759
		invoiceHeaderTable.addCell(invoiceTableHeader);
13320 manish.sha 1760
		if(masterOrderId!=null && !masterOrderId.isEmpty()){
1761
			invoiceHeaderTable.addCell(masterOrderIdCell);
1762
		}else{
1763
			masterOrderIdCell = new PdfPCell(new Phrase(" ", helvetica10));
1764
			invoiceHeaderTable.addCell(masterOrderIdCell);
1765
		}
13283 manish.sha 1766
		PdfPCell headerCell = new PdfPCell(invoiceHeaderTable);
1767
		headerCell.setColspan(colspan);
1768
		return headerCell;
7014 rajveer 1769
	}
1770
 
13276 manish.sha 1771
	/*private void populateBottomInvoiceTable(List<Order> orderList, PdfPTable invoiceTable) {
7014 rajveer 1772
		for (LineItem lineitem : order.getLineitems()) {
1773
			invoiceTable.addCell(new Phrase("" + order.getId() , helvetica8));
1774
 
7190 amar.kumar 1775
			invoiceTable.addCell(getProductNameCell(lineitem, true, order.getFreebieItemId()));
7014 rajveer 1776
 
1777
			invoiceTable.addCell(new Phrase("" + lineitem.getQuantity(), helvetica8));
1778
 
1779
			double itemPrice = lineitem.getUnit_price();
1780
			double showPrice = (100 * itemPrice)/(100 + rate);
1781
			invoiceTable.addCell(getPriceCell(showPrice)); //Unit Price Cell
1782
 
1783
			double totalPrice = lineitem.getTotal_price();
1784
			showPrice = (100 * totalPrice)/(100 + rate);
1785
			invoiceTable.addCell(getPriceCell(showPrice));  //Total Price Cell
1786
		}
13276 manish.sha 1787
	}*/
7014 rajveer 1788
 
7190 amar.kumar 1789
	private PdfPCell getProductNameCell(LineItem lineitem, boolean appendIMEI, Long freebieItemId) {
7014 rajveer 1790
		String itemName = getItemDisplayName(lineitem, appendIMEI);
7190 amar.kumar 1791
		if(freebieItemId!=null && freebieItemId!=0){
1792
			try {
1793
				CatalogService.Client catalogClient = ctsc.getClient();
1794
				Item item = catalogClient.getItem(freebieItemId);
1795
				itemName = itemName + "\n(Free Item: " + item.getBrand() + " " + item.getModelName() + " " + item.getModelNumber() + ")";
1796
			} catch(Exception tex) {
1797
				logger.error("Not able to get Freebie Item Details for ItemId:" + freebieItemId, tex);
1798
			}
1799
		}
7014 rajveer 1800
		PdfPCell productNameCell = new PdfPCell(new Phrase(itemName, helvetica8));
1801
		productNameCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1802
		return productNameCell;
1803
	}
1804
 
1805
	private PdfPCell getPriceCell(double price) {
1806
		PdfPCell totalPriceCell = new PdfPCell(new Phrase(amountFormat.format(price), helvetica8));
1807
		totalPriceCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1808
		return totalPriceCell;
1809
	}
1810
 
1811
	private PdfPCell getVATLabelCell(boolean isVAT) {
1812
		PdfPCell vatCell = null;
1813
		if(isVAT){
1814
			vatCell = new PdfPCell(new Phrase("VAT", helveticaBold8));
1815
		} else {
1816
			vatCell = new PdfPCell(new Phrase("CST", helveticaBold8));
1817
		}
1818
		vatCell.setColspan(3);
1819
		vatCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1820
		return vatCell;
1821
	}
1822
 
9432 amar.kumar 1823
	private PdfPCell getCFORMLabelCell() {
1824
		PdfPCell cFormCell = null;
1825
		cFormCell = new PdfPCell(new Phrase("CST Against CForm", helveticaBold8));
1826
		cFormCell.setColspan(3);
1827
		cFormCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1828
		return cFormCell;
1829
	}
1830
 
7318 rajveer 1831
	private PdfPCell getAdvanceAmountCell(int colspan) {
1832
		PdfPCell insuranceCell = null;
1833
		insuranceCell = new PdfPCell(new Phrase("Advance Amount Received", helvetica8));
1834
		insuranceCell.setColspan(colspan);
1835
		insuranceCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1836
		return insuranceCell;
1837
	}
1838
 
7014 rajveer 1839
	private PdfPCell getInsuranceCell(int colspan) {
1840
		PdfPCell insuranceCell = null;
13276 manish.sha 1841
		insuranceCell = new PdfPCell(new Phrase("1 Year WorldWide Theft Insurance. T&C Apply", helvetica8));
7014 rajveer 1842
		insuranceCell.setColspan(colspan);
1843
		insuranceCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1844
		return insuranceCell;
1845
	}
1846
 
1847
	private PdfPCell getEmptyCell(int colspan) {
1848
		PdfPCell emptyCell = new PdfPCell(new Phrase(" ", helvetica8));
1849
		emptyCell.setColspan(colspan);
1850
		return emptyCell;
1851
	}
17470 manish.sha 1852
 
1853
	private PdfPCell getShippingCostCell(int colspan) {
1854
		PdfPCell shippingCostCell = new PdfPCell(new Phrase("Shipping Charges", helvetica8));
1855
		shippingCostCell.setColspan(colspan);
17501 manish.sha 1856
		shippingCostCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
17470 manish.sha 1857
		return shippingCostCell;
1858
	}
1859
 
1860
	private PdfPCell getCodChargesCell(int colspan) {
1861
		PdfPCell codChargesCell = new PdfPCell(new Phrase("COD Charges", helvetica8));
1862
		codChargesCell.setColspan(colspan);
1863
		return codChargesCell;
1864
	}
7014 rajveer 1865
 
1866
	private PdfPCell getTotalCell(int colspan) {
13276 manish.sha 1867
		PdfPCell totalCell = new PdfPCell(new Phrase("Grand Total", helveticaBold8));
7014 rajveer 1868
		totalCell.setColspan(colspan);
1869
		totalCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1870
		return totalCell;
1871
	}
1872
 
17501 manish.sha 1873
	private PdfPCell getRupeesCell(boolean useBold) {
1874
		PdfPCell rupeesCell;
1875
		if(useBold)
1876
			rupeesCell= new PdfPCell(new Phrase("Rs.", helveticaBold8));
1877
		else
1878
			rupeesCell= new PdfPCell(new Phrase("Rs.", helvetica8));
7014 rajveer 1879
		rupeesCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1880
		return rupeesCell;
1881
	}
1882
 
1883
	private PdfPCell getTotalAmountCell(double orderAmount) {
1884
		PdfPCell totalAmountCell = new PdfPCell(new Phrase(amountFormat.format(orderAmount), helveticaBold8));
1885
		totalAmountCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1886
		return totalAmountCell;
1887
	}
1888
 
1889
	/**
1890
	 * This method uses ICU4J libraries to convert the given amount into words
1891
	 * of Indian locale.
1892
	 * 
1893
	 * @param orderAmount
1894
	 *            The amount to convert.
1895
	 * @return the string representation of the given amount.
1896
	 */
1897
	private PdfPCell getAmountInWordsCell(double orderAmount) {
1898
		RuleBasedNumberFormat amountInWordsFormat = new RuleBasedNumberFormat(indianLocale, RuleBasedNumberFormat.SPELLOUT);
1899
		StringBuilder amountInWords = new StringBuilder("Rs. ");
1900
		amountInWords.append(WordUtils.capitalize(amountInWordsFormat.format((int)orderAmount)));
1901
		amountInWords.append(" and ");
1902
		amountInWords.append(WordUtils.capitalize(amountInWordsFormat.format((int)(orderAmount*100)%100)));
1903
		amountInWords.append(" paise");
1904
 
1905
		PdfPCell amountInWordsCell= new PdfPCell(new Phrase(amountInWords.toString(), helveticaBold8));
1906
		amountInWordsCell.setColspan(4);
1907
		return amountInWordsCell;
1908
	}
1909
 
1910
	/**
1911
	 * Returns the item name to be displayed in the invoice table.
1912
	 * 
1913
	 * @param lineitem
1914
	 *            The line item whose name has to be displayed
1915
	 * @param appendIMEI
1916
	 *            Whether to attach the IMEI No. to the item name
1917
	 * @return The name to be displayed for the given line item.
1918
	 */
1919
	private String getItemDisplayName(LineItem lineitem, boolean appendIMEI){
1920
		StringBuffer itemName = new StringBuffer();
1921
		if(lineitem.getBrand()!= null)
1922
			itemName.append(lineitem.getBrand() + " ");
1923
		if(lineitem.getModel_name() != null)
1924
			itemName.append(lineitem.getModel_name() + " ");
1925
		if(lineitem.getModel_number() != null )
1926
			itemName.append(lineitem.getModel_number() + " ");
1927
		if(lineitem.getColor() != null && !lineitem.getColor().trim().equals("NA"))
1928
			itemName.append("("+lineitem.getColor()+")");
13320 manish.sha 1929
		if(appendIMEI && lineitem.isSetSerial_number() && !lineitem.getSerial_number().isEmpty()){
7014 rajveer 1930
			itemName.append("\nIMEI No. " + lineitem.getSerial_number());
1931
		}
1932
 
1933
		return itemName.toString();
1934
	}
1935
 
1936
	/**
1937
	 * 
1938
	 * @param colspan
1939
	 * @return a PdfPCell containing the E&amp;OE text and spanning the given
1940
	 *         no. of columns
1941
	 */
1942
	private PdfPCell getEOECell(int colspan) {
1943
		PdfPCell eoeCell = new PdfPCell(new Phrase("E & O.E", helvetica8));
1944
		eoeCell.setColspan(colspan);
1945
		eoeCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1946
		return eoeCell;
1947
	}
1948
 
1949
	private PdfPTable getExtraInfoTable(Order order, Provider provider, float barcodeFontSize, BillingType billingType){
1950
		PdfPTable extraInfoTable = new PdfPTable(1);
1951
		extraInfoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1952
		extraInfoTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
1953
 
1954
		String fontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1955
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
1956
		ttfFontFactory.register(fontPath, "barcode");
1957
		Font barCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, barcodeFontSize);
1958
 
1959
		PdfPCell extraInfoCell;
1960
		if(billingType == BillingType.EXTERNAL){
1961
			extraInfoCell = new PdfPCell(new Paragraph( "*" + order.getId() + "*        *" + order.getCustomer_name() + "*        *"  + order.getTotal_amount() + "*", barCodeFont));
1962
		}else{
1963
			extraInfoCell = new PdfPCell(new Paragraph( "*" + order.getId() + "*        *" + order.getLineitems().get(0).getTransfer_price() + "*", barCodeFont));	
1964
		}
1965
 
1966
		extraInfoCell.setPaddingTop(20.0f);
1967
		extraInfoCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
1968
		extraInfoCell.setBorder(Rectangle.NO_BORDER);
1969
 
1970
		extraInfoTable.addCell(extraInfoCell);
1971
 
1972
 
1973
		return extraInfoTable;
1974
	}
1975
 
1976
	private PdfPTable getFixedTextTable(float barcodeFontSize, String printText){
1977
		PdfPTable extraInfoTable = new PdfPTable(1);
1978
		extraInfoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1979
		extraInfoTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
1980
 
1981
		String fontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1982
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
1983
		ttfFontFactory.register(fontPath, "barcode");
1984
		Font barCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, barcodeFontSize);
1985
 
1986
		PdfPCell extraInfoCell = new PdfPCell(new Paragraph( "*" + printText + "*", barCodeFont));
1987
 
1988
		extraInfoCell.setPaddingTop(20.0f);
1989
		extraInfoCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
1990
		extraInfoCell.setBorder(Rectangle.NO_BORDER);
1991
 
1992
		extraInfoTable.addCell(extraInfoCell);
1993
 
1994
		return extraInfoTable;
1995
	}
8067 manish.sha 1996
 
1997
	private void generateBarcode(String barcodeString, String fileName){
1998
		Code128Bean bean = new Code128Bean();
7014 rajveer 1999
 
8067 manish.sha 2000
		final int dpi = 60;
2001
 
2002
		//Configure the barcode generator
2003
		bean.setModuleWidth(UnitConv.in2mm(1.0f / dpi)); //makes the narrow bar 
2004
		                                                 //width exactly one pixel
2005
		bean.setFontSize(bean.getFontSize()+1.0f);
2006
		bean.doQuietZone(false);
2007
 
2008
		try {
2009
			File outputFile = new File("/tmp/"+fileName+".png");
2010
			OutputStream out = new FileOutputStream(outputFile);
2011
 
2012
		    //Set up the canvas provider for monochrome PNG output 
2013
		    BitmapCanvasProvider canvas = new BitmapCanvasProvider(
2014
		            out, "image/x-png", dpi, BufferedImage.TYPE_BYTE_BINARY, false, 0);
2015
 
2016
		    //Generate the barcode
2017
		    bean.generateBarcode(canvas, barcodeString);
2018
 
2019
		    //Signal end of generation
2020
		    canvas.finish();
2021
		    out.close();
2022
 
2023
		} 
2024
		catch(Exception e){
2025
			logger.error("Exception during generating Barcode : ", e);
2026
		}
2027
	}
2028
 
7014 rajveer 2029
	public static void main(String[] args) throws IOException {
2030
		InvoiceGenerationService invoiceGenerationService = new InvoiceGenerationService();
7318 rajveer 2031
		long orderId = 356324;
2032
		ByteArrayOutputStream baos = invoiceGenerationService.generateInvoice(orderId, true, false, 1);
7014 rajveer 2033
		String userHome = System.getProperty("user.home");
2034
		File f = new File(userHome + "/invoice-" + orderId + ".pdf");
2035
		FileOutputStream fos = new FileOutputStream(f);
2036
		baos.writeTo(fos);
2037
		System.out.println("Invoice generated.");
2038
	}
2787 chandransh 2039
}