There's only a bug where after logout the wallpaper doesn't fit well anymore. I still have to fix that, but a refresh works fine for the moment

Keep in mind that it doesn't work well with Dubas themes
;//////////////////////////////////////////////////////////////////////////
/// CODE START 5001 - Create a new schedule for the next week.
ifThen
(entity\attributeFetched('status')=='Schedule', // Check Attribute and if it equal to
ifThen
(status=='Paid' && datePaid!=null, // Only the next action if the following is true.
record\create
(
'Accounting', // Entity type
'status','Schedule', // Created Record Fieldname and Value
'name', name,
'casesIds', casesIds,
'description', string\concatenate
(
'[', 'Previous Payment record \nDate Paid: ', datePaid,
'\nPayment Amount: $', debit,
'](#/Accounting/view/', id, ')'
),
'date', datetime\addDays(date, 7), // Create a new field in the future so schedule can be varied. Example: Weekly will input "7"
'debit', debit,
'method', method,
'category', category,
'assetsAccountToIds', assetsAccountToIds,
'assetsIds', assetsIds,
'contactsIds', contactsIds,
'assignedUserId', assignedUserId,
'notes', '[This record was auto-generate by (MY ROBOT NAME HERE). Data is prefilled from existing record, confirm and update any changes required.]'
)
)
)
////////////////////////////// CODE END 5001 //////////////////////////////
output\printLine(
record\fetch('Contact', '123123-ID-number-here')
)
;////////////////////////////////////////////////////////////////////////// /// CODE START 1003 - Change Status to need more work after Manager/Management QA ifThen( statusQA=='Minor Defect' && status=='Completed' || statusQA=='Major Defect' && status=='Completed', status='Require Update'; statusQA='Re-Check' ) ////////////////////////////// CODE END 1003 //////////////////////////////
;/// CODE GUI 1002 - Auto-add Team Grouping when create Task from Case. Need Parent ifThen( parentType=='Case' && parentId!=null && teamsId==null, teamsIds = record\attribute(parentType, parentId, 'teamsIds') ) ////////////////// CODE END
<?php
namespace Espo\Custom\Classes\Select\CaseObj\PrimaryFilters;
use Espo\Core\Select\Primary\Filter;
use Espo\ORM\Query\SelectBuilder;
class AccountRealEstate implements Filter
{
public function apply(SelectBuilder $queryBuilder): void
{
$queryBuilder->where([
'industry=' => ['Real Estate']
]);
}
}
{
"primaryFilterClassNameMap": {
"Legal": "Espo\\Custom\\Classes\\Select\\CaseObj\\PrimaryFilters\\AccountLegal",
"Real Estate": "Espo\\Custom\\Classes\\Select\\CaseObj\\PrimaryFilters\\AccountRealEstate"
}
}
"kanbanViewMode": false,
"color": "#edc755",
"iconClass": "fas fa-building",
"filterList": [
{
"name":"Legal",
"style":"primary"
},
{
"name":"Real Estate",
"style": "success"
}
],
=CONCATENATE(" ",[@Number]," => '",[@Name],"',")
if (fromAddress=="abc@email.com"){
name
}
output\print(
if (fromAddress=="abc@email.com"){
name
}
)
if (fromAddress=="abc@email.com"){
output\print(
name
)
}
$coolAttribute = string\concatenate(name, name) ;
if (fromAddress=="abc@email.com"){
output\print(
$coolAttribute
)
}
Leave a comment: