mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Double check on integers for https://github.com/firefly-iii/firefly-iii/issues/3554
This commit is contained in:
		| @@ -84,10 +84,10 @@ class BillTransformer extends AbstractTransformer | ||||
|             'id'                      => (int)$bill->id, | ||||
|             'created_at'              => $bill->created_at->toAtomString(), | ||||
|             'updated_at'              => $bill->updated_at->toAtomString(), | ||||
|             'currency_id'             => $bill->transaction_currency_id, | ||||
|             'currency_id'             => (int) $bill->transaction_currency_id, | ||||
|             'currency_code'           => $currency->code, | ||||
|             'currency_symbol'         => $currency->symbol, | ||||
|             'currency_decimal_places' => $currency->decimal_places, | ||||
|             'currency_decimal_places' => (int) $currency->decimal_places, | ||||
|             'name'                    => $bill->name, | ||||
|             'amount_min'              => number_format((float) $bill->amount_min, $currency->decimal_places, '.', ''), | ||||
|             'amount_max'              => number_format((float) $bill->amount_max, $currency->decimal_places, '.', ''), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user