created simplified mining tax invoice

This commit is contained in:
2021-05-25 00:53:24 +09:00
parent 20d1c5f027
commit 678f066a97

View File

@@ -109,7 +109,7 @@ class TestController extends Controller
'type_id' => $row->type_id,
'ore_name' => $row->ore_name,
'quantity' => $row->quantity,
'amount' => $row->amount,
'amount' => (float)$row->amount,
]);
}
}
@@ -142,7 +142,7 @@ class TestController extends Controller
'type_id' => $row->type_id,
'ore_name' => $row->ore_name,
'quantity' => $row->quantity,
'amount' => $row->amount,
'amount' => (float)$row->amount,
]);
}
}