/**
* ***************************************************************************
* Copyright (c) 2010 Qcadoo Limited
* Project: Qcadoo MES
* Version: 1.4
*
* 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.catNumbersInDeliveries.columnExtension;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.qcadoo.mes.catNumbersInDeliveries.contants.CatNumbersInDeliveriesConstants;
import com.qcadoo.mes.deliveries.DeliveriesColumnLoaderService;
@Component
public class DeliveriesColumnLoaderCNID {
private static final Logger LOG = LoggerFactory.getLogger(DeliveriesColumnLoaderCNID.class);
@Autowired
private DeliveriesColumnLoaderService deliveriesColumnLoaderService;
public void addColumnsForDeliveriesCNID() {
if (LOG.isDebugEnabled()) {
LOG.debug("Columns for deliveries table will be populated ...");
}
deliveriesColumnLoaderService.fillColumnsForDeliveries(CatNumbersInDeliveriesConstants.PLUGIN_IDENTIFIER);
}
public void deleteColumnsForDeliveriesCNID() {
if (LOG.isDebugEnabled()) {
LOG.debug("Columns for deliveries table will be unpopulated ...");
}
deliveriesColumnLoaderService.clearColumnsForDeliveries(CatNumbersInDeliveriesConstants.PLUGIN_IDENTIFIER);
}
public void addColumnsForOrdersCNID() {
if (LOG.isDebugEnabled()) {
LOG.debug("Columns for orders table will be populated ...");
}
deliveriesColumnLoaderService.fillColumnsForOrders(CatNumbersInDeliveriesConstants.PLUGIN_IDENTIFIER);
}
public void deleteColumnsForOrdersCNID() {
if (LOG.isDebugEnabled()) {
LOG.debug("Columns for deliveries table will be unpopulated ...");
}
deliveriesColumnLoaderService.clearColumnsForOrders(CatNumbersInDeliveriesConstants.PLUGIN_IDENTIFIER);
}
}