mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
fix duplicated packing list
This commit is contained in:
+23
-1
@@ -900,4 +900,26 @@ Route::get('/fix-invoices-drop-date/{orderMarking}', function($orderMarking){
|
||||
dump($dilter);
|
||||
$packingLists = (App()->make(ListsPackingLists::class))->execute($dilter);
|
||||
dd($packingLists->first()->containers->first()->transports->first());
|
||||
});
|
||||
});Route::get('/packing-lists/show-duplicated', function(Request $request){
|
||||
$results = PackingList::select('reference', 'type', DB::raw('count(*) as total'))
|
||||
->groupBy('reference', 'type')
|
||||
->having('total', '>', 1)
|
||||
->get()->toArray();
|
||||
|
||||
echo '<table>';
|
||||
echo "<tr>";
|
||||
echo "<td style='border:1px solid'>reference</td>";
|
||||
echo "<td style='border:1px solid'>type</td>";
|
||||
echo "<td style='border:1px solid'>count</td>";
|
||||
echo "</tr>";
|
||||
|
||||
foreach($results as $result) {
|
||||
// dd($result);
|
||||
echo "<tr>";
|
||||
echo "<td style='border:1px solid'>" . $result['reference'] . "</td>";
|
||||
echo "<td style='border:1px solid'>" . $result['type'] . "</td>";
|
||||
echo "<td style='border:1px solid'>" . $result['total'] . "</td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
echo '</table>';
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user