mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
large commit
This commit is contained in:
@@ -19,7 +19,7 @@ class Company extends JsonResource
|
||||
*/
|
||||
public function toArray($request)
|
||||
{
|
||||
$billing = $this->addressBook()->where('reference_id', $this->id)->where('type', 0)
|
||||
$billing = $this->addressBook()->where('reference_id', $this->id)->where('type', 1)
|
||||
->where('billing', true)->first();
|
||||
$reports = \App\Models\Order::select(DB::raw('count(*) total'), DB::raw('SUM(CASE WHEN complete = 0 THEN 0 ELSE 1 END) active'))->where('company_id', $this->id)->first();
|
||||
return [
|
||||
|
||||
@@ -13,7 +13,7 @@ class Company extends AbstractModel
|
||||
|
||||
public function addressBook()
|
||||
{
|
||||
return $this->hasMany('App\Models\AddressBook', 'reference_id', 'id')->where('type', '=', 0);
|
||||
return $this->hasMany('App\Models\AddressBook', 'reference_id', 'id')->where('type', '=', 1);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -13,16 +13,5 @@ class DatabaseSeeder extends Seeder
|
||||
$this->call(CompaniesTableSeeder::class);
|
||||
$this->call(ContactsTableSeeder::class);
|
||||
$this->call(WarehousesTableSeeder::class);
|
||||
if(app()->environment() !== "production"){
|
||||
|
||||
// $this->call(AddressBookTableSeeder::class);
|
||||
|
||||
// $this->call(OrdersTableSeeder::class);
|
||||
// $this->call(PackingListsTableSeeder::class);
|
||||
// $this->call(PackagesTableSeeder::class);
|
||||
}
|
||||
|
||||
// $this->call(PrimaryStepsTableSeeder::class);
|
||||
// $this->call(ModularStepsTableSeeder::class);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user