Subversion Repositories SmartDukaan

Rev

Rev 18847 | Rev 18876 | 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()){
617
                	document.setPageSize(PageSize.A4.rotate());
618
        	        document.left(100f);
619
        	        document.top(150f);
620
					document.newPage(); 
621
					List<Order> ordersList = logisticsTxnIdOrdersMap.get(logisticsTxnId);
622
					PdfPTable headerTable = new PdfPTable(1);
623
	    	        headerTable.addCell(getInvoiceTableHeader(0,ordersList.get(0).getLogisticsTransactionId()));
624
					PdfPTable packagingTable = getPackagingInfoTable(ordersList);
625
					document.add(headerTable);
626
					document.add(packagingTable);
627
				}
628
 
629
			}
630
 
631
 
632
 
13276 manish.sha 633
 
634
 
7014 rajveer 635
			document.close();
636
			baosPDF.close();
637
			// Adding facility to store the bill on the local directory. This will happen for only for Mahipalpur warehouse.
638
			if(withBill && !printAll){
7079 rajveer 639
				String strOrderId = StringUtils.repeat("0", 10-String.valueOf(orderId).length()) + orderId;  
7014 rajveer 640
				String dirPath = "/SaholicInvoices" + File.separator + strOrderId.substring(0, 2) + File.separator + strOrderId.substring(2, 4) + File.separator + strOrderId.substring(4, 6);
641
				String filename = dirPath + File.separator + orderId + ".pdf";
642
				File dirFile = new File(dirPath);
643
				if(!dirFile.exists()){
644
					dirFile.mkdirs();
645
				}
646
				File f = new File(filename);
647
				FileOutputStream fos = new FileOutputStream(f);
648
				baosPDF.writeTo(fos);
649
			}
650
		} catch (Exception e) {
651
			logger.error("Error while generating Invoice: ", e);
652
		}
653
		return baosPDF;
654
	}
18875 manish.sha 655
 
656
 
657
	private PdfPTable getPackagingInfoTable(List<Order> orderList) throws CatalogServiceException, TException{
658
		PdfPTable packagingTable = new PdfPTable(new float[]{0.05f, 0.1f, 0.1f, 0.2f, 0.3f, 0.05f, 0.05f, 0.05f, 0.05f});
659
		packagingTable.addCell(new Phrase("Item Id", helveticaBold8));
660
		packagingTable.addCell(new Phrase("BIN Id", helveticaBold8));
661
		packagingTable.addCell(new Phrase("Sub Order Id", helveticaBold8));
662
		packagingTable.addCell(new Phrase("Item Description", helveticaBold8));
663
		packagingTable.addCell(new Phrase("Serial Numbers", helveticaBold8));
664
		packagingTable.addCell(new Phrase("Pack Size", helveticaBold8));
665
		packagingTable.addCell(new Phrase("Quantity", helveticaBold8));
666
		packagingTable.addCell(new Phrase("Total Pieces", helveticaBold8));
667
		packagingTable.addCell(new Phrase("Unit Price", helveticaBold8));
668
 
669
		Map<Long, Item> itemMap = new HashMap<Long, Item>();
670
 
671
		CatalogService.Client catalogClient = ctsc.getClient();
672
		for(Order order:orderList){
673
			if(!itemMap.containsKey(order.getLineitems().get(0).getItem_id())){
674
				itemMap.put(order.getLineitems().get(0).getItem_id(), catalogClient.getItem(order.getLineitems().get(0).getItem_id()));
675
			}
676
		}
677
 
678
		for(Order order:orderList){
679
			packagingTable.addCell(new Phrase(order.getLineitems().get(0).getItem_id()+"", helvetica8));
680
			packagingTable.addCell(new Phrase("", helveticaBold8));
681
			packagingTable.addCell(new Phrase(order.getId()+"", helvetica8));
682
			packagingTable.addCell(new Phrase(getItemDisplayName(order.getLineitems().get(0), false), helvetica8));
683
			if(order.getLineitems().get(0).isSetSerial_number()){
684
				packagingTable.addCell(new Phrase(order.getLineitems().get(0).getSerial_number(), helvetica8));
685
			}else{
686
				packagingTable.addCell(new Phrase("", helvetica8));
687
			}
688
			packagingTable.addCell(new Phrase(itemMap.get(order.getLineitems().get(0).getItem_id()).getPackQuantity()+"", helvetica8));
689
			packagingTable.addCell(new Phrase(order.getLineitems().get(0).getQuantity()+"", helvetica8));
690
			packagingTable.addCell(new Phrase((order.getLineitems().get(0).getQuantity()*itemMap.get(order.getLineitems().get(0).getItem_id()).getPackQuantity())+"", helvetica8));
691
			packagingTable.addCell(new Phrase(order.getLineitems().get(0).getUnit_price()+"", helvetica8));
692
		}
693
		return packagingTable;
694
	}
3065 chandransh 695
 
13276 manish.sha 696
	private PdfPTable getDispatchAdviceTable(List<Order> orderList, Warehouse warehouse, Provider provider, float barcodeFontSize, String destCode, boolean withBill, Warehouse shippingLocation, String invoiceFormat){
697
		Order order = orderList.get(0);
7014 rajveer 698
		Font barCodeFont = getBarCodeFont(provider, barcodeFontSize);
13276 manish.sha 699
 
700
		double totalAmount = 0.0;
701
		double totalWeight = 0.0;
702
 
703
		for (Order o: orderList){
17470 manish.sha 704
			totalAmount = totalAmount + o.getTotal_amount() +o.getShippingCost()-o.getGvAmount()-o.getAdvanceAmount();
13276 manish.sha 705
			totalWeight = totalWeight + o.getTotal_weight();
706
		}
2787 chandransh 707
 
7014 rajveer 708
		PdfPTable table = new PdfPTable(1);
18847 manish.sha 709
		table.setSplitLate(false);
7014 rajveer 710
		table.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8106 manish.sha 711
 
712
		PdfPTable titleBarTable = new PdfPTable(new float[]{0.4f, 0.4f, 0.2f});
8107 manish.sha 713
		titleBarTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8106 manish.sha 714
 
8103 manish.sha 715
		PdfPTable logoTable = new PdfPTable(2);
716
		addLogoTable(logoTable,order); 
7318 rajveer 717
 
7014 rajveer 718
		PdfPCell titleCell = getTitleCell();
18530 manish.sha 719
		PdfPTable customerTable = getCustomerAddressTable(order, destCode, false, helvetica12, false, false);
13276 manish.sha 720
		PdfPTable providerInfoTable = getProviderTable(order, provider, barCodeFont, totalWeight);
2787 chandransh 721
 
7014 rajveer 722
		PdfPTable dispatchTable = new PdfPTable(new float[]{0.5f, 0.1f, 0.4f});
723
		dispatchTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
724
		dispatchTable.addCell(customerTable);
725
		dispatchTable.addCell(new Phrase(" "));
726
		dispatchTable.addCell(providerInfoTable);
2787 chandransh 727
 
13276 manish.sha 728
		PdfPTable invoiceTable = getTopInvoiceTable(orderList, shippingLocation.getTinNumber(), invoiceFormat);
8110 manish.sha 729
		PdfPTable addressTable = new PdfPTable(1);
730
		addressTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
731
		addressTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_LEFT);
732
 
7014 rajveer 733
		PdfPCell addressCell = getAddressCell(shippingLocation.getLocation() +
17203 manish.sha 734
				" - " + shippingLocation.getPincode() + "\nContact No.- +91-9811247808" + "\n\n");
2787 chandransh 735
 
7014 rajveer 736
		PdfPTable chargesTable = new PdfPTable(1);
737
		chargesTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
738
		chargesTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
739
		if(order.isLogisticsCod()){
13276 manish.sha 740
			chargesTable.addCell(new Phrase("AMOUNT TO BE COLLECTED : Rs " + (totalAmount), helveticaBold12));
7014 rajveer 741
			chargesTable.addCell(new Phrase("RTO ADDRESS:DEL/HPW/111116"));
7994 manish.sha 742
			//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
743
			if(order.getLogistics_provider_id()==7L){
744
				in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
745
				String fedexCodReturnBarcode = "";
8080 manish.sha 746
				String fedexCodReturnTrackingId = "";
7994 manish.sha 747
				try {
748
					fedexCodReturnBarcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_COD_Return_BarCode");
8080 manish.sha 749
					fedexCodReturnTrackingId = tclient.getOrderAttributeValue(order.getId(), "FedEx_COD_Return_Tracking_No");
7994 manish.sha 750
				} catch (TException e1) {
751
					logger.error("Error while getting the provider information.", e1);
752
				}
8080 manish.sha 753
				PdfPCell formIdCell= new PdfPCell(new Paragraph("COD Return "+fedexCodReturnTrackingId+" Form id-0325", helvetica6));
8104 manish.sha 754
				formIdCell.setPaddingTop(2.0f);
7994 manish.sha 755
				formIdCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
756
				formIdCell.setBorder(Rectangle.NO_BORDER);
757
				chargesTable.addCell(new Phrase("PRIORITY OVERNIGHT ", helvetica8));
758
				chargesTable.addCell(formIdCell);
8035 manish.sha 759
 
8067 manish.sha 760
				generateBarcode(fedexCodReturnBarcode, "fedex_codr_"+order.getId());
8037 manish.sha 761
 
8067 manish.sha 762
				Image barcodeImage=null;
763
				try {
764
					barcodeImage = Image.getInstance("/tmp/"+"fedex_codr_"+order.getId()+".png");
765
				} catch (Exception e) {
766
					logger.error("Exception during getting Barcode Image for Fedex : ", e);
767
				}
768
 
8173 manish.sha 769
				PdfPTable codReturnTable = new PdfPTable(new float[]{0.6f,0.4f});
770
				codReturnTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
771
				codReturnTable.addCell(barcodeImage);
772
				codReturnTable.addCell(new Phrase(" "));
773
				chargesTable.addCell(codReturnTable);
774
 
7994 manish.sha 775
			}
776
			//End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
7014 rajveer 777
		} else {
778
			chargesTable.addCell(new Phrase("Do not pay any extra charges to the Courier."));  
779
		}
8080 manish.sha 780
 
781
		if(order.getLogistics_provider_id()==7L){
782
			chargesTable.addCell(new Phrase("Term and Condition:- Subject to the Conditions of Carriage which " +
783
					"limits the liability of FedEx for loss, delay or damage to the consignment." +
784
					" Visit http://www.fedex.com/in/domestic/services/terms to view the conitions of Carriage" ,
8082 manish.sha 785
					new Font(FontFamily.TIMES_ROMAN, 8f)));
8080 manish.sha 786
		}
