|
|
@@ -87,7 +87,7 @@ public class TsfPlanningController extends TsfBaseController {
|
|
|
* @since 2021. 3. 5
|
|
|
*/
|
|
|
@GetMapping("/main/form")
|
|
|
- public ModelAndView planningMainForm(@RequestParam(value = "cateNo", required = false) Integer cateNo) {
|
|
|
+ public ModelAndView planningMainForm(@RequestParam(value = "cateNo", required = false) Integer cateNo, @RequestParam(value = "brandGroupNo", required = false) Integer brandGroupNo) {
|
|
|
ModelAndView mav = new ModelAndView(super.getDeviceViewName("planning/PlanningMainForm"));
|
|
|
|
|
|
Plan plan = new Plan();
|
|
|
@@ -98,6 +98,7 @@ public class TsfPlanningController extends TsfBaseController {
|
|
|
mav.addObject("cateList", planningService.getPlanningCategoryList(plan));
|
|
|
|
|
|
mav.addObject("cateNo", cateNo);
|
|
|
+ mav.addObject("brandGroupNo", brandGroupNo);
|
|
|
|
|
|
return mav;
|
|
|
}
|