Subversion Repositories SmartDukaan

Rev

Rev 6912 | Rev 6985 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6912 Rev 6960
Line 339... Line 339...
339
            return "N/A";
339
            return "N/A";
340
        }
340
        }
341
        Calendar cal = Calendar.getInstance();
341
        Calendar cal = Calendar.getInstance();
342
        cal.setTimeInMillis(DeliveryDate);
342
        cal.setTimeInMillis(DeliveryDate);
343
        cal.add(Calendar.YEAR, 1);
343
        cal.add(Calendar.YEAR, 1);
-
 
344
        SimpleDateFormat sdf = new SimpleDateFormat("dd MMM, yyyy");
344
        return SDF.format(cal.getTime());
345
        return sdf.format(cal.getTime());
345
    }
346
    }
346
 
347
 
347
    public String getShippingAddressOfStore(long storeId) {
348
    public String getShippingAddressOfStore(long storeId) {
348
        try {
349
        try {
349
            in.shop2020.logistics.LogisticsService.Client client = new LogisticsClient().getClient();
350
            in.shop2020.logistics.LogisticsService.Client client = new LogisticsClient().getClient();