Merge pull request 'Changed running digits of panel box is 6 digits' (#570) from ranjith-dev into master
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

Reviewed-on: #570
This commit was merged in pull request #570.
This commit is contained in:
2026-05-07 05:53:52 +00:00

View File

@@ -88,7 +88,7 @@ class ProductionOrderController extends Controller
{
$serial = str_pad($i, 6, '0', STR_PAD_LEFT);
$serialCount = substr(str_pad($i, 6, '0', STR_PAD_LEFT), -5);
$serialCount = substr(str_pad($i, 6, '0', STR_PAD_LEFT), -6);
$qrData = $plantCode . '/' . $itemCode . '/' . $year.$month . '/' . $serialCount;