Subversion Repositories SmartDukaan

Rev

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

Rev 6810 Rev 7078
Line 98... Line 98...
98
		
98
		
99
		setDescription(order);
99
		setDescription(order);
100
		setPaymentOption(payment);
100
		setPaymentOption(payment);
101
		
101
		
102
		this.amount = payment.getAmount();
102
		this.amount = payment.getAmount();
103
		this.billingDetails = new ContactDetails(order.getCustomer_name(),
103
		this.billingDetails = new ContactDetails(order.getCustomer_name().trim(),
104
				order.getCustomer_email(), order.getCustomer_address1(), order.getCustomer_address2(),
104
				order.getCustomer_email().trim(), order.getCustomer_address1(), order.getCustomer_address2(),
105
				order.getCustomer_city(), order.getCustomer_state(),
105
				order.getCustomer_city(), order.getCustomer_state(),
106
				order.getCustomer_pincode(), "India",
106
				order.getCustomer_pincode(), "India",
107
				order.getCustomer_mobilenumber());
107
				order.getCustomer_mobilenumber().trim());
108
		
108
		
109
		log.info(billingDetails);
109
		log.info(billingDetails);
110
		
110
		
111
		return "show";
111
		return "show";
112
	}
112
	}