diff --git a/src/main/java/com/backoffice/m/bf_food/M_Bf_foodController.java b/src/main/java/com/backoffice/m/bf_food/M_Bf_foodController.java
index 1f7cfa3..563684a 100644
--- a/src/main/java/com/backoffice/m/bf_food/M_Bf_foodController.java
+++ b/src/main/java/com/backoffice/m/bf_food/M_Bf_foodController.java
@@ -1058,4 +1058,28 @@ public class M_Bf_foodController extends AbstractControllerManager{
return redirect_url;
}
+ @RequestMapping(value="view_bf_commerce_input")
+ public String view_bf_commerce_input(@ModelAttribute("model") ModelMap model, HttpServletRequest request, HttpServletResponse response
+ , RedirectAttributes ra) {
+ DataMap paramMap = gmUtil.getDataMapFromRequest(request);
+
+ String redirect_url = "m/bf_food/view_bf_commerce_input";
+
+ try {
+ boolean is_login = gmUtil.setSessionForMobileMember(request, paramMap);
+ if(is_login == false) {
+ ra.addFlashAttribute("call_native_login", "Y");
+ redirect_url = "redirect:/m/login/view_login.do";
+ }else{
+ // 아이
+ DataMap rm_child = init_child(model, request, paramMap);
+ DataMap.putToModel(model, "rm_child", rm_child);
+ }
+ }catch(Exception ex1){ redirect_url = gmUtil.redirectError(true, ex1, request, paramMap, ra, ""); ex1.printStackTrace();}
+
+ gmUtil.redirectParam(model, paramMap);
+
+ return redirect_url;
+ }
+
}
diff --git a/src/main/webapp/WEB-INF/views/ftl/m/bf_food/index.ftl b/src/main/webapp/WEB-INF/views/ftl/m/bf_food/index.ftl
index a478f25..ea957f8 100644
--- a/src/main/webapp/WEB-INF/views/ftl/m/bf_food/index.ftl
+++ b/src/main/webapp/WEB-INF/views/ftl/m/bf_food/index.ftl
@@ -59,6 +59,12 @@
모유/젖병
+
+
diff --git a/src/main/webapp/WEB-INF/views/ftl/m/bf_food/view_bf_commerce_input.ftl b/src/main/webapp/WEB-INF/views/ftl/m/bf_food/view_bf_commerce_input.ftl
new file mode 100644
index 0000000..3e1582f
--- /dev/null
+++ b/src/main/webapp/WEB-INF/views/ftl/m/bf_food/view_bf_commerce_input.ftl
@@ -0,0 +1,248 @@
+<#include "/m/include/index_top.ftl">
+
+
+
+
+
+
+
+<#assign thumb_path = (model['rm_child']['append_300_img_file'])!>
+<#if thumb_path?has_content>
+ <#assign thumb_path="/file/get_img.do?mt_file_seq="+thumb_path >
+ <#if thumb_path?index_of("http") != 0><#assign thumb_path = URL_ROOT + thumb_path>#if>
+<#else>
+ <#if (model['rm_child']['gender'])! == 'F'>
+ <#assign thumb_path = '/bf/m/img/child/child_pic_04.png' >
+ <#else>
+ <#assign thumb_path = '/bf/m/img/child/child_pic_03.png' >
+ #if>
+#if>
+
+
+
+
+
+
+
+
+
+
+ <#if (model['lm_body'])??>
+
+ #if>
+
+
+
+
+
+<#include "/m/include/index_bottom_menu.ftl">
+
+
+
+
+
+
+<#include "/m/bf_growth_body/include_return_url.ftl">
+
+<#include "/m/include/index_bottom.ftl">
\ No newline at end of file