mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 05:31:10 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Crater\Traits;
 | |
| 
 | |
| use Crater\Models\CustomField;
 | |
| 
 | |
| trait HasCustomFieldsTrait
 | |
| {
 | |
|     public function fields()
 | |
|     {
 | |
|         return $this->morphMany('Crater\Models\CustomFieldValue', 'custom_field_valuable');
 | |
|     }
 | |
| 
 | |
|     protected static function booted()
 | |
|     {
 | |
|         static::deleting(function ($data) {
 | |
|             if ($data->fields()->exists()) {
 | |
|                 $data->fields()->delete();
 | |
|             }
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     public function addCustomFields($customFields)
 | |
|     {
 | |
|         foreach ($customFields as $field) {
 | |
|             if (! is_array($field)) {
 | |
|                 $field = (array)$field;
 | |
|             }
 | |
|             $customField = CustomField::find($field['id']);
 | |
| 
 | |
|             $customFieldValue = [
 | |
|                 'type' => $customField->type,
 | |
|                 'custom_field_id' => $customField->id,
 | |
|                 'company_id' => $customField->company_id,
 | |
|                 getCustomFieldValueKey($customField->type) => $field['value'],
 | |
|             ];
 | |
| 
 | |
|             $this->fields()->create($customFieldValue);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function updateCustomFields($customFields)
 | |
|     {
 | |
|         foreach ($customFields as $field) {
 | |
|             if (! is_array($field)) {
 | |
|                 $field = (array)$field;
 | |
|             }
 | |
| 
 | |
|             $customField = CustomField::find($field['id']);
 | |
|             $customFieldValue = $this->fields()->firstOrCreate([
 | |
|                 'custom_field_id' => $customField->id,
 | |
|                 'type' => $customField->type,
 | |
|                 'company_id' => $this->company_id,
 | |
|             ]);
 | |
| 
 | |
|             $type = getCustomFieldValueKey($customField->type);
 | |
|             $customFieldValue->$type = $field['value'];
 | |
|             $customFieldValue->save();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function getCustomFieldBySlug($slug)
 | |
|     {
 | |
|         return $this->fields()
 | |
|             ->with('customField')
 | |
|             ->whereHas('customField', function ($query) use ($slug) {
 | |
|                 $query->where('slug', $slug);
 | |
|             })->first();
 | |
|     }
 | |
| 
 | |
|     public function getCustomFieldValueBySlug($slug)
 | |
|     {
 | |
|         $value = $this->getCustomFieldBySlug($slug);
 | |
| 
 | |
|         if ($value) {
 | |
|             return $value->defaultAnswer;
 | |
|         }
 | |
| 
 | |
|         return null;
 | |
|     }
 | |
| }
 |