From db9f7aa12f2c80090f265904b0805fd7fcd18ca0 Mon Sep 17 00:00:00 2001 From: Loretta Date: Wed, 27 May 2026 12:30:46 +0200 Subject: [PATCH] Add new DB table constants and domain description Added constants for CustomerCredit, PreOrder, and PreOrderItem DB table names to FruitBankConstClient. Introduced a DomainDescription constant summarizing the plugin's business logic and purpose. No other changes made. --- FruitBank.Common/FruitBankConstClient.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/FruitBank.Common/FruitBankConstClient.cs b/FruitBank.Common/FruitBankConstClient.cs index 17f0c9c8..b6d0ed53 100644 --- a/FruitBank.Common/FruitBankConstClient.cs +++ b/FruitBank.Common/FruitBankConstClient.cs @@ -45,6 +45,10 @@ public static class FruitBankConstClient public const string StockTakingItemDbTableName = "fbStockTakingItem"; public const string StockTakingItemPalletDbTableName = "fbStockTakingItemPallet"; + public const string CustomerCreditDbTableName = "fbCustomerCredit"; + public const string PreOrderDbTableName = "fbPreorder"; + public const string PreOrderItemDbTableName = "fbPreorderItem"; + public const string DomainDescription = "This is a nopCommerce plugin developed for FruitBank, a fruit and vegetable wholesaler. The plugin manages supplier inbound delivery (receiving), warehouse weighing (net/gross/pallet/tare weights), and inventory stocktaking. The business logic is centered around FruitBank's requirement for precise physical measurement and quantity tracking."; //public static Guid[] DevAdminIds = new Guid[2] { Guid.Parse("dcf451d2-cc4c-4ac2-8c1f-da00041be1fd"), Guid.Parse("4cbaed43-2465-4d99-84f1-c8bc6b7025f7") };