diff --git a/application/controllers/Pages.php b/application/controllers/Pages.php
index dbf770f..2e9b0c4 100644
--- a/application/controllers/Pages.php
+++ b/application/controllers/Pages.php
@@ -1355,7 +1355,7 @@ class Pages extends CI_controller
}
if($result->num_rows() > 0)
- echo json_encode(array("success"=>true, "data" => $row, "htmlTable" => $htmlTable, "KWHData" => $kwhRow->endingqty));
+ echo json_encode(array("success"=>true, "data" => $row, "htmlTable" => $htmlTable, "KWHData" => $kwhRow));
else
echo json_encode(array("success"=>false, "data" => "No Record"));
}
diff --git a/application/views/pages/dashboard.php b/application/views/pages/dashboard.php
index 06ee49b..a55dfb0 100644
--- a/application/views/pages/dashboard.php
+++ b/application/views/pages/dashboard.php
@@ -142,10 +142,8 @@
+ - [2024-1-21] Added view of customer purchase history while encoding the sales.
- [2022-10-03] Added Item Movement menu so transaction of specific item can be traced.
- - [2022-08-22] Fixed Sales Maintenance wherein qty changed to zero when updating.
- - [2022-08-20] Disabled on-wheel change of value on Qty to avoid having 0 quantity.
- - [2022-08-10] Removed SYSTEM DEVELOPMENT STAGE and transfer to MAIN NAVIGATION menu above.
@@ -223,6 +221,9 @@
+ - [2022-08-22] Fixed Sales Maintenance wherein qty changed to zero when updating.
+ - [2022-08-20] Disabled on-wheel change of value on Qty to avoid having 0 quantity.
+ - [2022-08-10] Removed SYSTEM DEVELOPMENT STAGE and transfer to MAIN NAVIGATION menu above.
- [2020-06-26] Store transaction is now editable under Maintenance Menu. You can change declared cash, dollar, check, credit cards, remarks and name of encoder.
- [2019-12-09] Integration of Karat Card.
- [2019-11-16] Added beginning inventory basing on yesterday's ending quantity.
@@ -362,8 +363,8 @@
' ' +
'
' +
' ' +
- ' Quantity Remaining in Warehouse: ' + KWHData + '
' +
- ' ' +
+ ' Beginning Quantity in Warehouse: ' + ((Number(KWHData["beginningqty"]) === 0) ? KWHData["inqty"] : KWHData["beginningqty"]) + '
' +
+ ' Quantity Remaining in Warehouse: ' + KWHData["endingqty"] + '
' +
' ' +
' ';
}