2017-06-12 17:39:03 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use App\Models\Asset;
|
2017-08-31 11:14:21 -07:00
|
|
|
use App\Models\AssetModel;
|
|
|
|
use App\Models\Category;
|
2017-06-12 17:39:03 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Model Factories
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Factories related exclusively to modelling assets.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
$factory->define(Asset::class, function (Faker\Generator $faker) {
|
|
|
|
return [
|
|
|
|
'name' => $faker->catchPhrase,
|
|
|
|
'model_id' => function () {
|
|
|
|
return factory(App\Models\AssetModel::class)->create()->id;
|
|
|
|
},
|
|
|
|
'rtd_location_id' => function () {
|
|
|
|
return factory(App\Models\Location::class)->create()->id;
|
|
|
|
},
|
|
|
|
'serial' => $faker->uuid,
|
|
|
|
'status_id' => function () {
|
|
|
|
return factory(App\Models\Statuslabel::class)->states('rtd')->create()->id;
|
|
|
|
},
|
|
|
|
'user_id' => function () {
|
|
|
|
return factory(App\Models\User::class)->create()->id;
|
|
|
|
},
|
|
|
|
'asset_tag' => $faker->unixTime('now'),
|
|
|
|
'notes' => $faker->sentence,
|
|
|
|
'purchase_date' => $faker->dateTime(),
|
|
|
|
'purchase_cost' => $faker->randomFloat(2),
|
|
|
|
'order_number' => $faker->numberBetween(1000000, 50000000),
|
|
|
|
'supplier_id' => function () {
|
|
|
|
return factory(App\Models\Supplier::class)->create()->id;
|
|
|
|
},
|
|
|
|
'company_id' => function () {
|
|
|
|
return factory(App\Models\Company::class)->create()->id;
|
|
|
|
},
|
|
|
|
'requestable' => $faker->boolean()
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$factory->state(Asset::class, 'deleted', function ($faker) {
|
|
|
|
return [
|
|
|
|
'deleted_at' => $faker->dateTime(),
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$factory->state(Asset::class, 'assigned-to-user', function ($faker) {
|
|
|
|
return [
|
|
|
|
'assigned_to' => factory(App\Models\User::class)->create()->id,
|
|
|
|
'assigned_type' => App\Models\User::class,
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$factory->state(Asset::class, 'assigned-to-location', function ($faker) {
|
|
|
|
return [
|
|
|
|
'assigned_to' => factory(App\Models\Location::class)->create()->id,
|
|
|
|
'assigned_type' => App\Models\Location::class,
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$factory->state(Asset::class, 'assigned-to-asset', function ($faker) {
|
|
|
|
return [
|
|
|
|
'assigned_to' => factory(App\Models\Asset::class)->create()->id,
|
|
|
|
'assigned_type' => App\Models\Asset::class,
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2017-08-31 11:14:21 -07:00
|
|
|
$factory->state(Asset::class, 'requires-acceptance', function ($faker) {
|
|
|
|
$cat = factory(Category::class)->states('asset-category', 'requires-acceptance')->create();
|
|
|
|
$model = factory(AssetModel::class)->create(['category_id' => $cat->id]);
|
|
|
|
return [
|
|
|
|
'model_id' => $model->id
|
|
|
|
];
|
|
|
|
});
|
2017-06-12 17:39:03 -07:00
|
|
|
|
|
|
|
$factory->define(App\Models\AssetModel::class, function (Faker\Generator $faker) {
|
|
|
|
return [
|
|
|
|
'name' => $faker->catchPhrase,
|
|
|
|
'manufacturer_id' => function () {
|
|
|
|
return factory(App\Models\Manufacturer::class)->create()->id;
|
|
|
|
},
|
|
|
|
'category_id' => function () {
|
|
|
|
return factory(App\Models\Category::class)->states('asset-category')->create()->id;
|
|
|
|
},
|
|
|
|
'model_number' => $faker->numberBetween(1000000, 50000000),
|
|
|
|
'eol' => 1,
|
|
|
|
'notes' => $faker->paragraph(),
|
|
|
|
'requestable' => $faker->boolean(),
|
|
|
|
'depreciation_id' => function () {
|
|
|
|
return factory(App\Models\Depreciation::class)->create()->id;
|
|
|
|
},
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$factory->define(App\Models\AssetMaintenance::class, function (Faker\Generator $faker) {
|
|
|
|
return [
|
|
|
|
'asset_id' => function () {
|
|
|
|
return factory(App\Models\Asset::class)->create()->id;
|
|
|
|
},
|
|
|
|
'supplier_id' => function () {
|
|
|
|
return factory(App\Models\Supplier::class)->create()->id;
|
|
|
|
},
|
|
|
|
'asset_maintenance_type' => $faker->randomElement(['maintenance', 'repair', 'upgrade']),
|
|
|
|
'title' => $faker->sentence,
|
|
|
|
'start_date' => $faker->date(),
|
|
|
|
'is_warranty' => $faker->boolean(),
|
|
|
|
'notes' => $faker->paragraph(),
|
|
|
|
];
|
|
|
|
});
|