|
@@ -8,6 +8,7 @@ import org.springframework.web.servlet.ModelAndView;
|
|
|
import com.style24.core.support.message.TscMessageByLocale;
|
|
import com.style24.core.support.message.TscMessageByLocale;
|
|
|
import com.style24.front.biz.service.TsfOrderService;
|
|
import com.style24.front.biz.service.TsfOrderService;
|
|
|
import com.style24.front.support.controller.TsfBaseController;
|
|
import com.style24.front.support.controller.TsfBaseController;
|
|
|
|
|
+import com.style24.persistence.domain.Cart;
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
@@ -38,7 +39,9 @@ public class TsfOrderController extends TsfBaseController {
|
|
|
*/
|
|
*/
|
|
|
@RequestMapping(value = "/form")
|
|
@RequestMapping(value = "/form")
|
|
|
public ModelAndView orderForm(Cart cart) {
|
|
public ModelAndView orderForm(Cart cart) {
|
|
|
|
|
+ ModelAndView mav = new ModelAndView();
|
|
|
|
|
|
|
|
|
|
+ return mav;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|