| | |
| | | shoppingGoods.setAssembleGoods(assembleListGoods); |
| | | List<ShoppingGoodsAssemble> assembleListProj = shoppingGoodsAssembleDao.selectProjByShoppingGoodsId(shoppingGoods.getId()); |
| | | shoppingGoods.setAssembleProj(assembleListProj); |
| | | } else if (Dictionary.SHOPPING_GOODS_TYPE_ZHK.equals(shoppingGoods.getGoodType())) { |
| | | List<ShoppingGoodsAssemble> assembleList = shoppingGoodsAssembleDao.selectAssembleShoppingGoodsByShoppingGoodsId(shoppingGoods.getId()); |
| | | shoppingGoods.setZongheCarGoods(assembleList); |
| | | } |
| | | |
| | | |
| | |
| | | // 返回充值卡编辑界面 |
| | | WebUtil.getRequest().setAttribute("obj", shoppingGoods); |
| | | return "admin/hive-erp/products/money-card-form"; |
| | | } else if (shoppingGoods.getGoodType().equals(Dictionary.SHOPPING_GOODS_TYPE_ZHK)) { |
| | | WebUtil.getRequest().setAttribute("obj", shoppingGoods); |
| | | return "admin/hive-erp/products/zonghe-card-form"; |
| | | } |
| | | |
| | | |