Sfoglia il codice sorgente

wip: fix DefaultSettingService.php

3.x
wallo 2 anni fa
parent
commit
06dfe6e391
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      app/Services/DefaultSettingService.php

+ 2
- 2
app/Services/DefaultSettingService.php Vedi File

@@ -31,8 +31,8 @@ class DefaultSettingService
31 31
             'purchase_tax_id' => $purchaseTax->id,
32 32
             'sales_discount_id' => $salesDiscount->id,
33 33
             'purchase_discount_id' => $purchaseDiscount->id,
34
-            'created_by' => $company->owner->id,
35
-            'updated_by' => $company->owner->id,
34
+            'created_by' => Auth::id(),
35
+            'updated_by' => Auth::id(),
36 36
         ];
37 37
 
38 38
         DefaultSetting::create($defaultSettings);

Loading…
Annulla
Salva