001// --------------------------------------------------------------------------------
002// Copyright 2002-2024 Echo Three, LLC
003//
004// Licensed under the Apache License, Version 2.0 (the "License");
005// you may not use this file except in compliance with the License.
006// You may obtain a copy of the License at
007//
008//     http://www.apache.org/licenses/LICENSE-2.0
009//
010// Unless required by applicable law or agreed to in writing, software
011// distributed under the License is distributed on an "AS IS" BASIS,
012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013// See the License for the specific language governing permissions and
014// limitations under the License.
015// --------------------------------------------------------------------------------
016
017package com.echothree.model.control.inventory.common.transfer;
018
019import com.echothree.model.control.accounting.common.transfer.GlAccountTransfer;
020import com.echothree.model.control.accounting.common.transfer.ItemAccountingCategoryTransfer;
021import com.echothree.util.common.transfer.BaseTransfer;
022
023public class InventoryConditionGlAccountTransfer
024        extends BaseTransfer {
025    
026    private InventoryConditionTransfer inventoryCondition;
027    private ItemAccountingCategoryTransfer itemAccountingCategory;
028    private GlAccountTransfer inventoryGlAccount;
029    private GlAccountTransfer salesGlAccount;
030    private GlAccountTransfer returnsGlAccount;
031    private GlAccountTransfer cogsGlAccount;
032    private GlAccountTransfer returnsCogsGlAccount;
033    
034    /** Creates a new instance of InventoryConditionGlAccountTransfer */
035    public InventoryConditionGlAccountTransfer(InventoryConditionTransfer inventoryCondition, ItemAccountingCategoryTransfer itemAccountingCategory,
036            GlAccountTransfer inventoryGlAccount, GlAccountTransfer salesGlAccount, GlAccountTransfer returnsGlAccount,
037            GlAccountTransfer cogsGlAccount, GlAccountTransfer returnsCogsGlAccount) {
038        this.inventoryCondition = inventoryCondition;
039        this.itemAccountingCategory = itemAccountingCategory;
040        this.inventoryGlAccount = inventoryGlAccount;
041        this.salesGlAccount = salesGlAccount;
042        this.returnsGlAccount = returnsGlAccount;
043        this.cogsGlAccount = cogsGlAccount;
044        this.returnsCogsGlAccount = returnsCogsGlAccount;
045    }
046    
047    public InventoryConditionTransfer getInventoryCondition() {
048        return inventoryCondition;
049    }
050    
051    public void setInventoryCondition(InventoryConditionTransfer inventoryCondition) {
052        this.inventoryCondition = inventoryCondition;
053    }
054    
055    public ItemAccountingCategoryTransfer getItemAccountingCategory() {
056        return itemAccountingCategory;
057    }
058    
059    public void setItemAccountingCategory(ItemAccountingCategoryTransfer itemAccountingCategory) {
060        this.itemAccountingCategory = itemAccountingCategory;
061    }
062    
063    public GlAccountTransfer getInventoryGlAccount() {
064        return inventoryGlAccount;
065    }
066    
067    public void setInventoryGlAccount(GlAccountTransfer inventoryGlAccount) {
068        this.inventoryGlAccount = inventoryGlAccount;
069    }
070    
071    public GlAccountTransfer getSalesGlAccount() {
072        return salesGlAccount;
073    }
074    
075    public void setSalesGlAccount(GlAccountTransfer salesGlAccount) {
076        this.salesGlAccount = salesGlAccount;
077    }
078    
079    public GlAccountTransfer getReturnsGlAccount() {
080        return returnsGlAccount;
081    }
082    
083    public void setReturnsGlAccount(GlAccountTransfer returnsGlAccount) {
084        this.returnsGlAccount = returnsGlAccount;
085    }
086    
087    public GlAccountTransfer getCogsGlAccount() {
088        return cogsGlAccount;
089    }
090    
091    public void setCogsGlAccount(GlAccountTransfer cogsGlAccount) {
092        this.cogsGlAccount = cogsGlAccount;
093    }
094    
095    public GlAccountTransfer getReturnsCogsGlAccount() {
096        return returnsCogsGlAccount;
097    }
098    
099    public void setReturnsCogsGlAccount(GlAccountTransfer returnsCogsGlAccount) {
100        this.returnsCogsGlAccount = returnsCogsGlAccount;
101    }
102    
103}