10310 amar.kumar 787
 
8110 manish.sha 788
		addressTable.addCell(new Phrase("If undelivered, return to:", helvetica10));
789
		addressTable.addCell(addressCell);
790
 
7014 rajveer 791
		PdfPTable addressAndNoteTable = new PdfPTable(new float[]{0.3f, 0.7f});
792
		addressAndNoteTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8110 manish.sha 793
		addressAndNoteTable.addCell(addressTable);
7014 rajveer 794
		addressAndNoteTable.addCell(chargesTable);
2787 chandransh 795
 
8106 manish.sha 796
		titleBarTable.addCell(logoTable);
797
		titleBarTable.addCell(titleCell);
798
		titleBarTable.addCell(" ");
799
 
800
		table.addCell(titleBarTable);
7014 rajveer 801
		table.addCell(dispatchTable);
802
		table.addCell(invoiceTable);
803
		table.addCell(addressAndNoteTable);
804
		return table;
805
	}
2787 chandransh 806
 
8103 manish.sha 807
	private void addLogoTable(PdfPTable logoTable,Order order) {
7318 rajveer 808
		logoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
809
		logoTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_RIGHT);
810
		logoTable.getDefaultCell().setVerticalAlignment(Element.ALIGN_BOTTOM);
8096 manish.sha 811
 
7318 rajveer 812
		PdfPCell logoCell;
813
		String logoPath;
8102 manish.sha 814
 
7556 rajveer 815
		if(order.getSource() == OrderSource.STORE.getValue()){
816
			logoCell = new PdfPCell(new Phrase(""));
817
 
818
		}else{
8102 manish.sha 819
			logoPath = InvoiceGenerationService.class.getResource("/logo.jpg").getPath();
8094 manish.sha 820
 
7318 rajveer 821
			try {
822
				logoCell = new PdfPCell(Image.getInstance(logoPath), false);
823
			} catch (Exception e) {
824
				//Too Many exceptions to catch here: BadElementException, MalformedURLException and IOException
825
				logger.warn("Couldn't load the Saholic logo: ", e);
826
				logoCell = new PdfPCell(new Phrase("Saholic Logo"));
827
			}
828
 
829
		}
8090 manish.sha 830
		logoCell.setBorder(Rectangle.NO_BORDER);
831
		logoCell.setHorizontalAlignment(Element.ALIGN_LEFT);
8102 manish.sha 832
		logoTable.addCell(logoCell);
833
		logoTable.addCell(" ");
8103 manish.sha 834
 
7318 rajveer 835
	}
836
 
7014 rajveer 837
	private Font getBarCodeFont(Provider provider, float barcodeFontSize) {
838
		String fontPath = InvoiceGenerationService.class.getResource("/" + provider.getName().toLowerCase() + "/barcode.TTF").getPath();
839
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
840
		ttfFontFactory.register(fontPath, "barcode");
841
		Font barCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, barcodeFontSize);
842
		return barCodeFont;
843
	}
2787 chandransh 844
 
7014 rajveer 845
	private PdfPCell getTitleCell() {
846
		PdfPCell titleCell = new PdfPCell(new Phrase("Dispatch Advice", helveticaBold12));
847
		titleCell.setHorizontalAlignment(Element.ALIGN_CENTER);
848
		titleCell.setBorder(Rectangle.NO_BORDER);
849
		return titleCell;
850
	}
2787 chandransh 851
 
13276 manish.sha 852
	private PdfPTable getProviderTable(Order order, Provider provider, Font barCodeFont, double totalWeight) {
7014 rajveer 853
		PdfPTable providerInfoTable = new PdfPTable(1);
854
		providerInfoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
7318 rajveer 855
		if(order.isLogisticsCod()){
8551 manish.sha 856
			PdfPCell deliveryTypeCell = new PdfPCell(new Phrase("COD   ", helvetica22));
7318 rajveer 857
			deliveryTypeCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
858
			deliveryTypeCell.setBorder(Rectangle.NO_BORDER);
859
			providerInfoTable.addCell(deliveryTypeCell);
860
		}
861
 
8035 manish.sha 862
 
7014 rajveer 863
		PdfPCell providerNameCell = new PdfPCell(new Phrase(provider.getName(), helveticaBold12));
864
		providerNameCell.setHorizontalAlignment(Element.ALIGN_LEFT);
865
		providerNameCell.setBorder(Rectangle.NO_BORDER);
7994 manish.sha 866
		PdfPCell formIdCell= null;
867
		if(order.getLogistics_provider_id()==7L){
868
			if(order.isCod()){
8034 manish.sha 869
				formIdCell = new PdfPCell(new Paragraph(order.getAirwaybill_no()+" Form id-0305", helvetica6));
7994 manish.sha 870
			}
871
			else{
8034 manish.sha 872
				formIdCell = new PdfPCell(new Paragraph(order.getAirwaybill_no()+" Form id-0467", helvetica6));
7994 manish.sha 873
			}
8551 manish.sha 874
			formIdCell.setPaddingTop(1.0f);
8015 rajveer 875
			formIdCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
876
			formIdCell.setBorder(Rectangle.NO_BORDER);
7994 manish.sha 877
		}
8015 rajveer 878
 
7994 manish.sha 879
 
880
		PdfPCell awbNumberCell= null;
8034 manish.sha 881
		String fedexPackageBarcode = "";
7994 manish.sha 882
		if(order.getLogistics_provider_id()!=7L){
883
			awbNumberCell = new PdfPCell(new Paragraph("*" + order.getAirwaybill_no() + "*", barCodeFont));
8017 manish.sha 884
			awbNumberCell.setPaddingTop(20.0f);
7994 manish.sha 885
		}
886
		else{
8013 rajveer 887
			in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
888
			try {
889
				fedexPackageBarcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_Package_BarCode");
890
			} catch (TException e1) {
891
				logger.error("Error while getting the provider information.", e1);
892
			}
8174 manish.sha 893
			awbNumberCell = new PdfPCell(new Paragraph(" ", helvetica6));
894
		}
895
		awbNumberCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
896
		awbNumberCell.setBorder(Rectangle.NO_BORDER);
897
 
898
		providerInfoTable.addCell(providerNameCell);
899
		if(formIdCell != null){
900
			providerInfoTable.addCell(formIdCell);
901
		}
902
		//End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
903
		if(order.getLogistics_provider_id()==7L){
8169 manish.sha 904
			generateBarcode(fedexPackageBarcode, "fedex_"+order.getId());
905
 
906
			Image barcodeImage=null;
907
			try {
908
				barcodeImage = Image.getInstance("/tmp/"+"fedex_"+order.getId()+".png");
909
			} catch (Exception e) {
910
				logger.error("Exception during getting Barcode Image for Fedex : ", e);
911
			}
8174 manish.sha 912
			providerInfoTable.addCell(barcodeImage);
7994 manish.sha 913
		}
8174 manish.sha 914
		providerInfoTable.addCell(awbNumberCell);
7014 rajveer 915
 
7792 anupam.sin 916
		Warehouse warehouse = null;
917
		try{
918
    		InventoryClient isc = new InventoryClient();
7804 amar.kumar 919
    		warehouse = isc.getClient().getWarehouse(order.getWarehouse_id());
7803 amar.kumar 920
		} catch(Exception e) {
7792 anupam.sin 921
		    logger.error("Unable to get warehouse for id : " + order.getWarehouse_id(), e);
7805 amar.kumar 922
		    //TODO throw e;
7792 anupam.sin 923
		}
924
		DeliveryType dt =  DeliveryType.PREPAID;
925
        if (order.isLogisticsCod()) {
926
            dt = DeliveryType.COD;
927
        }
7994 manish.sha 928
        //Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
929
        if(order.getLogistics_provider_id()!=7L){
930
	        for (ProviderDetails detail : provider.getDetails()) {
931
	            if(in.shop2020.model.v1.inventory.WarehouseLocation.findByValue((int) detail.getLogisticLocation()) == warehouse.getLogisticsLocation() && detail.getDeliveryType() == dt) {
932
	                providerInfoTable.addCell(new Phrase("Account No : " + detail.getAccountNo(), helvetica8));
933
	            }
934
	        }
7792 anupam.sin 935
        }
7994 manish.sha 936
        else{
937
        	providerInfoTable.addCell(new Phrase("STANDARD OVERNIGHT ", helvetica8));
938
        }
939
        //End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
7014 rajveer 940
		Date awbDate;
941
		if(order.getBilling_timestamp() == 0){
942
			awbDate = new Date();
943
		}else{
944
			awbDate = new Date(order.getBilling_timestamp());
945
		}
8106 manish.sha 946
		if(order.getLogistics_provider_id()!=7L){
947
			providerInfoTable.addCell(new Phrase("AWB Date   : " + DateFormat.getDateInstance(DateFormat.MEDIUM).format(awbDate), helvetica8));
948
		}
13322 manish.sha 949
		providerInfoTable.addCell(new Phrase("Weight         : " + totalWeight + " Kg", helvetica8));
8182 amar.kumar 950
		if(order.getSource() == OrderSource.EBAY.getValue()){
951
			EbayOrder ebayOrder = null;
952
			try {
953
				ebayOrder = tsc.getClient().getEbayOrderByOrderId(order.getId());
954
			} catch (TException e) {
955
				logger.error("Error while getting ebay order", e);
956
			}
957
			providerInfoTable.addCell(new Phrase("PaisaPayId            : " + ebayOrder.getPaisaPayId(), helvetica8));
958
			providerInfoTable.addCell(new Phrase("Sales Rec Number: " + ebayOrder.getSalesRecordNumber(), helvetica8));
959
		}
7994 manish.sha 960
		//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
961
		if(order.getLogistics_provider_id()==7L){
962
			providerInfoTable.addCell(new Phrase("Bill T/C Sender      "+ "Bill D/T Sender", helvetica8));
963
		}
964
		//End:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
7014 rajveer 965
		return providerInfoTable;
966
	}
967
 
13276 manish.sha 968
	private PdfPTable getTopInvoiceTable(List<Order> orderList, String tinNo, String invoiceFormat){
7014 rajveer 969
		PdfPTable invoiceTable = new PdfPTable(new float[]{0.2f, 0.2f, 0.3f, 0.1f, 0.1f, 0.1f});
970
		invoiceTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
971
 
13276 manish.sha 972
		invoiceTable.addCell(getInvoiceTableHeader(6,orderList.get(0).getLogisticsTransactionId()));
973
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
974
			invoiceTable.addCell(new Phrase("Sr No", helvetica8));
975
		}else{
976
			invoiceTable.addCell(new Phrase("Order No", helvetica8));
977
		}
