Package no.ugland.utransprod.model

Examples of no.ugland.utransprod.model.Contact


  }

  private Order createOrder(final ImportOrderV importOrderV) {
    Order incomingOrder = new Order();
    incomingOrder.setOrderNr(importOrderV.getNumber1());
    Contact contact = getContact(importOrderV);
    incomingOrder.setCustomer(getCustomer(contact));

    setOrderDate(importOrderV, incomingOrder);
    incomingOrder.setAgreementDate(Util.getCurrentDate());
View Full Code Here


    return incomingOrder;
  }

  private Contact getContact(final ImportOrderV importOrderV) {
    Contact contact = null;
    if (importOrderV.getContactId() != null) {
      contact = contactDao.getObject(importOrderV.getContactId());
      lazyLoadContact(contact);
    }
    return contact;
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.model.Contact

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.