diff --git a/Admin/Install/db.json b/Admin/Install/db.json index 7db50a8..16a780f 100755 --- a/Admin/Install/db.json +++ b/Admin/Install/db.json @@ -140,7 +140,7 @@ "null": false }, "warehousemgmt_stocklocation_z": { - "description": "Height", + "comment": "Height", "name": "warehousemgmt_stocklocation_z", "type": "INT", "null": false @@ -188,7 +188,7 @@ "null": false }, "warehousemgmt_stockshelf_z": { - "description": "Height", + "comment": "Height", "name": "warehousemgmt_stockshelf_z", "type": "INT", "null": false @@ -214,7 +214,7 @@ "foreignKey": "itemmgmt_item_id" }, "warehousemgmt_lot_purchase_price": { - "description": "only used if custom value, otherwise transaction protocol more accurate because of mixed prices and then lifo/fifo etc. depending on internal guidelines", + "comment": "only used if custom value, otherwise transaction protocol more accurate because of mixed prices and then lifo/fifo etc. depending on internal guidelines", "name": "warehousemgmt_lot_purchase_price", "type": "BIGINT", "null": false @@ -298,13 +298,13 @@ "null": false }, "warehousemgmt_attr_type_required": { - "description": "Every item must have this attribute type if set to true.", + "comment": "Every item must have this attribute type if set to true.", "name": "warehousemgmt_attr_type_required", "type": "TINYINT(1)", "null": false }, "warehousemgmt_attr_type_pattern": { - "description": "This is a regex validation pattern.", + "comment": "This is a regex validation pattern.", "name": "warehousemgmt_attr_type_pattern", "type": "VARCHAR(255)", "null": false @@ -634,7 +634,7 @@ "autoincrement": true }, "warehousemgmt_stock_transaction_state": { - "description": "Is draft (= reserved = bill currently in draft) or finalized", + "comment": "Is draft (= reserved = bill currently in draft) or finalized", "name": "warehousemgmt_stock_transaction_state", "type": "TINYINT", "null": false @@ -705,7 +705,7 @@ "foreignKey": "warehousemgmt_stock_type_id" }, "warehousemgmt_stock_transaction_bill_element": { - "description": "indirectly contains createdat/by in the bill as well as supplier/customer", + "comment": "indirectly contains createdat/by in the bill as well as supplier/customer", "name": "warehousemgmt_stock_transaction_bill_element", "type": "INT", "null": false, diff --git a/Docs/Dev/en/structure.md b/Docs/Dev/en/structure.md deleted file mode 100755 index 3eccaba..0000000 --- a/Docs/Dev/en/structure.md +++ /dev/null @@ -1,5 +0,0 @@ -# Structure - -## ER - -![ER](Modules/WarehouseManagement/Docs/Dev/img/er.png) \ No newline at end of file diff --git a/Docs/Dev/img/er.png b/Docs/Dev/img/er.png deleted file mode 100644 index 9763a64..0000000 Binary files a/Docs/Dev/img/er.png and /dev/null differ diff --git a/Models/StockLocation.php b/Models/StockLocation.php index 1a337bd..e8c9a9d 100755 --- a/Models/StockLocation.php +++ b/Models/StockLocation.php @@ -55,7 +55,7 @@ class StockLocation */ public function __construct(string $name = '') { - $this->name = $name; + $this->name = $name; $this->stock = new NullStock(); } } diff --git a/Theme/Backend/Lang/de.lang.php b/Theme/Backend/Lang/de.lang.php index b3a53fd..8c67ad6 100755 --- a/Theme/Backend/Lang/de.lang.php +++ b/Theme/Backend/Lang/de.lang.php @@ -22,5 +22,5 @@ return ['WarehouseManagement' => [ 'Type' => 'Typ', 'Location' => 'Lagerplatz', 'Quantity' => 'Menge', - 'All' => 'Alle', + 'All' => 'Alle', ]]; diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index c5e22c1..cf19465 100755 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -22,5 +22,5 @@ return ['WarehouseManagement' => [ 'Type' => 'Type', 'Location' => 'Location', 'Quantity' => 'Quantity', - 'All' => 'All', + 'All' => 'All', ]]; diff --git a/info.json b/info.json index 7360876..a7f184d 100755 --- a/info.json +++ b/info.json @@ -2,7 +2,7 @@ "name": { "id": 1001300000, "internal": "WarehouseManagement", - "external": "Warehousing" + "external": "Warehouse Management" }, "category": "Logistics", "version": "1.0.0", @@ -12,9 +12,9 @@ }, "creator": { "name": "Jingga", - "website": "jingga.app" + "website": "https://jingga.app" }, - "description": "Warehousing module.", + "description": "Warehouse Management module.", "directory": "WarehouseManagement", "dependencies": { "Admin": "1.0.0",