7014 rajveer 978
		invoiceTable.addCell(new Phrase("Paymode", helvetica8));
979
		invoiceTable.addCell(new Phrase("Product Name", helvetica8));
980
		invoiceTable.addCell(new Phrase("Quantity", helvetica8));
981
		invoiceTable.addCell(new Phrase("Rate", helvetica8));
982
		invoiceTable.addCell(new Phrase("Amount", helvetica8));
13276 manish.sha 983
		double totalAmount = 0.0;
17470 manish.sha 984
		double totalShippingCost = 0.0;
13276 manish.sha 985
		double insuranceAmount = 0.0;
986
		double advanceAmount = 0.0;
987
 
988
 
989
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
990
			Map<Long, String> itemNamesMap= new HashMap<Long, String>();
991
			Map<Long, Double> itemQuantityMap = new HashMap<Long, Double>();
992
			Map<Long, Double> itemRateMap = new HashMap<Long, Double>();
993
			Map<Long, Double> itemTotalAmtMap = new HashMap<Long, Double>();
994
			String paymentMode = "";
995
			for(Order order : orderList){
996
				LineItem lineitem = order.getLineitems().get(0);
13496 manish.sha 997
				totalAmount = totalAmount + order.getTotal_amount()-order.getAdvanceAmount();
17470 manish.sha 998
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 999
				if(order.getInsurer() > 0) {
1000
					insuranceAmount =insuranceAmount + order.getInsuranceAmount();
1001
				}
1002
				if(order.getSource() == OrderSource.STORE.getValue()) {
1003
					advanceAmount = advanceAmount + order.getAdvanceAmount();
1004
				}
1005
				if(!itemNamesMap.containsKey(lineitem.getItem_id())){
1006
					itemNamesMap.put(lineitem.getItem_id(), getItemDisplayName(lineitem, false));
1007
				}
1008
				if(!itemRateMap.containsKey(lineitem.getItem_id())){
1009
					itemRateMap.put(lineitem.getItem_id(), lineitem.getUnit_price());
1010
				}
1011
				if(itemQuantityMap.containsKey(lineitem.getItem_id())){
1012
					double currentQuantity = itemQuantityMap.get(lineitem.getItem_id()) +lineitem.getQuantity();
1013
					itemQuantityMap.put(lineitem.getItem_id(), currentQuantity);
1014
				}else{
1015
					itemQuantityMap.put(lineitem.getItem_id(), lineitem.getQuantity());
1016
				}
1017
 
1018
				if(itemTotalAmtMap.containsKey(lineitem.getItem_id())){
13492 manish.sha 1019
					double totalItemAmount = itemTotalAmtMap.get(lineitem.getItem_id()) + (order.getTotal_amount()-order.getAdvanceAmount()-order.getInsuranceAmount());
13276 manish.sha 1020
					itemTotalAmtMap.put(lineitem.getItem_id(), totalItemAmount);
1021
				}else{
13492 manish.sha 1022
					itemTotalAmtMap.put(lineitem.getItem_id(), (order.getTotal_amount()-order.getAdvanceAmount()-order.getInsuranceAmount()));
13276 manish.sha 1023
				}
1024
				if(paymentMode==null || paymentMode.isEmpty()){
1025
					if(order.getPickupStoreId() > 0 && order.isCod() == true)
1026
						paymentMode = "In-Store";
1027
					else if (order.isCod())
1028
						paymentMode = "COD";
1029
					else
1030
						paymentMode = "Prepaid";
1031
				}		
1032
			}
1033
 
1034
			int serialNo = 0;
1035
			for(Long itemId : itemNamesMap.keySet()){
1036
				serialNo ++;
1037
				invoiceTable.addCell(new Phrase(serialNo+ "", helvetica8));
1038
				invoiceTable.addCell(new Phrase(paymentMode, helvetica8));
1039
				invoiceTable.addCell(new Phrase(itemNamesMap.get(itemId), helvetica8));
1040
				invoiceTable.addCell(new Phrase(itemQuantityMap.get(itemId)+"", helvetica8));
1041
				invoiceTable.addCell(new Phrase(itemRateMap.get(itemId)+"", helvetica8));
1042
				invoiceTable.addCell(new Phrase(itemTotalAmtMap.get(itemId)+"", helvetica8));
1043
			}
1044
 
1045
			if(insuranceAmount>0){
1046
				invoiceTable.addCell(getInsuranceCell(4));
1047
				invoiceTable.addCell(getPriceCell(insuranceAmount));
1048
				invoiceTable.addCell(getPriceCell(insuranceAmount));
1049
			}
1050
			if(advanceAmount>0){
1051
				invoiceTable.addCell(getAdvanceAmountCell(4));
1052
				invoiceTable.addCell(getPriceCell(advanceAmount));
1053
				invoiceTable.addCell(getPriceCell(advanceAmount));
1054
			}
1055
		}else{
1056
			for(Order order : orderList){
1057
				populateTopInvoiceTable(order, invoiceTable);
1058
				if(order.getInsurer() > 0) {
1059
					invoiceTable.addCell(getInsuranceCell(4));
1060
					invoiceTable.addCell(getPriceCell(order.getInsuranceAmount()));
1061
					invoiceTable.addCell(getPriceCell(order.getInsuranceAmount()));
1062
				}
7014 rajveer 1063
 
13276 manish.sha 1064
				if(order.getSource() == OrderSource.STORE.getValue()) {
1065
					invoiceTable.addCell(getAdvanceAmountCell(4));
1066
					invoiceTable.addCell(getPriceCell(order.getAdvanceAmount()));
1067
					invoiceTable.addCell(getPriceCell(order.getAdvanceAmount()));
1068
				}
13494 manish.sha 1069
				totalAmount = totalAmount + order.getTotal_amount()-order.getAdvanceAmount();
17470 manish.sha 1070
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 1071
			}
7014 rajveer 1072
		}
17470 manish.sha 1073
		if(totalShippingCost>0){
1074
			invoiceTable.addCell(getShippingCostCell(4));      
17501 manish.sha 1075
			invoiceTable.addCell(getRupeesCell(false));
1076
			invoiceTable.addCell(getPriceCell(totalShippingCost));
17470 manish.sha 1077
		}
7014 rajveer 1078
		invoiceTable.addCell(getTotalCell(4));      
17501 manish.sha 1079
		invoiceTable.addCell(getRupeesCell(true));
17470 manish.sha 1080
		invoiceTable.addCell(getTotalAmountCell(totalAmount+totalShippingCost));
13276 manish.sha 1081
 
7014 rajveer 1082
 
1083
		PdfPCell tinCell = new PdfPCell(new Phrase("TIN NO. " + tinNo, helvetica8));
1084
		tinCell.setColspan(6);
1085
		tinCell.setPadding(2);
1086
		invoiceTable.addCell(tinCell);
1087
 
1088
		return invoiceTable;
1089
	}
1090
 
1091
	private void populateTopInvoiceTable(Order order, PdfPTable invoiceTable) {
1092
		List<LineItem> lineitems = order.getLineitems();
1093
		for (LineItem lineitem : lineitems) {
1094
			invoiceTable.addCell(new Phrase(order.getId() + "", helvetica8));
1095
			if(order.getPickupStoreId() > 0 && order.isCod() == true)
1096
				invoiceTable.addCell(new Phrase("In-Store", helvetica8));
1097
			else if (order.isCod())
1098
				invoiceTable.addCell(new Phrase("COD", helvetica8));
1099
			else
1100
				invoiceTable.addCell(new Phrase("Prepaid", helvetica8));
7318 rajveer 1101
 
7190 amar.kumar 1102
			invoiceTable.addCell(getProductNameCell(lineitem, false, order.getFreebieItemId()));
2787 chandransh 1103
 
7014 rajveer 1104
			invoiceTable.addCell(new Phrase(lineitem.getQuantity() + "", helvetica8));
2787 chandransh 1105
 
7014 rajveer 1106
			invoiceTable.addCell(getPriceCell(lineitem.getUnit_price()-order.getGvAmount()));
1107
 
1108
			invoiceTable.addCell(getPriceCell(lineitem.getTotal_price()-order.getGvAmount()));
1109
		}
1110
	}
1111
 
1112
	private PdfPCell getAddressCell(String address) {
1113
		Paragraph addressParagraph = new Paragraph(address, new Font(FontFamily.TIMES_ROMAN, 8f));
1114
		PdfPCell addressCell = new PdfPCell();
1115
		addressCell.addElement(addressParagraph);
1116
		addressCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1117
		addressCell.setBorder(Rectangle.NO_BORDER);
1118
		return addressCell;
1119
	}
1120
 
13276 manish.sha 1121
	private PdfPTable getTaxCumRetailInvoiceTable(List<Order> orderList, Provider provider, String ourAddress, String tinNo, String invoiceFormat){
1122
		Order order = orderList.get(0);
7014 rajveer 1123
		PdfPTable taxTable = new PdfPTable(1);
1124
		Phrase phrase = null;
18847 manish.sha 1125
		taxTable.setSplitLate(false);
7014 rajveer 1126
		taxTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1127
		taxTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
8104 manish.sha 1128
 
8110 manish.sha 1129
		PdfPTable logoTitleAndOurAddressTable = new PdfPTable(new float[]{0.4f, 0.3f, 0.3f});
8107 manish.sha 1130
		logoTitleAndOurAddressTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
8112 manish.sha 1131
		logoTitleAndOurAddressTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_LEFT);
8107 manish.sha 1132
 
8110 manish.sha 1133
 
8103 manish.sha 1134
		PdfPTable logoTable = new PdfPTable(2);
1135
		addLogoTable(logoTable,order); 
7318 rajveer 1136
 
7014 rajveer 1137
 
17203 manish.sha 1138
		Paragraph sorlAddress = new Paragraph(ourAddress + "\n Contact No.- +91-9811247808" + "\nTIN NO. " + tinNo, new Font(FontFamily.TIMES_ROMAN, 8f, Element.ALIGN_CENTER));
7014 rajveer 1139
		PdfPCell sorlAddressCell = new PdfPCell(sorlAddress);
1140
		sorlAddressCell.addElement(sorlAddress);
8110 manish.sha 1141
		sorlAddressCell.setHorizontalAlignment(Element.ALIGN_LEFT);
