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.control.user.vendor.common.edit; 018 019import com.echothree.control.user.party.common.edit.PartyEdit; 020import com.echothree.control.user.party.common.edit.PartyGroupEdit; 021import com.echothree.control.user.vendor.common.spec.VendorSpec; 022import com.echothree.control.user.vendor.common.spec.VendorTypeSpec; 023 024public interface VendorEdit 025 extends VendorSpec, VendorTypeSpec, PartyEdit, PartyGroupEdit { 026 027 String getMinimumPurchaseOrderLines(); 028 void setMinimumPurchaseOrderLines(String minimumPurchaseOrderLines); 029 030 String getMaximumPurchaseOrderLines(); 031 void setMaximumPurchaseOrderLines(String maximumPurchaseOrderLines); 032 033 String getMinimumPurchaseOrderAmount(); 034 void setMinimumPurchaseOrderAmount(String minimumPurchaseOrderAmount); 035 036 String getMaximumPurchaseOrderAmount(); 037 void setMaximumPurchaseOrderAmount(String maximumPurchaseOrderAmount); 038 039 String getUseItemPurchasingCategories(); 040 void setUseItemPurchasingCategories(String useItemPurchasingCategories); 041 042 String getDefaultItemAliasTypeName(); 043 void setDefaultItemAliasTypeName(String defaultItemAliasTypeName); 044 045 String getCancellationPolicyName(); 046 void setCancellationPolicyName(String cancellationPolicyName); 047 048 String getReturnPolicyName(); 049 void setReturnPolicyName(String returnPolicyName); 050 051 String getApGlAccountName(); 052 void setApGlAccountName(String apGlAccountName); 053 054 String getHoldUntilComplete(); 055 void setHoldUntilComplete(String holdUntilComplete); 056 057 String getAllowBackorders(); 058 void setAllowBackorders(String allowBackorders); 059 060 String getAllowSubstitutions(); 061 void setAllowSubstitutions(String allowSubstitutions); 062 063 String getAllowCombiningShipments(); 064 void setAllowCombiningShipments(String allowCombiningShipments); 065 066 String getRequireReference(); 067 void setRequireReference(String requireReference); 068 069 String getAllowReferenceDuplicates(); 070 void setAllowReferenceDuplicates(String allowReferenceDuplicates); 071 072 String getReferenceValidationPattern(); 073 void setReferenceValidationPattern(String referenceValidationPattern); 074 075}