Package com.suarte.core

Examples of com.suarte.core.QuotationStatus


    public QuotationList() {
        setSortColumn("id"); // sets the default sort column
    }

    public String execute() {
        QuotationStatus status = stStatus != null ? QuotationStatus.valueOf(stStatus) : null;
        quotations = sort(quotationManager.findQuotations(id, description, date, company, contact, status));

        return "list";
    }
View Full Code Here


    public void setId(Long id) {
        this.id = id;
    }

    public List getQuotations() {
        QuotationStatus status = stStatus != null ? QuotationStatus.valueOf(stStatus) : null;
        if (contact != null || description != null || id != null || company != null) {
            quotations = sort(quotationManager.findQuotations(id, description, date, company, contact, status));
        }
        if (quotations != null) {
            return sort(quotations);
View Full Code Here

TOP

Related Classes of com.suarte.core.QuotationStatus

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.