Subversion Repositories SmartDukaan

Rev

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

Rev 27594 Rev 27599
Line 81... Line 81...
81
import com.spice.profitmandi.dao.model.CreateOfferRequest;
81
import com.spice.profitmandi.dao.model.CreateOfferRequest;
82
import com.spice.profitmandi.dao.model.ItemTypeParams;
82
import com.spice.profitmandi.dao.model.ItemTypeParams;
83
import com.spice.profitmandi.dao.model.ItemWiseTertiaryModel;
83
import com.spice.profitmandi.dao.model.ItemWiseTertiaryModel;
84
import com.spice.profitmandi.dao.model.MonthSaleModel;
84
import com.spice.profitmandi.dao.model.MonthSaleModel;
85
import com.spice.profitmandi.dao.model.PartnerDetailModel;
85
import com.spice.profitmandi.dao.model.PartnerDetailModel;
-
 
86
import com.spice.profitmandi.dao.model.PartnerPendingIndentItemModel;
86
import com.spice.profitmandi.dao.model.SimpleCampaign;
87
import com.spice.profitmandi.dao.model.SimpleCampaign;
87
import com.spice.profitmandi.dao.model.SimpleCampaignParams;
88
import com.spice.profitmandi.dao.model.SimpleCampaignParams;
88
import com.spice.profitmandi.dao.model.WarehouseBrandWiseItemSaleModel;
89
import com.spice.profitmandi.dao.model.WarehouseBrandWiseItemSaleModel;
89
import com.spice.profitmandi.dao.model.BrandWisePartnerSaleModel;
90
import com.spice.profitmandi.dao.model.BrandWisePartnerSaleModel;
90
import com.spice.profitmandi.dao.model.WarehouseWiseBrandStockModel;
91
import com.spice.profitmandi.dao.model.WarehouseWiseBrandStockModel;
Line 1437... Line 1438...
1437
		model.addAttribute("unbilledOrders", unbilledOrders);
1438
		model.addAttribute("unbilledOrders", unbilledOrders);
1438
 
1439
 
1439
		return "item-wise-indent";
1440
		return "item-wise-indent";
1440
	}
1441
	}
1441
 
1442
 
-
 
1443
	@RequestMapping(value = "/getPartnerPendingIndentItem", method = RequestMethod.GET)
-
 
1444
	public String getPartnerPendingIndentItem(HttpServletRequest request, @RequestParam int warehouseId,
-
 
1445
			@RequestParam int itemId, Model model) throws ProfitMandiBusinessException {
-
 
1446
		List<PartnerPendingIndentItemModel> partnerPendingIndent = fofoStoreRepository
-
 
1447
				.selectPartnerPendingIndentItem(itemId, warehouseId);
-
 
1448
 
-
 
1449
		model.addAttribute("partnerPendingIndent", partnerPendingIndent);
-
 
1450
		return "partner-pending-indent-item";
-
 
1451
	}
-
 
1452
 
1442
}
1453
}