7014 rajveer 1142
 
18769 manish.sha 1143
		PdfPTable customerAddress = getCustomerAddressTable(order, null, true, helvetica8, true, false);
18657 manish.sha 1144
		if (order.getOrderType().equals(OrderType.B2B)) {
1145
			if(billingAddress!=null){
1146
				if(order.getCustomer_state().trim().equalsIgnoreCase(billingAddress.getState())){
1147
					phrase = new Phrase("TAX INVOICE", helveticaBold12);
1148
				}else{
1149
					phrase = new Phrase("RETAIL INVOICE", helveticaBold12);
1150
				}
1151
			}else{
1152
				phrase = new Phrase("TAX INVOICE", helveticaBold12);
1153
			}
1154
		} else {
1155
			phrase = new Phrase("RETAIL INVOICE", helveticaBold12);
1156
		}
18693 manish.sha 1157
 
1158
		PdfPCell retailInvoiceTitleCell = new PdfPCell(phrase);
1159
		retailInvoiceTitleCell.setHorizontalAlignment(Element.ALIGN_CENTER);
1160
		retailInvoiceTitleCell.setBorder(Rectangle.NO_BORDER);
1161
 
7014 rajveer 1162
		PdfPTable orderDetails = getOrderDetails(order, provider);
1163
 
1164
		PdfPTable addrAndOrderDetailsTable = new PdfPTable(new float[]{0.5f, 0.1f, 0.4f});
1165
		addrAndOrderDetailsTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1166
		addrAndOrderDetailsTable.addCell(customerAddress);
1167
		addrAndOrderDetailsTable.addCell(new Phrase(" "));
1168
		addrAndOrderDetailsTable.addCell(orderDetails);
1169
 
9319 amar.kumar 1170
		boolean isVAT = isVatApplicable(order);
13276 manish.sha 1171
		PdfPTable invoiceTable = getBottomInvoiceTable(orderList, isVAT, invoiceFormat);
7014 rajveer 1172
 
10607 manish.sha 1173
		PdfPTable regAddAndDisCellTable = new PdfPTable(2);
1174
 
7014 rajveer 1175
		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));
1176
		disclaimerCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1177
		disclaimerCell.setBorder(Rectangle.NO_BORDER);
7318 rajveer 1178
 
17203 manish.sha 1179
		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 1180
		regAddressCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1181
		regAddressCell.setBorder(Rectangle.NO_BORDER);
1182
		/*SPICE ONLINE RETAIL PRIVATE LIMITED
1183
		Regd. Add. 60-D, STREET NO. C-5, SAINIK FARMS,NEW DELHI-110062
1184
		CIN: U74140DL2008PTC183856
1185
		Tel. No. 0120-2479977
1186
		E-mail. help@saholic.com
1187
		Website. www.saholic.com*/
9014 amar.kumar 1188
		PdfPCell powerTextCell = new PdfPCell(new Phrase("Powered By  Flipkart", helvetica8));
1189
		powerTextCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1190
		powerTextCell.setBorder(Rectangle.NO_BORDER);
1191
		powerTextCell.setPaddingBottom(30.0f);
8104 manish.sha 1192
 
1193
		logoTitleAndOurAddressTable.addCell(logoTable);
8110 manish.sha 1194
		logoTitleAndOurAddressTable.addCell(retailInvoiceTitleCell);
1195
		logoTitleAndOurAddressTable.addCell(sorlAddress);
8104 manish.sha 1196
 
10607 manish.sha 1197
		regAddAndDisCellTable.addCell(disclaimerCell);
1198
		regAddAndDisCellTable.addCell(regAddressCell);
1199
 
8104 manish.sha 1200
		taxTable.addCell(logoTitleAndOurAddressTable);
7014 rajveer 1201
		taxTable.addCell(addrAndOrderDetailsTable);
1202
		taxTable.addCell(invoiceTable);
10608 manish.sha 1203
		taxTable.addCell(regAddAndDisCellTable);
9014 amar.kumar 1204
		if(order.getSource() == OrderSource.FLIPKART.getValue()) {
1205
			taxTable.addCell(powerTextCell);
1206
 
1207
		}
10320 amar.kumar 1208
		if(order.getProductCondition().equals(ProductCondition.BAD)){
10328 amar.kumar 1209
			PdfPCell badSaleDisclaimerCell = new PdfPCell(new Phrase(" Item(s) above are sold on as is where is basis. They " +
10320 amar.kumar 1210
					"may be in dead/defective/damaged/refurbished/incomplete/open condition. These " +
1211
					"are not returnable, exchangeable or refundable under any circumstances. No " +
1212
					"warranty is assured on these items." ,
10329 amar.kumar 1213
					new Font(FontFamily.TIMES_ROMAN, 8f)));
10328 amar.kumar 1214
			badSaleDisclaimerCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1215
			badSaleDisclaimerCell.setBorder(Rectangle.NO_BORDER);
1216
			taxTable.addCell(badSaleDisclaimerCell);
10320 amar.kumar 1217
		}
7014 rajveer 1218
		return taxTable;
1219
	}
9009 amar.kumar 1220
 
9319 amar.kumar 1221
	private boolean isVatApplicable(Order order) {
1222
		if(order.getWarehouse_id() == 7) {
1223
			if(order.getCustomer_pincode().startsWith(delhiPincodePrefix)) {
1224
				return true;
1225
			} else {
1226
				return false;
1227
			}
12809 manish.sha 1228
		} else if(order.getWarehouse_id() == 3298){
1229
			for(int i=0; i< telanganaPincodes.length; i++) {
1230
				if(order.getCustomer_pincode().trim().equalsIgnoreCase(telanganaPincodes[i])) {
1231
					return true;
1232
				}
1233
			}
1234
			return false;
16196 manish.sha 1235
		} else if(order.getWarehouse_id() == 1765 || order.getWarehouse_id() == 1768){
1236
			for(int i=0; i< karnatakaPincodePrefix.length; i++) {
1237
				if(order.getCustomer_pincode().startsWith(karnatakaPincodePrefix[i])) {
1238
					return true;
1239
				}
1240
			}
1241
			return false;
12809 manish.sha 1242
		}
1243
		else {
9319 amar.kumar 1244
			for(int i=0; i< maharashtraPincodePrefix.length; i++) {
1245
				if(order.getCustomer_pincode().startsWith(maharashtraPincodePrefix[i])) {
1246
					return true;
1247
				}
1248
			}
1249
			return false;
1250
		}
1251
	}
1252
 
9037 amar.kumar 1253
	private PdfPTable getFlipkartBarCodes(Order order) {
1254
		PdfPTable flipkartTable = new PdfPTable(3);
1255
 
1256
		PdfPCell spacerCell = new PdfPCell();
9040 amar.kumar 1257
		spacerCell.setBorder(Rectangle.NO_BORDER);
9037 amar.kumar 1258
		spacerCell.setColspan(3);
9099 amar.kumar 1259
		spacerCell.setPaddingTop(330.0f);
9037 amar.kumar 1260
 
1261
		String flipkartCodeFontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1262
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
1263
		ttfFontFactory.register(flipkartCodeFontPath, "barcode");
1264
		Font flipkartBarCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, 20);
1265
 
9040 amar.kumar 1266
		String serialNumber = "0000000000";
9511 manish.sha 1267
		if(order.getLineitems().get(0).getSerial_number()!=null && !order.getLineitems().get(0).getSerial_number().isEmpty()) {
9040 amar.kumar 1268
			serialNumber = order.getLineitems().get(0).getSerial_number();
9511 manish.sha 1269
		} else if(order.getLineitems().get(0).getItem_number()!=null && !order.getLineitems().get(0).getItem_number().isEmpty()) {
9040 amar.kumar 1270
			serialNumber = order.getLineitems().get(0).getItem_number();
1271
		}
1272
 
1273
		PdfPCell serialNumberBarCodeCell = new PdfPCell(new Paragraph("*" +  serialNumber + "*", flipkartBarCodeFont));
9037 amar.kumar 1274
		serialNumberBarCodeCell.setBorder(Rectangle.TOP);
9044 amar.kumar 1275
		serialNumberBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1276
		serialNumberBarCodeCell.setPaddingTop(11.0f);
1277
 
1278
 
1279
		PdfPCell invoiceNumberBarCodeCell = new PdfPCell(new Paragraph("*" +  order.getInvoice_number() + "*", flipkartBarCodeFont));
1280
		invoiceNumberBarCodeCell.setBorder(Rectangle.TOP);
9044 amar.kumar 1281
		invoiceNumberBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1282
		invoiceNumberBarCodeCell.setPaddingTop(11.0f);
1283
 
1284
		double rate = order.getLineitems().get(0).getVatRate();
1285
		double salesTax = (rate * order.getTotal_amount())/(100 + rate);
9040 amar.kumar 1286
		PdfPCell vatAmtBarCodeCell = new PdfPCell(new Paragraph("*" +  amountFormat.format(salesTax) + "*", flipkartBarCodeFont));
9037 amar.kumar 1287
		vatAmtBarCodeCell.setBorder(Rectangle.TOP);
9044 amar.kumar 1288
		vatAmtBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1289
		vatAmtBarCodeCell.setPaddingTop(11.0f);
1290
 
1291
		flipkartTable.addCell(spacerCell);
1292
		flipkartTable.addCell(serialNumberBarCodeCell);
1293
		flipkartTable.addCell(invoiceNumberBarCodeCell);
1294
		flipkartTable.addCell(vatAmtBarCodeCell);
1295
 
1296
		return flipkartTable;
1297
 
9009 amar.kumar 1298
	}
18657 manish.sha 1299
 
1300
	private void setBillingAddress(long userId, in.shop2020.model.v1.user.UserContextService.Client userClient) throws TException{
1301
		billingAddress = userClient.getBillingAddressForUser(userId);
1302
	}
9009 amar.kumar 1303
 
