Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

47946 Optional writing of activities in the agents log with plugin forms & fields. #821

Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b22d7bd
47946 update option activity & create agent log
yeneastgate May 24, 2024
3109577
47946 update unit test
yeneastgate May 24, 2024
f6a9fdf
47946 update condition config empty
yeneastgate May 28, 2024
b01d020
47946 fix conflict
yeneastgate Jun 6, 2024
521af61
47946 fix conflict
yeneastgate Jun 6, 2024
e3ce1f8
47946 fix conflig select 2
yeneastgate Jun 6, 2024
cc15079
47946 fix conflig select 2
yeneastgate Jun 6, 2024
af3ac9e
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
yeneastgate Jun 17, 2024
397726a
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
yeneastgate Jun 19, 2024
8a53577
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
yeneastgate Jun 19, 2024
acc0d75
47946 fix conflict
yeneastgate Jul 26, 2024
271c21f
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
fredericalpers Jul 26, 2024
6c5da22
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
yeneastgate Sep 4, 2024
6697e5a
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
fredericalpers Sep 9, 2024
99486c9
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
yeneastgate Sep 10, 2024
c265d1c
47946 update origin contact & advisory level
yeneastgate Sep 16, 2024
a3e4a69
47946 update unit test
yeneastgate Sep 16, 2024
f4eb83f
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
fredericalpers Sep 19, 2024
3213d74
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
dai-eastgate Sep 25, 2024
ec6447a
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
andernath Sep 30, 2024
b425119
Fix merge conflicts
andernath Sep 30, 2024
d9c7833
47946 update unit test
yeneastgate Oct 1, 2024
a422d2c
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
andernath Oct 2, 2024
34e8f6e
Merge branch 'master' into 47946-optional-writing-of-activities-in-th…
yeneastgate Oct 11, 2024
208dffa
47946 update unit test
yeneastgate Oct 11, 2024
d4f7c6f
update ubuntu v.
pospisk Oct 14, 2024
56bdb99
47946 refactor code
yeneastgate Oct 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
47946 update condition config empty
  • Loading branch information
yeneastgate committed May 28, 2024
commit f6a9fdf00aa09995fced20d5c57af19fa536a8ba
3 changes: 3 additions & 0 deletions plugin/Form/FormAddressCreator.php
Original file line number Diff line number Diff line change
@@ -412,6 +412,9 @@ private function getAddressDataForReadAddressApiCall(FormData $pFormData): array
*/
public function createAgentsLog(DataFormConfiguration $pFormConfig, int $addressId, int $estateId = null)
{
if (empty($pFormConfig->getActionKind()) && empty($pFormConfig->getActionType()) && empty($pFormConfig->getCharacteristic()) && empty($pFormConfig->getRemark())) {
return;
}
$requestParams = [
'addressids' => [$addressId],
'actionkind' => $pFormConfig->getActionKind() ?: null,
Loading