Subversion Repositories SmartDukaan

Rev

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

Rev 30266 Rev 30276
Line 244... Line 244...
244
			pud.setShopCity(customRetailer.getAddress().getCity());
244
			pud.setShopCity(customRetailer.getAddress().getCity());
245
			pud.setShopState(customRetailer.getAddress().getState());
245
			pud.setShopState(customRetailer.getAddress().getState());
246
			pud.setMobile(fk.getMobile());
246
			pud.setMobile(fk.getMobile());
247
			pud.setCity(fk.getCity());
247
			pud.setCity(fk.getCity());
248
			pud.setAddress(fk.getAddress1() + " " + fk.getAddress2() + " " + fk.getAddress3());
248
			pud.setAddress(fk.getAddress1() + " " + fk.getAddress2() + " " + fk.getAddress3());
249
			pud.setEmailId(fk.getEmail());
249
			pud.setEmailId(customRetailer.getEmail());
250
			pud.setPan(fk.getPan());
250
			pud.setPan(fk.getPan());
251
			pud.setPincode(fk.getPincode());
251
			pud.setPincode(fk.getPincode());
252
			pud.setBusinessActivationDate(user.getCreateTimestamp().toString());
252
			pud.setBusinessActivationDate(user.getCreateTimestamp().toString());
253
			pud.setState(fk.getState());
253
			pud.setState(fk.getState());
254
 
254
 
Line 290... Line 290...
290
 
290
 
291
				if (pa.getProductId() != null) {
291
				if (pa.getProductId() != null) {
292
					FundFinaPreApproval fpa = fundFinaPreApprovalRepository
292
					FundFinaPreApproval fpa = fundFinaPreApprovalRepository
293
							.selectByUserIdAndProductId(Integer.parseInt(pa.getUserId()), pa.getProductId());
293
							.selectByUserIdAndProductId(Integer.parseInt(pa.getUserId()), pa.getProductId());
294
 
294
 
-
 
295
					logger.info("fpa {}", fpa);
-
 
296
 
295
					CreditAccount creditAccount = creditAccountRepository
297
					CreditAccount creditAccount = creditAccountRepository
296
							.selectByFofoIdAndGateway(Integer.parseInt(pa.getUserId()), Gateway.FUNDFINA);
298
							.selectByFofoIdAndGateway(Integer.parseInt(pa.getUserId()), Gateway.FUNDFINA);
297
 
299
 
298
					DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
300
					DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
299
 
301