public IActionResult addFormula()
        {
            groupPoductModel gp = new groupPoductModel();

            ViewData["group_product"] = gp.drop_gp("");


            groupMaterialModel gm = new groupMaterialModel();

            ViewData["group_material"] = gm.drop_gm("");

            unitModel ut = new unitModel();

            ViewData["unit"] = ut.drop_unit("");

            return(View());
        }
Beispiel #2
0
        public IActionResult viewMaterial(string id)
        {
            ViewData["mtr_id"] = id;

            MaterialModel mt = new MaterialModel();

            mt.select_mtr("mtr_id = '" + id + "'");
            ViewData["mtr_img"]      = mt.mtr_img;
            ViewData["mtr_code"]     = mt.mtr_code;
            ViewData["mtr_name"]     = mt.mtr_name;
            ViewData["mtr_detail"]   = mt.mtr_detail;
            ViewData["mtr_keep_num"] = mt.mtr_keep_num;
            ViewData["mtr_width"]    = mt.mtr_width;
            ViewData["mtr_long"]     = mt.mtr_long;
            ViewData["mtr_side"]     = mt.mtr_side;
            ViewData["mtr_roll"]     = mt.mtr_roll;
            ViewData["mtr_noti"]     = mt.mtr_noti;
            ViewData["mtr_noti_min"] = mt.mtr_noti_min;
            ViewData["mtr_noti_max"] = mt.mtr_noti_max;



            groupMaterialModel gm = new groupMaterialModel();

            ViewData["group_material"] = gm.drop_gm(mt.mtr_ref_tm_id);

            unitModel un = new unitModel();

            ViewData["unit_get"]    = un.drop_unit(mt.mtr_unit_get);
            ViewData["unit_expose"] = un.drop_unit(mt.mtr_unit_expose);


            stickerModel stk = new stickerModel();

            ViewData["sticker"] = stk.drop_con_pay(mt.mtr_sticker);

            shelfModel sh = new shelfModel();

            ViewData["shelf"] = sh.drop_shelf(mt.mtr_shelf);

            return(View());
        }
Beispiel #3
0
        public IActionResult addMaterial()
        {
            groupMaterialModel gm = new groupMaterialModel();

            ViewData["group_material"] = gm.drop_gm("");

            unitModel un = new unitModel();

            ViewData["unit"] = un.drop_unit("");


            stickerModel stk = new stickerModel();

            ViewData["sticker"] = stk.drop_con_pay("");

            shelfModel sh = new shelfModel();

            ViewData["shelf"] = sh.drop_shelf("");

            return(View());
        }
        public IActionResult editFormula(string id)
        {
            FormulaModel fm = new FormulaModel();

            fm.select_formula("fm_id = '" + id + "'");

            groupPoductModel gp = new groupPoductModel();

            ViewData["group_product"] = gp.drop_gp(fm.fm_ref_group_product_id);

            groupMaterialModel gm = new groupMaterialModel();

            ViewData["group_material"] = gm.drop_gm(fm.fm_ref_group_material_id);

            unitModel ut = new unitModel();

            ViewData["unit"] = ut.drop_unit(fm.fm_ref_unit_id);

            ViewData["fm_id"] = id;

            checkVal ck = new checkVal();

            ViewData["result_width"]       = ck.turnTF(fm.fm_result_width);
            ViewData["result_long"]        = ck.turnTF(fm.fm_result_long);
            ViewData["width_action_a"]     = ck.ckFormula(fm.fm_width_action_a);
            ViewData["width_action_a_val"] = fm.fm_width_action_a_val;
            ViewData["width_action_b"]     = ck.ckFormula(fm.fm_width_action_b);
            ViewData["width_action_b_val"] = fm.fm_width_action_b_val;
            ViewData["long_action_a"]      = ck.ckFormula(fm.fm_long_action_a);
            ViewData["long_action_a_val"]  = fm.fm_long_action_a_val;
            ViewData["long_action_b"]      = ck.ckFormula(fm.fm_long_action_b);
            ViewData["long_action_b_val"]  = fm.fm_long_action_b_val;
            ViewData["result_num"]         = ck.turnTF(fm.fm_result_num);
            ViewData["width_x_long"]       = fm.fm_width_x_long;
            ViewData["use_num"]            = fm.fm_use_num;


            return(View());
        }