18530 manish.sha 1304
	private PdfPTable getCustomerAddressTable(Order order, String destCode, boolean showPaymentMode, Font font, boolean forInvoce, boolean billingAdd){
7014 rajveer 1305
		PdfPTable customerTable = new PdfPTable(1);
1306
		if(forInvoce || order.getPickupStoreId() == 0){
18530 manish.sha 1307
			in.shop2020.model.v1.user.UserContextService.Client userClient = usc.getClient();
1308
			try {
1309
				if(billingAdd && userClient.isPrivateDealUser(order.getCustomer_id())){
18657 manish.sha 1310
					setBillingAddress(order.getCustomer_id(), userClient);
1311
					if(billingAddress!=null){
18769 manish.sha 1312
						return customerTable;
1313
						/*
18657 manish.sha 1314
						customerTable.addCell(new Phrase(billingAddress.getName(), font));
1315
						customerTable.addCell(new Phrase(billingAddress.getLine1(), font));
1316
						customerTable.addCell(new Phrase(billingAddress.getLine2(), font));
1317
						customerTable.addCell(new Phrase(billingAddress.getCity() + "," + billingAddress.getState(), font));
1318
						customerTable.addCell(new Phrase(billingAddress.getPin(), font));
1319
						customerTable.addCell(new Phrase("Phone : " + (billingAddress.getPhone()== null ? "" : billingAddress.getPhone()), font));
18769 manish.sha 1320
						*/
18657 manish.sha 1321
					}else{
1322
						customerTable.addCell(new Phrase(order.getCustomer_name(), font));
1323
						if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1324
							HsOrder hsOrder = null;
1325
							try {
1326
								hsOrder = tsc.getClient().getHomeShopOrder(order.getId(), null, null).get(0);
1327
							}catch (TException e) {
1328
								logger.error("Error while getting homeshop18 order", e);
1329
							}
1330
							String hsShippingName = hsOrder.getShippingName();
1331
							if(hsShippingName!=null && !hsShippingName.isEmpty()){
1332
								customerTable.addCell(new Phrase("Shipped To: "+hsShippingName, font));
1333
							}
1334
						}
1335
						customerTable.addCell(new Phrase(order.getCustomer_address1(), font));
1336
						customerTable.addCell(new Phrase(order.getCustomer_address2(), font));
1337
						customerTable.addCell(new Phrase(order.getCustomer_city() + "," + order.getCustomer_state(), font));
1338
						//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1339
						if(order.getLogistics_provider_id()!=7L){
1340
							if(destCode != null)
1341
								customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + destCode, helvetica16));
1342
							else
1343
								customerTable.addCell(new Phrase(order.getCustomer_pincode(), font));
1344
							}
1345
						else{
1346
							in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
1347
							String fedexLocationcode = "";
1348
							try {
1349
								fedexLocationcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_Location_Code");
1350
							} catch (TException e1) {
1351
								logger.error("Error while getting the provider information.", e1);
1352
							}
1353
							customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + fedexLocationcode, helvetica16));
1354
						}
1355
						//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1356
						if(order.getCustomer_mobilenumber()!=null && !order.getCustomer_mobilenumber().isEmpty()) {
1357
							customerTable.addCell(new Phrase("Phone : " + (order.getCustomer_mobilenumber()== null ? "" : order.getCustomer_mobilenumber()), font));
1358
						}
1359
					}
18530 manish.sha 1360
				}else{
18769 manish.sha 1361
					customerTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
18530 manish.sha 1362
					customerTable.addCell(new Phrase(order.getCustomer_name(), font));
1363
					if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1364
						HsOrder hsOrder = null;
1365
						try {
1366
							hsOrder = tsc.getClient().getHomeShopOrder(order.getId(), null, null).get(0);
1367
						}catch (TException e) {
1368
							logger.error("Error while getting homeshop18 order", e);
1369
						}
1370
						String hsShippingName = hsOrder.getShippingName();
1371
						if(hsShippingName!=null && !hsShippingName.isEmpty()){
1372
							customerTable.addCell(new Phrase("Shipped To: "+hsShippingName, font));
1373
						}
1374
					}
1375
					customerTable.addCell(new Phrase(order.getCustomer_address1(), font));
1376
					customerTable.addCell(new Phrase(order.getCustomer_address2(), font));
1377
					customerTable.addCell(new Phrase(order.getCustomer_city() + "," + order.getCustomer_state(), font));
1378
					//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1379
					if(order.getLogistics_provider_id()!=7L){
1380
						if(destCode != null)
1381
							customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + destCode, helvetica16));
1382
						else
1383
							customerTable.addCell(new Phrase(order.getCustomer_pincode(), font));
1384
						}
1385
					else{
1386
						in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
1387
						String fedexLocationcode = "";
1388
						try {
1389
							fedexLocationcode = tclient.getOrderAttributeValue(order.getId(), "FedEx_Location_Code");
1390
						} catch (TException e1) {
1391
							logger.error("Error while getting the provider information.", e1);
1392
						}
1393
						customerTable.addCell(new Phrase(order.getCustomer_pincode() + " - " + fedexLocationcode, helvetica16));
1394
					}
1395
					//Start:-Added By Manish Sharma for FedEx Integration - Shipment Creation on 21-Aug-2013
1396
					if(order.getCustomer_mobilenumber()!=null && !order.getCustomer_mobilenumber().isEmpty()) {
1397
						customerTable.addCell(new Phrase("Phone : " + (order.getCustomer_mobilenumber()== null ? "" : order.getCustomer_mobilenumber()), font));
1398
					}
13734 manish.sha 1399
				}
18530 manish.sha 1400
			} catch (TException e2) {
1401
				e2.printStackTrace();
13734 manish.sha 1402
			}
18530 manish.sha 1403
 
7014 rajveer 1404
		}else{
18769 manish.sha 1405
			customerTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
7014 rajveer 1406
			try {
5556 rajveer 1407
				in.shop2020.logistics.LogisticsService.Client lclient = (new LogisticsClient()).getClient();
7014 rajveer 1408
				PickupStore store = lclient.getPickupStore(order.getPickupStoreId());
1409
				customerTable.addCell(new Phrase(order.getCustomer_name() + " \nc/o " + store.getName(), font));
1410
				customerTable.addCell(new Phrase(store.getLine1(), font));
1411
				customerTable.addCell(new Phrase(store.getLine2(), font));
1412
				customerTable.addCell(new Phrase(store.getCity() + "," + store.getState(), font));
1413
				if(destCode != null)
1414
					customerTable.addCell(new Phrase(store.getPin() + " - " + destCode, helvetica16));
1415
				else
1416
					customerTable.addCell(new Phrase(store.getPin(), font));
1417
				customerTable.addCell(new Phrase("Phone :" + store.getPhone(), font));
5556 rajveer 1418
			} catch (TException e) {
1419
				// TODO Auto-generated catch block
1420
				e.printStackTrace();
1421
			}
5527 anupam.sin 1422
 
7014 rajveer 1423
		}
1424
 
1425
		if(order.getOrderType().equals(OrderType.B2B)) {
1426
			String tin = null;
1427
			in.shop2020.model.v1.order.TransactionService.Client tclient = tsc.getClient();
1428
			List<Attribute> attributes;
1429
			try {
1430
				attributes = tclient.getAllAttributesForOrderId(order.getId());
1431
 
1432
				for(Attribute attribute : attributes) {
1433
					if(attribute.getName().equals("tinNumber")) {
1434
						tin = attribute.getValue();
1435
					}
1436
				}
1437
				if (tin != null) {
1438
					customerTable.addCell(new Phrase("TIN :" + tin, font));
1439
				}
1440
 
1441
			} catch (Exception e) {
1442
				logger.error("Error while getting order attributes", e);
1443
			}
1444
		}
1445
		/*
2787 chandransh 1446
        if(showPaymentMode){
1447
            customerTable.addCell(new Phrase(" ", font));
1448
            customerTable.addCell(new Phrase("Payment Mode: Prepaid", font));
5856 anupam.sin 1449
        }*/
7014 rajveer 1450
		return customerTable;
1451
	}
2787 chandransh 1452
 
7014 rajveer 1453
	private PdfPTable getOrderDetails(Order order, Provider provider){
1454
		PdfPTable orderTable = new PdfPTable(new float[]{0.4f, 0.6f});
1455
		orderTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
2787 chandransh 1456
 
7014 rajveer 1457
		orderTable.addCell(new Phrase("Invoice No:", helvetica8));
1458
		orderTable.addCell(new Phrase(order.getInvoice_number(), helvetica8));
2787 chandransh 1459
 
7014 rajveer 1460
		orderTable.addCell(new Phrase("Date:", helvetica8));
1461
		orderTable.addCell(new Phrase(DateFormat.getDateInstance(DateFormat.MEDIUM).format(new Date(order.getBilling_timestamp())), helvetica8));
2787 chandransh 1462
 
13691 manish.sha 1463
		String hsCourierName = "";
12590 amit.gupta 1464
		if(order.getSource() == OrderSource.AMAZON.getValue() || order.getSource() == OrderSource.JUNGLEE.getValue()){
7528 rajveer 1465
			AmazonOrder aorder = null;
1466
			try {
1467
				aorder = tsc.getClient().getAmazonOrder(order.getId());
1468
			} catch (TException e) {
1469
				logger.error("Error while getting amazon order", e);
1470
			}
12590 amit.gupta 1471
			if(order.getSource() == OrderSource.JUNGLEE.getValue()){
1472
				orderTable.addCell(new Phrase("Junglee Order ID:", helvetica8));
1473
			}else {
1474
				orderTable.addCell(new Phrase("Amazon Order ID:", helvetica8));
1475
			}
7528 rajveer 1476
			orderTable.addCell(new Phrase(aorder.getAmazonOrderCode(), helvetica8));
13691 manish.sha 1477
		} else if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1478
			HsOrder hsOrder = null;
1479
			try {
13706 manish.sha 1480
				hsOrder = tsc.getClient().getHomeShopOrder(order.getId(), null, null).get(0);
13691 manish.sha 1481
			}catch (TException e) {
1482
				logger.error("Error while getting homeshop18 order", e);
1483
			}
1484
			hsCourierName = hsOrder.getCourierName();
1485
			orderTable.addCell(new Phrase("HomeShop18 Order No:", helvetica8));
1486
			orderTable.addCell(new Phrase(hsOrder.getHsOrderNo(), helvetica8));
1487
			orderTable.addCell(new Phrase("HomeShop18 Sub Order No:", helvetica8));
1488
			orderTable.addCell(new Phrase(hsOrder.getHsSubOrderNo(), helvetica8));
1489
 
8182 amar.kumar 1490
		} else if(order.getSource() == OrderSource.EBAY.getValue()){
1491
			EbayOrder ebayOrder = null;
1492
			try {
1493
				ebayOrder = tsc.getClient().getEbayOrderByOrderId(order.getId());
1494
			} catch (TException e) {
1495
				logger.error("Error while getting ebay order", e);
1496
			}
1497
			orderTable.addCell(new Phrase("PaisaPayId:", helvetica8));
1498
			orderTable.addCell(new Phrase(ebayOrder.getPaisaPayId(), helvetica8));
1499
			orderTable.addCell(new Phrase("Sales Rec Number:", helvetica8));
1500
			orderTable.addCell(new Phrase(new Long(ebayOrder.getSalesRecordNumber()).toString(), helvetica8));
8488 amar.kumar 1501
		} else if(order.getSource() == OrderSource.SNAPDEAL.getValue()){
1502
			SnapdealOrder snapdealOrder = null;
1503
			try {
11424 kshitij.so 1504
				snapdealOrder = tsc.getClient().getSnapdealOrder(order.getId(), null, null).get(0);
8488 amar.kumar 1505
			} catch (TException e) {
1506
				logger.error("Error while getting snapdeal order", e);
1507
			}
1508
			orderTable.addCell(new Phrase("Snapdeal OrderId:", helvetica8));
1509
			orderTable.addCell(new Phrase(new Long(snapdealOrder.getSubOrderId()).toString(), helvetica8));
8828 amar.kumar 1510
 
1511
			String refernceCodeFontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1512
			FontFactoryImp ttfFontFactory = new FontFactoryImp();
1513
			ttfFontFactory.register(refernceCodeFontPath, "barcode");
8876 amar.kumar 1514
			Font referenceCodeBarCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, 20);
