Package com.jpoweredcart.admin.form.sale

Examples of com.jpoweredcart.admin.form.sale.AffiliateForm


  @RequestMapping(value="/edit/{id}")
  public String edit(@PathVariable("id") Integer id, Model model){
   
    checkModifyPermission();
   
    AffiliateForm affForm = affiliateAdminModel.getForm(id);
    addFormAttributes(affForm, model);
   
    return "/admin/sale/affiliateForm";
  }
View Full Code Here


      uniqueCode = RandomStringUtils.randomAlphanumeric(13);
      String sql = "SELECT COUNT(*) FROM "+quoteTable("affiliate")+" WHERE code=?";
      count = getJdbcOperations().queryForObject(sql, Integer.class, uniqueCode);
    }while(count>0);
   
    AffiliateForm form = new AffiliateForm();
    form.setCode(uniqueCode);
   
    return form;
  }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.admin.form.sale.AffiliateForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.