Home / Scripts & Code / PHP Scripts / Management / Inventory
Advanced Warehouse Management System - AWMSAdvanced Warehouse Management System - AWMS
Streamlined web app for multi-warehouse operations: Inventory, Storage, Stock Control, Transfers, Purchasing, Supplier/Customer Ma Average rating of 5.0 based on 5 votesHome / Scripts & Code / PHP Scripts / Management / Inventory
Advanced Warehouse Management System - AWMS
Streamlined web app for multi-warehouse operations: Inventory, Storage, Stock Control, Transfers,... Average rating of 5.034 Support questions or comments
Please login or create an account to post a question or comment.
-
10 months agohockychen PurchasedHi, I cant seems to add stock after adding a newly created product. I simply cannot allocate a location to put the item into the warehouse location.
Also is there a way to add different number for the same product with the same barcode since my products are products with many variants of colors (often up to 12/24 colors, depending on seasonality) - View 2 more replies
-
10 months agohockychen PurchasedFor the first part I have added what was required, but the prgram simply does not show the volume leading to the value of the volume as 0 making it prompt with required volume and also prompting required shelves is being 0
-
10 months agohockychen PurchasedAdditionally within the add stock part. After I chose the product to the choose product. The product prompt in the add stock is still shown empty. I can only add stock to the existing product since they already have stock that exist
-
10 months agomonsernet AuthorYou mean that when selecting a product from the list, the product name does not appear in the displayed data, this is caused by the select2 dropdown sometimes it does not get the value extracted from ajax call.
To resolve this, just remove the class"select2" from the dropdown list and it will work perfectly.
I will also update this in the next version of the script.
-
10 months agohockychen PurchasedIs there any delete button for product and etc?
-
10 months agomonsernet AuthorThere is the option of deactivating a product. I did not add a DELETE action to the script because I wanted to keep the tracking of the actions made on the product and if deleting products permanently, the tracking records for the deleted products will not be accessible.
-
10 months agohockychen PurchasedSorry how should I install this program into my computer?
-
Jan 23, 2024Hi,
Does this have cycle counts and regular stock takes? -
Jan 23, 2024monsernet AuthorYes, the application provides the inventory turnover and storage period estimates . It is available on the menu "Inventory Control >> Inventory Control".
The application provides also the EOQ (Economic Order Quantity ) to control the product quantities when ordering.
You can check the demo provided on the description.
-
Jan 20, 2024Ari20 PurchasedI didn't find the user permissions table in the database you provided, can you help me??
-
Jan 23, 2024monsernet AuthorI am so sorry for the late reply. Can you please send me, in a private message, the error message occurred . Then I will check and resolve the issue.
-
Nov 25, 2023Hello
1- can I integrate this system with my own dropshipping system ?
2- Can you customize the product as compatible with our system ?
3- Can you contact me via email to discuss developing this ?
my emile : [email protected]
Thanks -
Nov 26, 2023monsernet AuthorGood day;
I sent you an email with all the details.
Regards
-
Sep 24, 2023Nasarog PurchasedHow do you add products to a storage location?
-
Sep 24, 2023monsernet AuthorWhen you get products (after purchase), you have only to choose the location where you want to put , the volume of the product quantity will be automatically calculated then the system automatically check if this volume fits the capacity of the chosen location, If so, it will add it, otherwise, it will show an alert and tell you that the volume of the quantity you want to add is more than the location capacity and gives you a suggested volume to add. The rest of the volume you can add it to other location(s).
-
Sep 21, 2023Nasarog PurchasedWhy is there only one option for “Inventory Management Techniques” and “Pick and Pack Methods” The other options are not clickable.
-
Sep 22, 2023monsernet AuthorHello Ramon,
The other options are not managed in the script. They are listed to inform the user of the script there there are other types of inventory management techniques and pick & pack methods. Each option require a lot of source code to add to the existing code . If we add the other techniques, the script will be much more expensive and I wanted to provide a script that everyone can buy.
-
Sep 12, 2023mikael00 Purchasederror in purchase/lpo
An uncaught Exception was encountered
Type: TypeError
Message: number_format(): Argument #1 ($num) must be of type float, string given
Filename: C:xampphtdocsawmsapplicationmodelsGlobal_model.php
Line Number: 58
Backtrace:
File: C:xampphtdocsawmsapplicationmodelsGlobal_model.php
Line: 58
Function: number_format
File: C:xampphtdocsawmsapplicationmodelsOrder_model.php
Line: 48
Function: setNumberFormat
File: C:xampphtdocsawmsapplicationviewspurchaseslpo.php
Line: 107
Function: displayOrderDetails
File: C:xampphtdocsawmsapplicationcontrollersOrder.php
Line: 40
Function: view
File: C:xampphtdocsawmsindex.php
Line: 315
Function: require_once - View 1 more reply
-
Sep 12, 2023monsernet AuthorYou can change the function setNumberFormat($number) to check if the passed argument is a float number :
public function setNumberFormat($number){
$result ="";
$decimals = 0;
$strdecimals = $this->getItem('settings', 'warehouseId', $this->session->userdata('warehouseid', 'decimalDigits';
if($strdecimals=='' {$decimals = 0;} else {$decimals = $strdecimals;}
$useSeperator = $this->getItem('settings', 'warehouseId', $this->session->userdata('warehouseid', 'useThSep';
$seperator = $this->getItem('settings', 'warehouseId', $this->session->userdata('warehouseid', 'thSepChar';
if ($useSeperator==1) {
if($seperator == 1){
$number = floatval($number); // Convert $number to float
$result = number_format($number, $decimals, '.', ' ';
} elseif($seperator == 2){
$number = floatval($number); // Convert $number to float
$result = number_format($number, $decimals, '.', ',';
} else{
$number = floatval($number); // Convert $number to float
$result = number_format($number, $decimals, '.', '';
}
} else {
$number = floatval($number); // Convert $number to float
$result = number_format($number, $decimals, '.', '';
}
return $result;
}
-
Sep 19, 2023solved already
$result should declare as int
change variable $result = 0 -
Sep 19, 2023monsernet Authorhappy to hear that the problem is resolved.
to be more occurred, the result should be of double type not int . Otherwise, the decimal digits will not be considered.
So the appropriate solution is to check that the passed argument is a float/ double number and not null.
Regards
-
Aug 19, 2023Nasarog PurchasedHello, I uploaded the files to my server.. I’m getting 404 error messages for all of the “Return Management” submenu pages. Can you help?
- View 1 more reply
-
Aug 19, 2023Nasarog PurchasedThe “Return Management” submenu pages does not work in the demo of this script and it does not work in the actual script. Please fix
-
Aug 20, 2023Nasarog PurchasedHow about you give me the code that’s supposed to be in those areas and I’ll fix it myself.
-
Aug 20, 2023monsernet AuthorSure, please give me some time. I will update the code and share it.
Regards,
Information
Category | Scripts & Code / PHP Scripts / Management / Inventory |
First release | 24 November 2022 |
Last update | 10 May 2024 |
HTML/CSS Framework | Bootstrap, Less |
Software version | PHP 7.2, PHP 7.3, PHP 7.4, PHP 8.0, PHP 8.1 |
Files included | .php, .css, .html, .sql, .xml, Javascript .js |
Tags | multi language, php script, codeigniter, inventory, rtl, web application, warehouse, Inventory Management, warehouse management, multi warehouse, barcoding |