@@ -57,7 +57,7 @@ |
||
57 | 57 | { |
58 | 58 | $fieldModelList = $this->record->getModule()->getFields(); |
59 | 59 | $requestKeys = $request->getAllRaw(); |
60 | - unset($requestKeys['module'],$requestKeys['action'],$requestKeys['record']); |
|
60 | + unset($requestKeys['module'], $requestKeys['action'], $requestKeys['record']); |
|
61 | 61 | foreach ($fieldModelList as $fieldName => $fieldModel) { |
62 | 62 | if (!$fieldModel->isWritable()) { |
63 | 63 | continue; |
@@ -65,7 +65,7 @@ |
||
65 | 65 | $fileName .= ($increment[$fileName]++ > 0 ? '_' . $increment[$fileName] : '') . '.pdf'; |
66 | 66 | |
67 | 67 | $filePath = $template->getPath(); |
68 | - $pdfFiles[] = ['path' => $filePath, 'name' => $fileName]; |
|
68 | + $pdfFiles[] = ['path' => $filePath, 'name' => $fileName]; |
|
69 | 69 | $pdf->output($filePath, 'F'); |
70 | 70 | } |
71 | 71 | if (\count($pdfFiles) > 1) { |
@@ -67,7 +67,7 @@ |
||
67 | 67 | if ($fieldModel->isEditable()) { |
68 | 68 | $fieldModel->getUITypeModel()->validate($fieldValue); |
69 | 69 | $relRecordModel->set($relatedData[2], $fieldValue); |
70 | - if(false !== $relRecordModel->getPreviousValue($relatedData[2])){ |
|
70 | + if (false !== $relRecordModel->getPreviousValue($relatedData[2])) { |
|
71 | 71 | $relRecordModel->setHandlerExceptions(['disableHandlerClasses' => ['Vtiger_Workflow_Handler']]); |
72 | 72 | $relRecordModel->save(); |
73 | 73 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | public static function setRecordToCron($moduleName, $destModule, $recordId, $type = 1) |
136 | 136 | { |
137 | 137 | $data = ['source_module' => $moduleName, 'dest_module' => $destModule, 'lastid' => $recordId, 'type' => $type]; |
138 | - if(!(new \App\Db\Query())->from('s_#__multireference')->where($data)->exists()){ |
|
138 | + if (!(new \App\Db\Query())->from('s_#__multireference')->where($data)->exists()) { |
|
139 | 139 | \App\Db::getInstance()->createCommand()->insert('s_#__multireference', $data)->execute(); |
140 | 140 | } |
141 | 141 | } |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | $tabIds = (new \App\Db\Query()) |
227 | 227 | ->select(['fieldid', 'tabid']) |
228 | 228 | ->from('vtiger_field') |
229 | - ->where(['and', ['<>', 'presence', 1], ['uitype' => $fieldModel->getUIType()], ['and', ['like', 'fieldparams', '"field":"' . $fieldModel->getId() . '"']] |
|
229 | + ->where(['and', ['<>', 'presence', 1], ['uitype' => $fieldModel->getUIType()], ['and', ['like', 'fieldparams', '"field":"' . $fieldModel->getId() . '"']] |
|
230 | 230 | ])->createCommand()->queryAllByGroup(); |
231 | 231 | foreach ($tabIds as $fieldId => $tabId) { |
232 | 232 | $sourceModule = \App\Module::getModuleName($tabId); |