8828 amar.kumar 1515
 
8874 amar.kumar 1516
			PdfPCell snapdealReferenceBarCodeCell = new PdfPCell(new Paragraph("*" +  snapdealOrder.getReferenceCode() + "*", referenceCodeBarCodeFont));
8828 amar.kumar 1517
			snapdealReferenceBarCodeCell.setBorder(Rectangle.NO_BORDER);
8876 amar.kumar 1518
			snapdealReferenceBarCodeCell.setPaddingTop(9.0f);
1519
			snapdealReferenceBarCodeCell.setColspan(2);
9042 amar.kumar 1520
			snapdealReferenceBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
8876 amar.kumar 1521
			//orderTable.addCell(new Phrase("Snapdeal ReferenceCode:", helvetica8));
8828 amar.kumar 1522
			orderTable.addCell(snapdealReferenceBarCodeCell);
1523
			//orderTable.addCell(new Phrase(snapdealOrder.getReferenceCode(), helvetica8));
7528 rajveer 1524
		}
8989 vikram.rag 1525
		else if(order.getSource() == OrderSource.FLIPKART.getValue()){
1526
			FlipkartOrder flipkartOrder = null;
1527
			try {
1528
				flipkartOrder = tsc.getClient().getFlipkartOrder(order.getId());
1529
			} catch (TException e) {
8996 amar.kumar 1530
				logger.error("Error while getting flipkart order", e);
8989 vikram.rag 1531
			}
1532
			orderTable.addCell(new Phrase("Flipkart OrderId:", helvetica8));
1533
			orderTable.addCell(new Phrase(flipkartOrder.getFlipkartOrderId(), helvetica8));
9037 amar.kumar 1534
 
1535
			//orderTable.addCell(new Phrase("Flipkart OrderItemId:", helvetica8));
1536
			String flipkartBarCodeFontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1537
			FontFactoryImp ttfFontFactory = new FontFactoryImp();
1538
			ttfFontFactory.register(flipkartBarCodeFontPath, "barcode");
9043 amar.kumar 1539
			Font flipkartBarCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, 18);
9037 amar.kumar 1540
 
9043 amar.kumar 1541
			orderTable.addCell(new Phrase("Flipkart OrderItemId:", helvetica8));
9037 amar.kumar 1542
			PdfPCell flipkartOrderItemIdBarCodeCell = new PdfPCell(new Paragraph("*" +  new Long(flipkartOrder.getFlipkartSubOrderId()).toString() + "*", flipkartBarCodeFont));
1543
			flipkartOrderItemIdBarCodeCell.setBorder(Rectangle.NO_BORDER);
1544
			flipkartOrderItemIdBarCodeCell.setPaddingTop(9.0f);
9043 amar.kumar 1545
			//flipkartOrderItemIdBarCodeCell.setColspan(2);
1546
			//flipkartOrderItemIdBarCodeCell.setHorizontalAlignment(Element.ALIGN_CENTER);
9037 amar.kumar 1547
			orderTable.addCell(flipkartOrderItemIdBarCodeCell);
1548
			//orderTable.addCell(new Phrase("Flipkart OrderItemId:", helvetica8));
1549
			//orderTable.addCell(new Phrase(new Long(flipkartOrder.getFlipkartSubOrderId()).toString(), helvetica8));
8989 vikram.rag 1550
		}
1551
 
1552
 
7014 rajveer 1553
		orderTable.addCell(new Phrase("Order Date:", helvetica8));
1554
		orderTable.addCell(new Phrase(DateFormat.getDateInstance(DateFormat.MEDIUM).format(new Date(order.getCreated_timestamp())), helvetica8));
13276 manish.sha 1555
 
1556
		if(OrderType.B2B==order.getOrderType()){
1557
			try {
1558
				String poRefVal = tsc.getClient().getOrderAttributeValue(order.getId(), "poRefNumber");
1559
				if(poRefVal!=null && poRefVal.length()>0){
1560
					orderTable.addCell(new Phrase("PO Ref:", helvetica8));
1561
					orderTable.addCell(new Phrase(poRefVal, helvetica8));
1562
				}
1563
 
1564
			} catch (TException e) {
1565
				logger.error("Error while getting amazon order", e);
1566
			}
1567
		}
2787 chandransh 1568
 
7014 rajveer 1569
		orderTable.addCell(new Phrase("Courier:", helvetica8));
13691 manish.sha 1570
		if(order.getSource() == OrderSource.HOMESHOP18.getValue()){
1571
			orderTable.addCell(new Phrase(hsCourierName, helvetica8));
1572
		} else{
1573
			orderTable.addCell(new Phrase(provider.getName(), helvetica8));
1574
		}
2787 chandransh 1575
 
9038 amar.kumar 1576
		if(order.getAirwaybill_no()!=null && !order.getAirwaybill_no().isEmpty()) {
1577
			orderTable.addCell(new Phrase("AWB No:", helvetica8));
1578
			orderTable.addCell(new Phrase(order.getAirwaybill_no(), helvetica8));
1579
		}
2787 chandransh 1580
 
7014 rajveer 1581
		orderTable.addCell(new Phrase("AWB Date:", helvetica8));
1582
		orderTable.addCell(new Phrase(DateFormat.getDateInstance(DateFormat.MEDIUM).format(new Date(order.getBilling_timestamp())), helvetica8));
2787 chandransh 1583
 
7014 rajveer 1584
		return orderTable;
1585
	}
2787 chandransh 1586
 
13276 manish.sha 1587
	private PdfPTable getBottomInvoiceTable(List<Order> orderList,boolean isVAT, String invoiceFormat){
1588
		PdfPTable invoiceTable = new PdfPTable(new float[]{0.1f, 0.3f, 0.1f, 0.1f, 0.1f, 0.1f, 0.1f, 0.1f});
7014 rajveer 1589
		invoiceTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
2787 chandransh 1590
 
13284 manish.sha 1591
		invoiceTable.addCell(getInvoiceTableHeader(8,orderList.get(0).getLogisticsTransactionId()));
4262 rajveer 1592
 
13276 manish.sha 1593
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
1594
			invoiceTable.addCell(new Phrase("Sr No", helveticaBold8));
1595
		}else{
1596
			invoiceTable.addCell(new Phrase("Order No", helveticaBold8));
1597
		}
7014 rajveer 1598
		invoiceTable.addCell(new Phrase("Description", helveticaBold8));
1599
		invoiceTable.addCell(new Phrase("Quantity", helveticaBold8));
1600
		invoiceTable.addCell(new Phrase("Rate (Rs)", helveticaBold8));
1601
		invoiceTable.addCell(new Phrase("Amount (Rs)", helveticaBold8));
13276 manish.sha 1602
		invoiceTable.addCell(new Phrase("Tax Rate%", helveticaBold8));
1603
		invoiceTable.addCell(new Phrase("Tax (Rs)", helveticaBold8));
1604
		invoiceTable.addCell(new Phrase("Item Total (Rs)", helveticaBold8));;
1605
		double totalAmount = 0.0;
1606
		double insuranceAmount = 0.0;
17470 manish.sha 1607
		double totalShippingCost = 0.0;
13276 manish.sha 1608
		int i=1;
