|
@@ 271-276 (lines=6) @@
|
| 268 |
|
$this->loadItem(); |
| 269 |
|
$this->item->clear(); |
| 270 |
|
|
| 271 |
|
if (isset($input["checked_invoice"]) && is_array($input["checked_invoice"])) { |
| 272 |
|
foreach ($input["checked_invoice"] as $invoice_id) { |
| 273 |
|
$this->loadItem(); |
| 274 |
|
$this->item->save(array("invoice_id" => $invoice_id)); |
| 275 |
|
} |
| 276 |
|
} |
| 277 |
|
|
| 278 |
|
if (isset($input["checked_reminder"]) && is_array($input["checked_reminder"])) { |
| 279 |
|
foreach ($input["checked_reminder"] as $reminder_id) { |
|
@@ 278-283 (lines=6) @@
|
| 275 |
|
} |
| 276 |
|
} |
| 277 |
|
|
| 278 |
|
if (isset($input["checked_reminder"]) && is_array($input["checked_reminder"])) { |
| 279 |
|
foreach ($input["checked_reminder"] as $reminder_id) { |
| 280 |
|
$this->loadItem(); |
| 281 |
|
$this->item->save(array("reminder_id" => $reminder_id)); |
| 282 |
|
} |
| 283 |
|
} |
| 284 |
|
|
| 285 |
|
return true; |
| 286 |
|
} |