at.peppol.webgui.app.components.TabInvoiceDelivery.java Source code

Java tutorial

Introduction

Here is the source code for at.peppol.webgui.app.components.TabInvoiceDelivery.java

Source

/**
 * Version: MPL 1.1/EUPL 1.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at:
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is Copyright The PEPPOL project (http://www.peppol.eu)
 *
 * Alternatively, the contents of this file may be used under the
 * terms of the EUPL, Version 1.1 or - as soon they will be approved
 * by the European Commission - subsequent versions of the EUPL
 * (the "Licence"); You may not use this work except in compliance
 * with the Licence.
 * You may obtain a copy of the Licence at:
 * http://joinup.ec.europa.eu/software/page/eupl/licence-eupl
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and
 * limitations under the Licence.
 *
 * If you wish to allow use of your version of this file only
 * under the terms of the EUPL License and not to allow others to use
 * your version of this file under the MPL, indicate your decision by
 * deleting the provisions above and replace them with the notice and
 * other provisions required by the EUPL License. If you do not delete
 * the provisions above, a recipient may use your version of this file
 * under either the MPL or the EUPL License.
 */
package at.peppol.webgui.app.components;

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.xml.datatype.DatatypeConfigurationException;
import javax.xml.datatype.DatatypeFactory;
import javax.xml.datatype.XMLGregorianCalendar;

import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.AddressType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.DeliveryType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.LocationType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.ActualDeliveryDateType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.IDType;

import com.vaadin.data.Item;
import com.vaadin.data.util.NestedMethodProperty;
import com.vaadin.data.util.ObjectProperty;
import com.vaadin.ui.AbstractTextField;
import com.vaadin.ui.Component;
import com.vaadin.ui.DateField;
import com.vaadin.ui.DefaultFieldFactory;
import com.vaadin.ui.Field;
import com.vaadin.ui.Form;
import com.vaadin.ui.FormFieldFactory;
import com.vaadin.ui.FormLayout;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Panel;
import com.vaadin.ui.PopupDateField;
import com.vaadin.ui.VerticalLayout;

@SuppressWarnings("serial")
public class TabInvoiceDelivery extends Form {
    private InvoiceTabForm parent;

    private List<DeliveryType> deliveryList;
    private DeliveryType deliveryItem;

    private AddressType deliveryAddress;
    private AddressDetailForm deliveryAddressForm;
    private Form idForm;

    public TabInvoiceDelivery(InvoiceTabForm parent) {
        this.parent = parent;
        initElements();
    }

    private void initElements() {
        deliveryList = parent.getInvoice().getDelivery();
        if (deliveryList.size() == 0) {
            deliveryItem = createDeliveryItem();
            deliveryList.add(deliveryItem);
        } else {
            deliveryItem = deliveryList.get(0);
            deliveryAddress = deliveryItem.getDeliveryLocation().getAddress();
            prepareForms();
        }

        final GridLayout grid = new GridLayout(2, 2);
        final VerticalLayout outerLayout = new VerticalLayout();

        final Panel outerPanel = new Panel("Delivery");
        outerPanel.addComponent(grid);
        outerPanel.setScrollable(true);
        outerLayout.addComponent(outerPanel);

        final Panel invoiceDetailsPanel = new Panel("Delivery Details");
        invoiceDetailsPanel.setStyleName("light");
        invoiceDetailsPanel.setSizeFull();
        invoiceDetailsPanel.addComponent(createInvoiceDeliveryTopForm());
        invoiceDetailsPanel.addComponent(deliveryAddressForm);
        grid.addComponent(invoiceDetailsPanel, 0, 0);
        grid.setSizeUndefined();

        setLayout(outerLayout);
        outerPanel.requestRepaintAll();
    }

    private DeliveryType createDeliveryItem() {
        final DeliveryType delivery = new DeliveryType();

        deliveryAddress = new AddressType();
        deliveryAddressForm = new AddressDetailForm("Delivery", deliveryAddress);

        final LocationType location = new LocationType();
        IDType id = new IDType();
        id.setSchemeID("GLN");
        location.setID(id);
        idForm = new Form();
        idForm.setSizeFull();
        idForm.setFormFieldFactory(new InvoiceDeliveryFieldFactory());
        idForm.setImmediate(true);
        idForm.setWriteThrough(true);
        idForm.addItemProperty("Location ID (GLN)", new NestedMethodProperty(id, "value"));
        deliveryAddressForm.addComponent(idForm);

        location.setAddress(deliveryAddress);

        delivery.setDeliveryLocation(location);
        return delivery;
    }

