Package org.internna.ossmoney.model

Examples of org.internna.ossmoney.model.Category.persist()


      Category category = Category.findByCategory(register.getCategory());
      if (category == null) {
        category = new Category();
        category.setCategory(register.getCategory());
        category.setIncome(register.getAmount() > 0 ? Boolean.TRUE : Boolean.FALSE);
        category.persist();
      }
      subcategory = new Subcategory();
      subcategory.setOwner(user);
      subcategory.setParentCategory(category);
      subcategory.setCategory(register.getSubcategory());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.