Subversion Repositories SmartDukaan

Rev

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

Rev 28742 Rev 28743
Line 112... Line 112...
112
	@Autowired
112
	@Autowired
113
	private PartnerInvestmentService partnerInvestmentService;
113
	private PartnerInvestmentService partnerInvestmentService;
114
 
114
 
115
	@Autowired
115
	@Autowired
116
	private FofoUser fofoUser;
116
	private FofoUser fofoUser;
117
	
117
 
118
	@Autowired
118
	@Autowired
119
	private NotificationService notificationService;
119
	private NotificationService notificationService;
120
 
120
 
121
	public static final Map<String, Integer> MIN_BRAND_QTY_LIMIT = new HashMap<>();
121
	public static final Map<String, Integer> MIN_BRAND_QTY_LIMIT = new HashMap<>();
122
 
122
 
Line 192... Line 192...
192
	public ResponseEntity<?> Planogram(HttpServletRequest request, Model model) throws Exception {
192
	public ResponseEntity<?> Planogram(HttpServletRequest request, Model model) throws Exception {
193
 
193
 
194
		int userId = (int) request.getAttribute("userId");
194
		int userId = (int) request.getAttribute("userId");
195
		logger.info(" userId" + userId);
195
		logger.info(" userId" + userId);
196
 
196
 
197
		User user = userRepository.selectById(39411);
197
		User user = userRepository.selectById(userId);
198
		logger.info(" user" + user);
198
		logger.info(" user" + user);
199
		AuthUser authUser = authRepository.selectByEmailOrMobile(user.getEmailId());
199
		AuthUser authUser = authRepository.selectByEmailOrMobile(user.getEmailId());
200
		logger.info("authUser" + authUser);
200
		logger.info("authUser" + authUser);
201
		List<FocusedModelByPassRequest> byPassRequests = null;
201
		List<FocusedModelByPassRequest> byPassRequests = null;
202
		Map<String, Set<Integer>> storeGuyMap = csService.getAuthUserPartnerIdMapping();
202
		Map<String, Set<Integer>> storeGuyMap = csService.getAuthUserPartnerIdMapping();