    private void prepareForms() {
        deliveryAddressForm = new AddressDetailForm("Delivery", deliveryAddress);

        IDType id = deliveryItem.getDeliveryLocation().getID();
        idForm = new Form();
        idForm.setSizeFull();
        idForm.setFormFieldFactory(new InvoiceDeliveryFieldFactory());
        idForm.setImmediate(true);
        idForm.setWriteThrough(true);
        idForm.addItemProperty("Location ID (GLN)", new NestedMethodProperty(id, "value"));

        deliveryAddressForm.addComponent(idForm);
    }

    public Form createInvoiceDeliveryTopForm() {
        final Form invoiceDeliveryTopForm = new Form(new FormLayout(), new InvoiceDeliveryFieldFactory());
        invoiceDeliveryTopForm.setImmediate(true);

        final Date actualDeliveryDate = new Date();
        invoiceDeliveryTopForm.addItemProperty("Actual Delivery Date",
                new ObjectProperty<Date>(actualDeliveryDate));

        invoiceDeliveryTopForm.addItemProperty("Delivery Location ID",
                new NestedMethodProperty(deliveryItem.getDeliveryLocation().getID(), "value"));

        // The following replaced by AddressDetailForm
        /*
        invoiceDeliveryTopForm.addItemProperty ("Address Street Name", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "streetName.value") );
        invoiceDeliveryTopForm.addItemProperty ("Address Additional Street Name", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "additionalStreetName.value") );
        invoiceDeliveryTopForm.addItemProperty ("Address Department", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "department.value") );
        invoiceDeliveryTopForm.addItemProperty ("Address Building Number", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "buildingNumber.value") );
        invoiceDeliveryTopForm.addItemProperty ("Address City Name", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "cityName.value") );
        invoiceDeliveryTopForm.addItemProperty ("Address Postal Zone", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "postalZone.value") );
        invoiceDeliveryTopForm.addItemProperty ("Address Country Subentity", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "countrySubentity.value") );
        invoiceDeliveryTopForm.addItemProperty ("Address Country ID", new NestedMethodProperty(deliveryItem.getDeliveryLocation().getAddress (), "country.identificationCode.value") );
        */

        return invoiceDeliveryTopForm;
    }

    class InvoiceDeliveryFieldFactory implements FormFieldFactory {

        public Field createField(final Item item, final Object propertyId, final Component uiContext) {
            // Identify the fields by their Property ID.
            final String pid = (String) propertyId;
            if ("Actual Delivery Date".equals(pid)) {
                final PopupDateField actualDateField = new PopupDateField("Actual Delivery Date");
                actualDateField.setValue(new Date());
                actualDateField.setResolution(DateField.RESOLUTION_DAY);
                actualDateField.addListener(new ValueChangeListener() {

                    @Override
                    public void valueChange(final com.vaadin.data.Property.ValueChangeEvent event) {
                        try {
                            final Date issueDate = (Date) actualDateField.getValue();
                            final GregorianCalendar greg = new GregorianCalendar();
                            greg.setTime(issueDate);

                            // Workaround to print only the date and not the time.
                            final XMLGregorianCalendar XMLDate = DatatypeFactory.newInstance()
                                    .newXMLGregorianCalendar();
                            XMLDate.setYear(greg.get(Calendar.YEAR));
                            XMLDate.setMonth(greg.get(Calendar.MONTH) + 1);
                            XMLDate.setDay(greg.get(Calendar.DATE));

                            parent.getInvoice().getDelivery().add(new DeliveryType());
                            ActualDeliveryDateType sdt = new ActualDeliveryDateType();
                            sdt.setValue(XMLDate);
                            parent.getInvoice().getDelivery().get(0).setActualDeliveryDate(sdt);
                        } catch (final DatatypeConfigurationException ex) {
                            Logger.getLogger(TabInvoiceHeader.class.getName()).log(Level.SEVERE, null, ex);
                        }
                    }
                });

                return actualDateField;
            }
            final Field field = DefaultFieldFactory.get().createField(item, propertyId, uiContext);
            if (field instanceof AbstractTextField) {
                ((AbstractTextField) field).setNullRepresentation("");
            }
            return field;
        }
    }

}