/** * Axelor Business Solutions * * Copyright (C) 2016 Axelor (<http://axelor.com>). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * 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, see <http://www.gnu.org/licenses/>. */ package com.axelor.apps.account.service.invoice.workflow.cancel; import com.axelor.apps.account.db.Invoice; import com.axelor.apps.account.db.Move; import com.axelor.apps.account.db.repo.InvoiceRepository; import com.axelor.apps.account.exception.IExceptionMessage; import com.axelor.apps.account.service.invoice.workflow.WorkflowInvoice; import com.axelor.apps.account.service.move.MoveCancelService; import com.axelor.exception.AxelorException; import com.axelor.exception.db.IException; import com.axelor.i18n.I18n; import com.axelor.inject.Beans; public class CancelState extends WorkflowInvoice { @Override public void init(Invoice invoice){ this.invoice = invoice; } @Override public void process() throws AxelorException { if(invoice.getStatusSelect() == InvoiceRepository.STATUS_VENTILATED && invoice.getCompany().getAccountConfig().getAllowCancelVentilatedInvoice()) { cancelMove(); } setStatus(); } protected void setStatus(){ invoice.setStatusSelect(InvoiceRepository.STATUS_CANCELED); } protected void cancelMove() throws AxelorException{ if(invoice.getOldMove() != null) { throw new AxelorException(I18n.get(IExceptionMessage.INVOICE_CANCEL_1), IException.CONFIGURATION_ERROR); } Move move = invoice.getMove(); invoice.setMove(null); Beans.get(MoveCancelService.class).cancel(move); } }