1609
		if("Bulk".equalsIgnoreCase(invoiceFormat)){
1610
			Map<Long, String> itemNamesMap= new HashMap<Long, String>();
1611
			Map<Long, Double> itemQuantityMap = new HashMap<Long, Double>();
1612
			Map<Long, Double> itemRateMap = new HashMap<Long, Double>();
1613
			Map<Long, Double> itemTotalAmtMap = new HashMap<Long, Double>();
1614
			Map<Long, Double> itemTaxPercentageMap = new HashMap<Long, Double>();
1615
			Map<Long, Double> itemTaxValueMap = new HashMap<Long, Double>();
1616
 
1617
			for(Order order : orderList){
1618
				LineItem lineitem = order.getLineitems().get(0);
1619
 
1620
				double orderAmount = order.getTotal_amount();
1621
				double rate = lineitem.getVatRate();
1622
				double salesTax = (rate * (orderAmount - order.getInsuranceAmount()))/(100 + rate);
1623
				totalAmount = totalAmount + orderAmount;
17470 manish.sha 1624
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 1625
				double itemPrice = lineitem.getUnit_price();
1626
				double showPrice = (100 * itemPrice)/(100 + rate);
1627
				double totalPrice = lineitem.getTotal_price();
1628
				double showTotalPrice = (100 * totalPrice)/(100 + rate);
1629
 
1630
				if(order.getInsurer() > 0) {
1631
					insuranceAmount =insuranceAmount + order.getInsuranceAmount();
1632
				}
1633
 
1634
				if(!itemNamesMap.containsKey(lineitem.getItem_id())){
1635
					itemNamesMap.put(lineitem.getItem_id(), getItemDisplayName(lineitem, false));
1636
				}
1637
				if(itemQuantityMap.containsKey(lineitem.getItem_id())){
1638
					double quantity = itemQuantityMap.get(lineitem.getItem_id()) + lineitem.getQuantity();
1639
					itemQuantityMap.put(lineitem.getItem_id(), quantity);
1640
				} else {
1641
					itemQuantityMap.put(lineitem.getItem_id(),lineitem.getQuantity());
1642
				}
1643
				if(!itemRateMap.containsKey(lineitem.getItem_id())){
1644
					itemRateMap.put(lineitem.getItem_id(), showPrice);
1645
				}
1646
				if(!itemTaxPercentageMap.containsKey(lineitem.getItem_id())){
1647
					itemTaxPercentageMap.put(lineitem.getItem_id(), rate);
1648
				}
1649
				if(itemTaxValueMap.containsKey(lineitem.getItem_id())){
1650
					double taxValue = itemTaxValueMap.get(lineitem.getItem_id()) + salesTax;
1651
					itemTaxValueMap.put(lineitem.getItem_id(), taxValue);
1652
				}else{
1653
					itemTaxValueMap.put(lineitem.getItem_id(), salesTax);
1654
				}
1655
				if(itemTotalAmtMap.containsKey(lineitem.getItem_id())){
1656
					double totalItemAmount = itemTotalAmtMap.get(lineitem.getItem_id()) + showTotalPrice;
1657
					itemTotalAmtMap.put(lineitem.getItem_id(), totalItemAmount);
1658
				}else{
1659
					itemTotalAmtMap.put(lineitem.getItem_id(), showTotalPrice);
1660
				}
1661
			}
1662
 
1663
			for(Long itemId : itemNamesMap.keySet()){
1664
				invoiceTable.addCell(new Phrase(i+"", helveticaBold8));
1665
				invoiceTable.addCell(new Phrase(itemNamesMap.get(itemId),helvetica8));
1666
				invoiceTable.addCell(new Phrase(itemQuantityMap.get(itemId)+"",helvetica8));
13285 manish.sha 1667
				invoiceTable.addCell(getPriceCell(itemRateMap.get(itemId)));
1668
				invoiceTable.addCell(getPriceCell(itemTotalAmtMap.get(itemId)));
1669
				invoiceTable.addCell(new Phrase(itemTaxPercentageMap.get(itemId)+"%",helvetica8));
1670
				invoiceTable.addCell(getPriceCell(itemTaxValueMap.get(itemId)));
1671
				invoiceTable.addCell(getPriceCell(itemTotalAmtMap.get(itemId)+itemTaxValueMap.get(itemId)));
13313 manish.sha 1672
				i++;
13276 manish.sha 1673
			}
1674
		}
1675
		else{
9432 amar.kumar 1676
 
13276 manish.sha 1677
			for(Order order :orderList){
1678
				LineItem lineItem = order.getLineitems().get(0);
1679
				double orderAmount = order.getTotal_amount();
1680
				double rate = lineItem.getVatRate();
1681
				double salesTax = (rate * (orderAmount - order.getInsuranceAmount()))/(100 + rate);
1682
 
1683
				invoiceTable.addCell(new Phrase(order.getId()+"", helveticaBold8));
1684
				invoiceTable.addCell(getProductNameCell(lineItem, true, order.getFreebieItemId()));
1685
				invoiceTable.addCell(new Phrase("" + lineItem.getQuantity(), helvetica8));
1686
 
1687
 
1688
				//populateBottomInvoiceTable(order, invoiceTable, rate);
1689
 
1690
				double itemPrice = lineItem.getUnit_price();
1691
				double showPrice = (100 * itemPrice)/(100 + rate);
1692
				invoiceTable.addCell(getPriceCell(showPrice));
1693
 
1694
				double totalPrice = lineItem.getTotal_price();
1695
				showPrice = (100 * totalPrice)/(100 + rate);
1696
				invoiceTable.addCell(getPriceCell(showPrice));
1697
 
1698
				PdfPCell salesTaxCell = getPriceCell(salesTax);
1699
 
1700
 
1701
				invoiceTable.addCell(new Phrase(rate + "%", helvetica8));
1702
				invoiceTable.addCell(salesTaxCell);
1703
				invoiceTable.addCell(getTotalAmountCell(orderAmount));
1704
 
1705
				if(order.getInsurer() > 0) {
1706
					insuranceAmount =insuranceAmount + order.getInsuranceAmount();
1707
				}
1708
				totalAmount = totalAmount+ orderAmount;
17470 manish.sha 1709
				totalShippingCost = totalShippingCost + order.getShippingCost();
13276 manish.sha 1710
				i++;
1711
			}
9432 amar.kumar 1712
		}
7014 rajveer 1713
 
13276 manish.sha 1714
		if(insuranceAmount>0){
1715
			invoiceTable.addCell(getInsuranceCell(7));
1716
			invoiceTable.addCell(getPriceCell(insuranceAmount));
7014 rajveer 1717
		}
17470 manish.sha 1718
		if(totalShippingCost>0){
17501 manish.sha 1719
			invoiceTable.addCell(getShippingCostCell(6));      
1720
			invoiceTable.addCell(getRupeesCell(false));
1721
			invoiceTable.addCell(getPriceCell(totalShippingCost));
17470 manish.sha 1722
		}
13276 manish.sha 1723
		invoiceTable.addCell(getTotalCell(6));
17501 manish.sha 1724
		invoiceTable.addCell(getRupeesCell(true));
17470 manish.sha 1725
		invoiceTable.addCell(getTotalAmountCell(totalAmount+totalShippingCost));
7014 rajveer 1726
 
13276 manish.sha 1727
		invoiceTable.addCell(new Phrase("Amount in Words:", helveticaBold8));
17470 manish.sha 1728
		invoiceTable.addCell(getAmountInWordsCell(totalAmount+totalShippingCost));
7014 rajveer 1729
 
13276 manish.sha 1730
		invoiceTable.addCell(getEOECell(8));
7014 rajveer 1731
 
1732
		return invoiceTable;
1733
	}
1734
 
13276 manish.sha 1735
	private PdfPCell getInvoiceTableHeader(int colspan, String masterOrderId) {
1736
		PdfPTable invoiceHeaderTable = new PdfPTable(2);
1737
		PdfPCell masterOrderIdCell = new PdfPCell(new Phrase("Master Order Id- "+masterOrderId, helvetica10));
13320 manish.sha 1738
		if(masterOrderId!=null && !masterOrderId.isEmpty()){
1739
			masterOrderIdCell.setBorder(Rectangle.NO_BORDER);
1740
			masterOrderIdCell.setPaddingTop(1);
1741
		}
13281 manish.sha 1742
		PdfPCell invoiceTableHeader = new PdfPCell(new Phrase("Order Details:", helveticaBold12));
7014 rajveer 1743
		invoiceTableHeader.setBorder(Rectangle.NO_BORDER);
8551 manish.sha 1744
		invoiceTableHeader.setPaddingTop(1);
13276 manish.sha 1745
		invoiceHeaderTable.addCell(invoiceTableHeader);
13320 manish.sha 1746
		if(masterOrderId!=null && !masterOrderId.isEmpty()){
1747
			invoiceHeaderTable.addCell(masterOrderIdCell);
1748
		}else{
1749
			masterOrderIdCell = new PdfPCell(new Phrase(" ", helvetica10));
1750
			invoiceHeaderTable.addCell(masterOrderIdCell);
1751
		}
13283 manish.sha 1752
		PdfPCell headerCell = new PdfPCell(invoiceHeaderTable);
1753
		headerCell.setColspan(colspan);
1754
		return headerCell;
7014 rajveer 1755
	}
1756
 
13276 manish.sha 1757
	/*private void populateBottomInvoiceTable(List<Order> orderList, PdfPTable invoiceTable) {
7014 rajveer 1758
		for (LineItem lineitem : order.getLineitems()) {
1759
			invoiceTable.addCell(new Phrase("" + order.getId() , helvetica8));
1760
 
7190 amar.kumar 1761
			invoiceTable.addCell(getProductNameCell(lineitem, true, order.getFreebieItemId()));
7014 rajveer 1762
 
1763
			invoiceTable.addCell(new Phrase("" + lineitem.getQuantity(), helvetica8));
1764
 
1765
			double itemPrice = lineitem.getUnit_price();
1766
			double showPrice = (100 * itemPrice)/(100 + rate);
1767
			invoiceTable.addCell(getPriceCell(showPrice)); //Unit Price Cell
1768
 
1769
			double totalPrice = lineitem.getTotal_price();
1770
			showPrice = (100 * totalPrice)/(100 + rate);
1771
			invoiceTable.addCell(getPriceCell(showPrice));  //Total Price Cell
1772
		}
13276 manish.sha 1773
	}*/
7014 rajveer 1774
 
7190 amar.kumar 1775
	private PdfPCell getProductNameCell(LineItem lineitem, boolean appendIMEI, Long freebieItemId) {
7014 rajveer 1776
		String itemName = getItemDisplayName(lineitem, appendIMEI);
7190 amar.kumar 1777
		if(freebieItemId!=null && freebieItemId!=0){
1778
			try {
1779
				CatalogService.Client catalogClient = ctsc.getClient();
1780
				Item item = catalogClient.getItem(freebieItemId);
1781
				itemName = itemName + "\n(Free Item: " + item.getBrand() + " " + item.getModelName() + " " + item.getModelNumber() + ")";
1782
			} catch(Exception tex) {
1783
				logger.error("Not able to get Freebie Item Details for ItemId:" + freebieItemId, tex);
1784
			}
1785
		}
7014 rajveer 1786
		PdfPCell productNameCell = new PdfPCell(new Phrase(itemName, helvetica8));
1787
		productNameCell.setHorizontalAlignment(Element.ALIGN_LEFT);
1788
		return productNameCell;
1789
	}
1790
 
1791
	private PdfPCell getPriceCell(double price) {
1792
		PdfPCell totalPriceCell = new PdfPCell(new Phrase(amountFormat.format(price), helvetica8));
1793
		totalPriceCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1794
		return totalPriceCell;
1795
	}
1796
 
1797
	private PdfPCell getVATLabelCell(boolean isVAT) {
1798
		PdfPCell vatCell = null;
1799
		if(isVAT){
1800
			vatCell = new PdfPCell(new Phrase("VAT", helveticaBold8));
1801
		} else {
1802
			vatCell = new PdfPCell(new Phrase("CST", helveticaBold8));
1803
		}
1804
		vatCell.setColspan(3);
1805
		vatCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1806
		return vatCell;
1807
	}
1808
 
9432 amar.kumar 1809
	private PdfPCell getCFORMLabelCell() {
1810
		PdfPCell cFormCell = null;
1811
		cFormCell = new PdfPCell(new Phrase("CST Against CForm", helveticaBold8));
1812
		cFormCell.setColspan(3);
1813
		cFormCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1814
		return cFormCell;
1815
	}
