mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
Merge branch 'hotfixes/p-typo' into develop
This commit is contained in:
commit
48b52a0ccc
|
@ -92,7 +92,7 @@ class AccessoriesController extends Controller
|
||||||
if (e(Input::get('purchase_cost')) == '0.00') {
|
if (e(Input::get('purchase_cost')) == '0.00') {
|
||||||
$accessory->purchase_cost = null;
|
$accessory->purchase_cost = null;
|
||||||
} else {
|
} else {
|
||||||
$accessory->purchase_cost = Helper::ParseFloat(e(Input::get('purchase_cost')))p;
|
$accessory->purchase_cost = Helper::ParseFloat(e(Input::get('purchase_cost')));
|
||||||
}
|
}
|
||||||
|
|
||||||
$accessory->qty = e(Input::get('qty'));
|
$accessory->qty = e(Input::get('qty'));
|
||||||
|
|
Loading…
Reference in a new issue