001// -------------------------------------------------------------------------------- 002// Copyright 2002-2026 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.control.user.inventory.server.command; 018 019import com.echothree.control.user.inventory.common.form.GetInventoryDispositionDescriptionForm; 020import com.echothree.control.user.inventory.common.result.InventoryResultFactory; 021import com.echothree.model.control.inventory.server.control.InventoryDispositionControl; 022import com.echothree.model.control.inventory.server.logic.InventoryDispositionLogic; 023import com.echothree.model.control.inventory.server.logic.InventoryTransactionTypeLogic; 024import com.echothree.model.control.party.common.PartyTypes; 025import com.echothree.model.control.party.server.logic.LanguageLogic; 026import com.echothree.model.control.security.common.SecurityRoleGroups; 027import com.echothree.model.control.security.common.SecurityRoles; 028import com.echothree.model.data.inventory.server.entity.InventoryDispositionDescription; 029import com.echothree.util.common.command.BaseResult; 030import com.echothree.util.common.message.ExecutionErrors; 031import com.echothree.util.common.validation.FieldDefinition; 032import com.echothree.util.common.validation.FieldType; 033import com.echothree.util.server.control.BaseSingleEntityCommand; 034import com.echothree.util.server.control.CommandSecurityDefinition; 035import com.echothree.util.server.control.PartyTypeDefinition; 036import com.echothree.util.server.control.SecurityRoleDefinition; 037import java.util.List; 038import javax.enterprise.context.Dependent; 039import javax.inject.Inject; 040 041@Dependent 042public class GetInventoryDispositionDescriptionCommand 043 extends BaseSingleEntityCommand<InventoryDispositionDescription, GetInventoryDispositionDescriptionForm> { 044 045 private final static CommandSecurityDefinition COMMAND_SECURITY_DEFINITION; 046 private final static List<FieldDefinition> FORM_FIELD_DEFINITIONS; 047 048 static { 049 COMMAND_SECURITY_DEFINITION = new CommandSecurityDefinition(List.of( 050 new PartyTypeDefinition(PartyTypes.UTILITY.name(), null), 051 new PartyTypeDefinition(PartyTypes.EMPLOYEE.name(), List.of( 052 new SecurityRoleDefinition(SecurityRoleGroups.InventoryDisposition.name(), SecurityRoles.Description.name()) 053 )) 054 )); 055 056 FORM_FIELD_DEFINITIONS = List.of( 057 new FieldDefinition("InventoryTransactionTypeName", FieldType.ENTITY_NAME, true, null, null), 058 new FieldDefinition("InventoryDispositionName", FieldType.ENTITY_NAME, true, null, null), 059 new FieldDefinition("LanguageIsoName", FieldType.ENTITY_NAME, true, null, null) 060 ); 061 } 062 063 @Inject 064 InventoryDispositionControl inventoryDispositionControl; 065 066 @Inject 067 InventoryDispositionLogic inventoryDispositionLogic; 068 069 @Inject 070 InventoryTransactionTypeLogic inventoryTransactionTypeLogic; 071 072 @Inject 073 LanguageLogic languageLogic; 074 075 /** Creates a new instance of GetInventoryDispositionDescriptionCommand */ 076 public GetInventoryDispositionDescriptionCommand() { 077 super(COMMAND_SECURITY_DEFINITION, FORM_FIELD_DEFINITIONS, true); 078 } 079 080 @Override 081 protected InventoryDispositionDescription getEntity() { 082 InventoryDispositionDescription inventoryDispositionDescription = null; 083 var inventoryTransactionTypeName = form.getInventoryTransactionTypeName(); 084 var inventoryTransactionType = inventoryTransactionTypeLogic.getInventoryTransactionTypeByName(this, inventoryTransactionTypeName); 085 086 if(!hasExecutionErrors()) { 087 var inventoryDispositionName = form.getInventoryDispositionName(); 088 var inventoryDisposition = inventoryDispositionLogic.getInventoryDispositionByName(this, 089 inventoryTransactionType, inventoryDispositionName); 090 091 if(!hasExecutionErrors()) { 092 var languageIsoName = form.getLanguageIsoName(); 093 var language = languageLogic.getLanguageByName(this, languageIsoName); 094 095 if(!hasExecutionErrors()) { 096 inventoryDispositionDescription = inventoryDispositionControl.getInventoryDispositionDescription( 097 inventoryDisposition, language); 098 099 if(inventoryDispositionDescription == null) { 100 addExecutionError(ExecutionErrors.UnknownInventoryDispositionDescription.name(), inventoryTransactionTypeName, 101 inventoryDispositionName, languageIsoName); 102 } 103 } 104 } 105 } 106 107 return inventoryDispositionDescription; 108 } 109 110 @Override 111 protected BaseResult getResult(InventoryDispositionDescription inventoryDispositionDescription) { 112 var result = InventoryResultFactory.getGetInventoryDispositionDescriptionResult(); 113 114 if(inventoryDispositionDescription != null) { 115 result.setInventoryDispositionDescription( 116 inventoryDispositionControl.getInventoryDispositionDescriptionTransfer(getUserVisit(), 117 inventoryDispositionDescription)); 118 } 119 120 return result; 121 } 122 123}