1816
 
7318 rajveer 1817
	private PdfPCell getAdvanceAmountCell(int colspan) {
1818
		PdfPCell insuranceCell = null;
1819
		insuranceCell = new PdfPCell(new Phrase("Advance Amount Received", helvetica8));
1820
		insuranceCell.setColspan(colspan);
1821
		insuranceCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1822
		return insuranceCell;
1823
	}
1824
 
7014 rajveer 1825
	private PdfPCell getInsuranceCell(int colspan) {
1826
		PdfPCell insuranceCell = null;
13276 manish.sha 1827
		insuranceCell = new PdfPCell(new Phrase("1 Year WorldWide Theft Insurance. T&C Apply", helvetica8));
7014 rajveer 1828
		insuranceCell.setColspan(colspan);
1829
		insuranceCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1830
		return insuranceCell;
1831
	}
1832
 
1833
	private PdfPCell getEmptyCell(int colspan) {
1834
		PdfPCell emptyCell = new PdfPCell(new Phrase(" ", helvetica8));
1835
		emptyCell.setColspan(colspan);
1836
		return emptyCell;
1837
	}
17470 manish.sha 1838
 
1839
	private PdfPCell getShippingCostCell(int colspan) {
1840
		PdfPCell shippingCostCell = new PdfPCell(new Phrase("Shipping Charges", helvetica8));
1841
		shippingCostCell.setColspan(colspan);
17501 manish.sha 1842
		shippingCostCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
17470 manish.sha 1843
		return shippingCostCell;
1844
	}
1845
 
1846
	private PdfPCell getCodChargesCell(int colspan) {
1847
		PdfPCell codChargesCell = new PdfPCell(new Phrase("COD Charges", helvetica8));
1848
		codChargesCell.setColspan(colspan);
1849
		return codChargesCell;
1850
	}
7014 rajveer 1851
 
1852
	private PdfPCell getTotalCell(int colspan) {
13276 manish.sha 1853
		PdfPCell totalCell = new PdfPCell(new Phrase("Grand Total", helveticaBold8));
7014 rajveer 1854
		totalCell.setColspan(colspan);
1855
		totalCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1856
		return totalCell;
1857
	}
1858
 
17501 manish.sha 1859
	private PdfPCell getRupeesCell(boolean useBold) {
1860
		PdfPCell rupeesCell;
1861
		if(useBold)
1862
			rupeesCell= new PdfPCell(new Phrase("Rs.", helveticaBold8));
1863
		else
1864
			rupeesCell= new PdfPCell(new Phrase("Rs.", helvetica8));
7014 rajveer 1865
		rupeesCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1866
		return rupeesCell;
1867
	}
1868
 
1869
	private PdfPCell getTotalAmountCell(double orderAmount) {
1870
		PdfPCell totalAmountCell = new PdfPCell(new Phrase(amountFormat.format(orderAmount), helveticaBold8));
1871
		totalAmountCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1872
		return totalAmountCell;
1873
	}
1874
 
1875
	/**
1876
	 * This method uses ICU4J libraries to convert the given amount into words
1877
	 * of Indian locale.
1878
	 * 
1879
	 * @param orderAmount
1880
	 *            The amount to convert.
1881
	 * @return the string representation of the given amount.
1882
	 */
1883
	private PdfPCell getAmountInWordsCell(double orderAmount) {
1884
		RuleBasedNumberFormat amountInWordsFormat = new RuleBasedNumberFormat(indianLocale, RuleBasedNumberFormat.SPELLOUT);
1885
		StringBuilder amountInWords = new StringBuilder("Rs. ");
1886
		amountInWords.append(WordUtils.capitalize(amountInWordsFormat.format((int)orderAmount)));
1887
		amountInWords.append(" and ");
1888
		amountInWords.append(WordUtils.capitalize(amountInWordsFormat.format((int)(orderAmount*100)%100)));
1889
		amountInWords.append(" paise");
1890
 
1891
		PdfPCell amountInWordsCell= new PdfPCell(new Phrase(amountInWords.toString(), helveticaBold8));
1892
		amountInWordsCell.setColspan(4);
1893
		return amountInWordsCell;
1894
	}
1895
 
1896
	/**
1897
	 * Returns the item name to be displayed in the invoice table.
1898
	 * 
1899
	 * @param lineitem
1900
	 *            The line item whose name has to be displayed
1901
	 * @param appendIMEI
1902
	 *            Whether to attach the IMEI No. to the item name
1903
	 * @return The name to be displayed for the given line item.
1904
	 */
1905
	private String getItemDisplayName(LineItem lineitem, boolean appendIMEI){
1906
		StringBuffer itemName = new StringBuffer();
1907
		if(lineitem.getBrand()!= null)
1908
			itemName.append(lineitem.getBrand() + " ");
1909
		if(lineitem.getModel_name() != null)
1910
			itemName.append(lineitem.getModel_name() + " ");
1911
		if(lineitem.getModel_number() != null )
1912
			itemName.append(lineitem.getModel_number() + " ");
1913
		if(lineitem.getColor() != null && !lineitem.getColor().trim().equals("NA"))
1914
			itemName.append("("+lineitem.getColor()+")");
13320 manish.sha 1915
		if(appendIMEI && lineitem.isSetSerial_number() && !lineitem.getSerial_number().isEmpty()){
7014 rajveer 1916
			itemName.append("\nIMEI No. " + lineitem.getSerial_number());
1917
		}
1918
 
1919
		return itemName.toString();
1920
	}
1921
 
1922
	/**
1923
	 * 
1924
	 * @param colspan
1925
	 * @return a PdfPCell containing the E&amp;OE text and spanning the given
1926
	 *         no. of columns
1927
	 */
1928
	private PdfPCell getEOECell(int colspan) {
1929
		PdfPCell eoeCell = new PdfPCell(new Phrase("E & O.E", helvetica8));
1930
		eoeCell.setColspan(colspan);
1931
		eoeCell.setHorizontalAlignment(Element.ALIGN_RIGHT);
1932
		return eoeCell;
1933
	}
1934
 
1935
	private PdfPTable getExtraInfoTable(Order order, Provider provider, float barcodeFontSize, BillingType billingType){
1936
		PdfPTable extraInfoTable = new PdfPTable(1);
1937
		extraInfoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1938
		extraInfoTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
1939
 
1940
		String fontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1941
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
1942
		ttfFontFactory.register(fontPath, "barcode");
1943
		Font barCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, barcodeFontSize);
1944
 
1945
		PdfPCell extraInfoCell;
1946
		if(billingType == BillingType.EXTERNAL){
1947
			extraInfoCell = new PdfPCell(new Paragraph( "*" + order.getId() + "*        *" + order.getCustomer_name() + "*        *"  + order.getTotal_amount() + "*", barCodeFont));
1948
		}else{
1949
			extraInfoCell = new PdfPCell(new Paragraph( "*" + order.getId() + "*        *" + order.getLineitems().get(0).getTransfer_price() + "*", barCodeFont));	
1950
		}
1951
 
1952
		extraInfoCell.setPaddingTop(20.0f);
1953
		extraInfoCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
1954
		extraInfoCell.setBorder(Rectangle.NO_BORDER);
1955
 
1956
		extraInfoTable.addCell(extraInfoCell);
1957
 
1958
 
1959
		return extraInfoTable;
1960
	}
1961
 
1962
	private PdfPTable getFixedTextTable(float barcodeFontSize, String printText){
1963
		PdfPTable extraInfoTable = new PdfPTable(1);
1964
		extraInfoTable.getDefaultCell().setBorder(Rectangle.NO_BORDER);
1965
		extraInfoTable.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
1966
 
1967
		String fontPath = InvoiceGenerationService.class.getResource("/saholic-wn.TTF").getPath();
1968
		FontFactoryImp ttfFontFactory = new FontFactoryImp();
1969
		ttfFontFactory.register(fontPath, "barcode");
1970
		Font barCodeFont = ttfFontFactory.getFont("barcode", BaseFont.CP1252, true, barcodeFontSize);
1971
 
1972
		PdfPCell extraInfoCell = new PdfPCell(new Paragraph( "*" + printText + "*", barCodeFont));
1973
 
1974
		extraInfoCell.setPaddingTop(20.0f);
1975
		extraInfoCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
1976
		extraInfoCell.setBorder(Rectangle.NO_BORDER);
1977
 
1978
		extraInfoTable.addCell(extraInfoCell);
1979
 
1980
		return extraInfoTable;
1981
	}
8067 manish.sha 1982
 
1983
	private void generateBarcode(String barcodeString, String fileName){
1984
		Code128Bean bean = new Code128Bean();
7014 rajveer 1985
 
8067 manish.sha 1986
		final int dpi = 60;
1987
 
1988
		//Configure the barcode generator
1989
		bean.setModuleWidth(UnitConv.in2mm(1.0f / dpi)); //makes the narrow bar 
1990
		                                                 //width exactly one pixel
1991
		bean.setFontSize(bean.getFontSize()+1.0f);
1992
		bean.doQuietZone(false);
1993
 
1994
		try {
1995
			File outputFile = new File("/tmp/"+fileName+".png");
1996
			OutputStream out = new FileOutputStream(outputFile);
1997
 
1998
		    //Set up the canvas provider for monochrome PNG output 
1999
		    BitmapCanvasProvider canvas = new BitmapCanvasProvider(
2000
		            out, "image/x-png", dpi, BufferedImage.TYPE_BYTE_BINARY, false, 0);
2001
 
2002
		    //Generate the barcode
2003
		    bean.generateBarcode(canvas, barcodeString);
2004
 
2005
		    //Signal end of generation
2006
		    canvas.finish();
2007
		    out.close();
2008
 
2009
		} 
2010
		catch(Exception e){
2011
			logger.error("Exception during generating Barcode : ", e);
2012
		}
2013
	}
2014
 
7014 rajveer 2015
	public static void main(String[] args) throws IOException {
2016
		InvoiceGenerationService invoiceGenerationService = new InvoiceGenerationService();
7318 rajveer 2017
		long orderId = 356324;
2018
		ByteArrayOutputStream baos = invoiceGenerationService.generateInvoice(orderId, true, false, 1);
7014 rajveer 2019
		String userHome = System.getProperty("user.home");
2020
		File f = new File(userHome + "/invoice-" + orderId + ".pdf");
2021
		FileOutputStream fos = new FileOutputStream(f);
2022
		baos.writeTo(fos);
2023
		System.out.println("Invoice generated.");
2024
	}
2787 chandransh 2025
}