Changed logic for print panel for production order
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 18s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 22s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 15s
Laravel Pint / pint (pull_request) Successful in 7m49s
Laravel Larastan / larastan (pull_request) Failing after 9m22s

This commit is contained in:
dhanabalan
2026-06-06 11:51:25 +05:30
parent dae87a6fba
commit 330edeccaa

View File

@@ -102,13 +102,20 @@ class ProductionOrderController extends Controller
$itemDes = $order->item->description ?? '';
$now = Carbon::now();
$year = $now->format('y');
$month = $now->format('m');
// $month = $now->format('m');
// $month = $now->format('m');
$stickers = [];
for ($i = $fromSerial; $i <= $toSerial; $i++)
{
$currentSerial = (string) $i;
$year = substr($currentSerial, -10, 2);
$month = substr($currentSerial, -8, 2);
$serial = str_pad($i, 6, '0', STR_PAD_LEFT);
$serialCount = substr(str_pad($i, 6, '0', STR_PAD_LEFT), -6);
@@ -130,7 +137,7 @@ class ProductionOrderController extends Controller
}
$pdf = Pdf::loadView('production-orders.printpanel', compact('stickers'))
->setPaper([0, 0, 113.39, 113.39]);
->setPaper([0, 0, 113.39, 113.39]);
return $pdf->stream('stickers.pdf');
}