Package com.peusoft.ptcollect.core.persistance.domain

Examples of com.peusoft.ptcollect.core.persistance.domain.UserProjectActivity.addPrice()


        UserProjectActivityPrice price = new UserProjectActivityPrice();
        price.setUserProjectActivity(upa);
        price.setPrice(new BigDecimal("123.00").setScale(2, BigDecimal.ROUND_HALF_UP));
        price.setPeriod(new DayPeriod());
        upa.addPrice(price);

        // create test data

        WorkDay wd1 = new WorkDay();
        wd1.setUser(user);
View Full Code Here


        UserProjectActivityPrice price = new UserProjectActivityPrice();
        price.setUserProjectActivity(upa);
        price.setPrice(new BigDecimal("123.00").setScale(2, BigDecimal.ROUND_HALF_UP));
        price.setPeriod(new DayPeriod());
        upa.addPrice(price);

        // create test data

        WorkDay wd1 = new WorkDay();
        wd1.setUser(user);
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.