app/Repository/Project/Issue/UpdaterRepository.php 1 location
|
@@ 83-85 (lines=3) @@
|
| 80 |
|
]); |
| 81 |
|
$fill['updated_by'] = $this->model->updatedBy->id; |
| 82 |
|
|
| 83 |
|
if (isset($input['time_quote']['lock'])) { |
| 84 |
|
$fill['lock_quote'] = $input['time_quote']['lock']; |
| 85 |
|
} |
| 86 |
|
|
| 87 |
|
// Only save quote if not locked or locked & user allowed to modify it |
| 88 |
|
if (array_key_exists('time_quote', $input) && |
app/Repository/Traits/Project/Issue/CrudTrait.php 1 location
|
@@ 88-90 (lines=3) @@
|
| 85 |
|
]); |
| 86 |
|
$fill['updated_by'] = $this->updatedBy->id; |
| 87 |
|
|
| 88 |
|
if (isset($input['time_quote']['lock'])) { |
| 89 |
|
$fill['lock_quote'] = $input['time_quote']['lock']; |
| 90 |
|
} |
| 91 |
|
|
| 92 |
|
// Only save quote if not locked or locked & user allowed to modify it |
| 93 |
|
if (array_key_exists('time_quote', $input) && |