mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-30 07:02:20 -08:00
Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
f42eeee666
|
@ -63,15 +63,12 @@ class DepreciationReportTransformer
|
|||
*/
|
||||
if (($asset->model) && ($asset->model->depreciation)) {
|
||||
$depreciated_value = Helper::formatCurrencyOutput($asset->getDepreciatedValue());
|
||||
if($asset->model->eol==0 || $asset->model->eol==null ){
|
||||
$monthly_depreciation = Helper::formatCurrencyOutput($asset->purchase_cost / $asset->model->depreciation->months);
|
||||
}
|
||||
else {
|
||||
$monthly_depreciation = Helper::formatCurrencyOutput(($asset->model->eol > 0 ? ($asset->purchase_cost / $asset->model->eol) : 0));
|
||||
}
|
||||
$monthly_depreciation =Helper::formatCurrencyOutput($asset->purchase_cost / $asset->model->depreciation->months);
|
||||
$diff = Helper::formatCurrencyOutput(($asset->purchase_cost - $asset->getDepreciatedValue()));
|
||||
}
|
||||
|
||||
else if($asset->model->eol !== null) {
|
||||
$monthly_depreciation = Helper::formatCurrencyOutput(($asset->model->eol > 0 ? ($asset->purchase_cost / $asset->model->eol) : 0));
|
||||
}
|
||||
|
||||
if ($asset->assigned) {
|
||||
$checkout_target = $asset->assigned->name;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
return array (
|
||||
'app_version' => 'v7.0.13-pre',
|
||||
'full_app_version' => 'v7.0.13-pre - build 15360-g4ab478bb9',
|
||||
'build_version' => '15360',
|
||||
'app_version' => 'v7.0.13',
|
||||
'full_app_version' => 'v7.0.13 - build 15514-gdc0949da7',
|
||||
'build_version' => '15514',
|
||||
'prerelease_version' => '',
|
||||
'hash_version' => 'g4ab478bb9',
|
||||
'full_hash' => 'v7.0.13-pre-111-g4ab478bb9',
|
||||
'branch' => 'master',
|
||||
'hash_version' => 'gdc0949da7',
|
||||
'full_hash' => 'v7.0.13-265-gdc0949da7',
|
||||
'branch' => 'develop',
|
||||
);
|
Loading…
Reference in a new issue