-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
476 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
src/files/custom/Espo/Modules/RealEstate/Controllers/Contact.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
/************************************************************************ | ||
* This file is part of Real Estate extension for EspoCRM. | ||
* | ||
* EspoCRM - Open Source CRM application. | ||
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko | ||
* Website: https://www.espocrm.com | ||
* | ||
* Real Estate extension is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Real Estate extension is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EspoCRM. If not, see http://www.gnu.org/licenses/. | ||
* | ||
* The interactive user interfaces in modified source and object code versions | ||
* of this program must display Appropriate Legal Notices, as required under | ||
* Section 5 of the GNU General Public License version 3. | ||
* | ||
* In accordance with Section 7(b) of the GNU General Public License version 3, | ||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word. | ||
************************************************************************/ | ||
|
||
namespace Espo\Modules\RealEstate\Controllers; | ||
|
||
class Contact extends \Espo\Modules\Crm\Controllers\Contact | ||
{ | ||
} |
34 changes: 34 additions & 0 deletions
34
src/files/custom/Espo/Modules/RealEstate/Controllers/Opportunity.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
/************************************************************************ | ||
* This file is part of Real Estate extension for EspoCRM. | ||
* | ||
* EspoCRM - Open Source CRM application. | ||
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko | ||
* Website: https://www.espocrm.com | ||
* | ||
* Real Estate extension is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Real Estate extension is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EspoCRM. If not, see http://www.gnu.org/licenses/. | ||
* | ||
* The interactive user interfaces in modified source and object code versions | ||
* of this program must display Appropriate Legal Notices, as required under | ||
* Section 5 of the GNU General Public License version 3. | ||
* | ||
* In accordance with Section 7(b) of the GNU General Public License version 3, | ||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word. | ||
************************************************************************/ | ||
|
||
namespace Espo\Modules\RealEstate\Controllers; | ||
|
||
class Opportunity extends \Espo\Modules\Crm\Controllers\Opportunity | ||
{ | ||
} |
34 changes: 34 additions & 0 deletions
34
src/files/custom/Espo/Modules/RealEstate/Entities/Contact.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
/************************************************************************ | ||
* This file is part of Real Estate extension for EspoCRM. | ||
* | ||
* EspoCRM - Open Source CRM application. | ||
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko | ||
* Website: https://www.espocrm.com | ||
* | ||
* Real Estate extension is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Real Estate extension is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EspoCRM. If not, see http://www.gnu.org/licenses/. | ||
* | ||
* The interactive user interfaces in modified source and object code versions | ||
* of this program must display Appropriate Legal Notices, as required under | ||
* Section 5 of the GNU General Public License version 3. | ||
* | ||
* In accordance with Section 7(b) of the GNU General Public License version 3, | ||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word. | ||
************************************************************************/ | ||
|
||
namespace Espo\Modules\RealEstate\Entities; | ||
|
||
class Contact extends \Espo\Modules\Crm\Entities\Contact | ||
{ | ||
} |
34 changes: 34 additions & 0 deletions
34
src/files/custom/Espo/Modules/RealEstate/Entities/Opportunity.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
/************************************************************************ | ||
* This file is part of Real Estate extension for EspoCRM. | ||
* | ||
* EspoCRM - Open Source CRM application. | ||
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko | ||
* Website: https://www.espocrm.com | ||
* | ||
* Real Estate extension is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Real Estate extension is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EspoCRM. If not, see http://www.gnu.org/licenses/. | ||
* | ||
* The interactive user interfaces in modified source and object code versions | ||
* of this program must display Appropriate Legal Notices, as required under | ||
* Section 5 of the GNU General Public License version 3. | ||
* | ||
* In accordance with Section 7(b) of the GNU General Public License version 3, | ||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word. | ||
************************************************************************/ | ||
|
||
namespace Espo\Modules\RealEstate\Entities; | ||
|
||
class Opportunity extends \Espo\Modules\Crm\Entities\Opportunity | ||
{ | ||
} |
11 changes: 11 additions & 0 deletions
11
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/detail.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[ | ||
{ | ||
"label":"Overview", | ||
"rows":[ | ||
[{"name":"name"},{"name":"accounts"}], | ||
[{"name":"emailAddress"},{"name":"phoneNumber"}], | ||
[{"name":"address"},{"name":"doNotCall"}], | ||
[{"name":"description", "fullWidth": true}] | ||
] | ||
} | ||
] |
12 changes: 12 additions & 0 deletions
12
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/detailConvert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"label":"Overview", | ||
"rows": [ | ||
[{"name":"name"}, false], | ||
[{"name":"emailAddress"},{"name":"phoneNumber"}], | ||
[{"name":"title"}, {"name":"doNotCall"}], | ||
[{"name":"address"}, false], | ||
[{"name":"description", "fullWidth": true}] | ||
] | ||
} | ||
] |
11 changes: 11 additions & 0 deletions
11
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/detailSmall.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[ | ||
{ | ||
"label": "", | ||
"rows": [ | ||
[{"name":"name"}], | ||
[{"name":"accounts"}], | ||
[{"name":"emailAddress"}], | ||
[{"name":"phoneNumber"}] | ||
] | ||
} | ||
] |
10 changes: 10 additions & 0 deletions
10
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/filters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
"account", | ||
"address", | ||
"assignedUser", | ||
"createdAt", | ||
"emailAddress", | ||
"phoneNumber", | ||
"title", | ||
"targetLists" | ||
] |
6 changes: 6 additions & 0 deletions
6
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/list.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{"name":"name","link":true}, | ||
{"name":"emailAddress", "notSortable": true, "width": 20}, | ||
{"name":"phoneNumber", "notSortable": true, "width": 20}, | ||
{"name":"addressCity", "width": 20} | ||
] |
5 changes: 5 additions & 0 deletions
5
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/listForAccount.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"name":"name", "width":35,"link":"true"}, | ||
{"name":"accountRole", "width":35, "notSortable": true}, | ||
{"name":"emailAddress"} | ||
] |
5 changes: 5 additions & 0 deletions
5
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/listSelect.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"name":"name","link":true, "width": "40"}, | ||
{"name":"account"}, | ||
{"name":"emailAddress", "notSortable": true} | ||
] |
5 changes: 5 additions & 0 deletions
5
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/listSmall.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"name":"name", "link":"true"}, | ||
{"name":"emailAddress", "notSortable": true, "width": 30}, | ||
{"name":"addressCity", "width": 25} | ||
] |
5 changes: 5 additions & 0 deletions
5
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Contact/relationships.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
"properties", | ||
"requests", | ||
"opportunities" | ||
] |
43 changes: 43 additions & 0 deletions
43
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Opportunity/detail.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[ | ||
{ | ||
"label": "Overview", | ||
"rows": [ | ||
[ | ||
{ | ||
"name": "property" | ||
}, | ||
{ | ||
"name": "stage" | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "request" | ||
}, | ||
{ | ||
"name": "account" | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "contacts" | ||
}, | ||
{ | ||
"name": "closeDate" | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "amount" | ||
}, | ||
false | ||
], | ||
[ | ||
{ | ||
"name": "description", | ||
"fullWidth": true | ||
} | ||
] | ||
] | ||
} | ||
] |
43 changes: 43 additions & 0 deletions
43
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Opportunity/detailConvert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[ | ||
{ | ||
"label": "Overview", | ||
"rows": [ | ||
[ | ||
{ | ||
"name": "name" | ||
}, | ||
{ | ||
"name": "property" | ||
} | ||
], | ||
[ | ||
false, | ||
{ | ||
"name": "request" | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "stage" | ||
}, | ||
{ | ||
"name": "amount" | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "probability" | ||
}, | ||
{ | ||
"name": "closeDate" | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "description", | ||
"fullWidth": true | ||
} | ||
] | ||
] | ||
} | ||
] |
50 changes: 50 additions & 0 deletions
50
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Opportunity/detailSmall.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[ | ||
{ | ||
"label": "", | ||
"rows": [ | ||
[ | ||
{ | ||
"name": "property", | ||
"fullWidth": true | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "request", | ||
"fullWidth": true | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "stage" | ||
}, | ||
{ | ||
"name": "closeDate" | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "amount", | ||
"fullWidth": true | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "account", | ||
"fullWidth": true | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "contacts", | ||
"fullWidth": true | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "description" | ||
} | ||
] | ||
] | ||
} | ||
] |
14 changes: 14 additions & 0 deletions
14
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Opportunity/filters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
"property", | ||
"request", | ||
"contacts", | ||
"stage", | ||
"amountConverted", | ||
"assignedUser", | ||
"account", | ||
"createdAt", | ||
"createdBy", | ||
"closeDate", | ||
"probability", | ||
"teams" | ||
] |
6 changes: 6 additions & 0 deletions
6
src/files/custom/Espo/Modules/RealEstate/Resources/layouts/Opportunity/kanban.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{"name":"name", "link": true}, | ||
{"name":"amount", "align": "right", "isLarge": true}, | ||
{"name":"account"}, | ||
{"name":"closeDate"} | ||
] |
Oops, something went wrong.