Subversion Repositories SmartDukaan

Rev

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

Rev 35370 Rev 35372
Line 134... Line 134...
134
                                                      Model model) throws ProfitMandiBusinessException {
134
                                                      Model model) throws ProfitMandiBusinessException {
135
        LOGGER.info("Request Received at url {} with emailIdOrMobileNumber {}", request.getRequestURI(),
135
        LOGGER.info("Request Received at url {} with emailIdOrMobileNumber {}", request.getRequestURI(),
136
                emailIdOrMobileNumber);
136
                emailIdOrMobileNumber);
137
 
137
 
138
        Map<String, Object> map = retailerService.getByEmailIdOrMobileNumber(emailIdOrMobileNumber);
138
        Map<String, Object> map = retailerService.getByEmailIdOrMobileNumber(emailIdOrMobileNumber);
139
        LOGGER.info("map - ", map.get("trialForm"));
139
        LOGGER.info("map - {}", map.get("trialForm"));
140
        LOGGER.info("map - ", map);
140
        LOGGER.info("map - {}", map);
141
        model.addAllAttributes(map);
141
        model.addAllAttributes(map);
142
 
142
 
143
        model.addAttribute("counterSizes", CounterSize.values());
143
        model.addAttribute("counterSizes", CounterSize.values());
144
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
144
        Map<Integer, String> warehouseMap = ProfitMandiConstants.WAREHOUSE_MAP;
145
 
145