mirror of
https://github.com/crater-invoice/crater.git
synced 2025-12-15 18:02:55 -05:00
build version 400
This commit is contained in:
@@ -1,34 +1,52 @@
|
||||
<?php
|
||||
|
||||
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
||||
namespace Database\Factories;
|
||||
|
||||
use Crater\InvoiceItem;
|
||||
use Crater\Item;
|
||||
use Faker\Generator as Faker;
|
||||
use Crater\User;
|
||||
use Crater\Models\InvoiceItem;
|
||||
use Crater\Models\Item;
|
||||
use Crater\Models\User;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
$factory->define(InvoiceItem::class, function (Faker $faker) {
|
||||
return [
|
||||
'item_id' => function () {
|
||||
return factory(Item::class)->create()->id;
|
||||
},
|
||||
'name' => function (array $item) {
|
||||
return Item::find($item['item_id'])->name;
|
||||
},
|
||||
'description' => function (array $item) {
|
||||
return Item::find($item['item_id'])->description;
|
||||
},
|
||||
'price' => function (array $item) {
|
||||
return Item::find($item['item_id'])->price;
|
||||
},
|
||||
'company_id' => User::find(1)->company_id,
|
||||
'quantity' => $faker->randomDigitNotNull,
|
||||
'discount_type' => 'fixed',
|
||||
'discount_val' => 0,
|
||||
'tax' => $faker->randomDigitNotNull,
|
||||
'total' => function (array $item) {
|
||||
return ($item['price'] * $item['quantity']);
|
||||
},
|
||||
'discount' => 0
|
||||
];
|
||||
});
|
||||
class InvoiceItemFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = InvoiceItem::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'item_id' => Item::factory(),
|
||||
'name' => function (array $item) {
|
||||
return Item::find($item['item_id'])->name;
|
||||
},
|
||||
'description' => function (array $item) {
|
||||
return Item::find($item['item_id'])->description;
|
||||
},
|
||||
'price' => function (array $item) {
|
||||
return Item::find($item['item_id'])->price;
|
||||
},
|
||||
'company_id' => User::where('role', 'super admin')->first()->company_id,
|
||||
'quantity' => $this->faker->randomDigitNotNull,
|
||||
'total' => function (array $item) {
|
||||
return ($item['price'] * $item['quantity']);
|
||||
},
|
||||
'discount_type' => $this->faker->randomElement(['percentage', 'fixed']),
|
||||
'discount_val' => function (array $invoice) {
|
||||
return $invoice['discount_type'] == 'percentage' ? $this->faker->numberBetween($min = 0, $max = 100) : $this->faker->randomDigitNotNull;
|
||||
},
|
||||
'discount' => function (array $invoice) {
|
||||
return $invoice['discount_type'] == 'percentage' ? (($invoice['discount_val'] * $invoice['total']) / 100) : $invoice['discount_val'];
|
||||
},
|
||||
'tax' => $this->faker->randomDigitNotNull,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user