Package no.ugland.utransprod.service

Examples of no.ugland.utransprod.service.TransportCostManager


        transportCostActionEnum = aTransportCostActionEnum;
        component = comp;
    }

    public final void importOrUpdateTransportPrices(final JLabel label,final WindowInterface window) throws ProTransException {
        TransportCostManager transportCostManager = (TransportCostManager) ModelUtil.getBean("transportCostManager");
        transportCostManager.setLabelInfo(label);
        String excelFileName = Util.getFileName(component,
                new FileExtensionFilter("xls", "Excel"),null);
       
        if (excelFileName != null) {
          transportCostActionEnum.doImport(window,managerRepository.getTransportCostManager(),label,excelFileName);
View Full Code Here


    public Object doWork(Object[] params, JLabel labelInfo) {
      String errorMsg = null;
      try {
        labelInfo.setText("Genererer grunnlag for transportkostnad...");
        TransportCostManager transportCostManager = (TransportCostManager) ModelUtil
            .getBean("transportCostManager");
        List<TransportCostBasis> list = transportCostManager
            .generateTransportCostList(period);
        if (list != null && list.size() != 0) {
          objectList.addAll(0, list);
        }
      } catch (ProTransException e) {
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.service.TransportCostManager

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.