com.qcadoo.mes.workPlans.pdf.document.operation.component.OperationOrderHeader.java Source code

Java tutorial

Introduction

Here is the source code for com.qcadoo.mes.workPlans.pdf.document.operation.component.OperationOrderHeader.java

Source

/**
 * ***************************************************************************
 * Copyright (c) 2010 Qcadoo Limited
 * Project: Qcadoo MES
 * Version: 1.3
 *
 * This file is part of Qcadoo.
 *
 * Qcadoo is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published
 * by the Free Software Foundation; either version 3 of the License,
 * or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 * ***************************************************************************
 */
package com.qcadoo.mes.workPlans.pdf.document.operation.component;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.pdf.PdfPTable;
import com.qcadoo.mes.workPlans.constants.TechnologyOperationComponentFieldsWP;
import com.qcadoo.mes.workPlans.pdf.document.operation.grouping.container.GroupingContainer;
import com.qcadoo.model.api.Entity;
import com.qcadoo.report.api.pdf.PdfHelper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.util.Locale;

@Component
public class OperationOrderHeader {

    private PdfHelper pdfHelper;
    private OperationOrderInfoHeader operationOrderInfoHeader;
    private OperationOrderInfoWorkstation operationOrderInfoWorkstation;
    private OperationOrderInfoOperation operationOrderInfoOperation;

    @Autowired
    public OperationOrderHeader(PdfHelper pdfHelper, OperationOrderInfoHeader operationOrderInfoHeader,
            OperationOrderInfoWorkstation operationOrderInfoWorkstation,
            OperationOrderInfoOperation operationOrderInfoOperation) {

        this.pdfHelper = pdfHelper;
        this.operationOrderInfoHeader = operationOrderInfoHeader;
        this.operationOrderInfoWorkstation = operationOrderInfoWorkstation;
        this.operationOrderInfoOperation = operationOrderInfoOperation;
    }

    public void print(Entity order, GroupingContainer groupingContainer, Entity operationComponent,
            Document document, Locale locale) throws DocumentException {
        PdfPTable operationTable = pdfHelper.createPanelTable(3);

        operationOrderInfoOperation.print(operationComponent, operationTable, locale);

        if (groupingContainer.hasManyOrders() && isOrderInfoEnabled(operationComponent)) {
            operationOrderInfoHeader.print(order, operationTable, locale);
        }

        if (isWorkstationInfoEnabled(operationComponent)) {
            operationOrderInfoWorkstation.print(operationComponent, operationTable, locale);
        }

        operationTable.setSpacingAfter(18);
        operationTable.setSpacingBefore(9);
        document.add(operationTable);
    }

    boolean isOrderInfoEnabled(final Entity operationComponent) {
        return !operationComponent
                .getBooleanField(TechnologyOperationComponentFieldsWP.HIDE_TECHNOLOGY_AND_ORDER_IN_WORK_PLANS);
    }

    boolean isWorkstationInfoEnabled(final Entity operationComponent) {
        return !operationComponent.getBooleanField(TechnologyOperationComponentFieldsWP.HIDE_DETAILS_IN_WORK_PLANS);
    }
}