added warehouse stockin qty

added warehouse stockin qty
pull/10/head
paulcortez 1 year ago
parent fe4abb0936
commit 3048633841

@ -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"));
}

@ -142,10 +142,8 @@
</div>
<div class="box-body">
<ul>
<li>[2024-1-21] Added view of customer purchase history while encoding the sales.</li>
<li>[2022-10-03] Added Item Movement menu so transaction of specific item can be traced.</li>
<li>[2022-08-22] Fixed Sales Maintenance wherein qty changed to zero when updating.</li>
<li>[2022-08-20] Disabled on-wheel change of value on Qty to avoid having 0 quantity.</li>
<li>[2022-08-10] Removed SYSTEM DEVELOPMENT STAGE and transfer to MAIN NAVIGATION menu above.</li>
</ul>
</div><!-- /.box-body -->
</div><!-- /.box -->
@ -223,6 +221,9 @@
</div>
<div class="box-body">
<ul>
<li>[2022-08-22] Fixed Sales Maintenance wherein qty changed to zero when updating.</li>
<li>[2022-08-20] Disabled on-wheel change of value on Qty to avoid having 0 quantity.</li>
<li>[2022-08-10] Removed SYSTEM DEVELOPMENT STAGE and transfer to MAIN NAVIGATION menu above.</li>
<li>[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.</li>
<li>[2019-12-09] Integration of Karat Card.</li>
<li>[2019-11-16] Added beginning inventory basing on yesterday's ending quantity.</li>
@ -362,8 +363,8 @@
' </table>' +
' </div>' +
' </div>' +
' <h3>Quantity Remaining in Warehouse: ' + KWHData + '</h3>' +
' <p></p>' +
' <p>Beginning Quantity in Warehouse: ' + ((Number(KWHData["beginningqty"]) === 0) ? KWHData["inqty"] : KWHData["beginningqty"]) + '</p>' +
' <h3>Quantity Remaining in Warehouse: ' + KWHData["endingqty"] + '</h3>' +
' </div>' +
' </div>';
}

Loading…
Cancel
Save