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

pmt tool update #14

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .sf/config.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"target-org": "[email protected]"
"target-org": "Staging ORG"
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"**/node_modules": true,
"**/bower_components": true,
"**/.sfdx": true
}
},
"salesforcedx-vscode-apex.java.home": "C:\\\\Program Files\\\\Zulu\\\\zulu-17"
}
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Project Management Tool - PMT



Free end-to-end project management solution built by Salesforce

Expand All @@ -18,4 +19,9 @@ With PMT, you can easily structure your projects and track progress to

*COLLABORATION*: Embedded collaboration moves projects along quickly, even when multiple teams and regions are involved. Post to Chatter if you need to swap a resource.

*ISSUE MANAGEMENT*: Escalate business critical issues/risks/bugs with Cases. Focus on resolving late projects with path to green.
*ISSUE MANAGEMENT*: Escalate business critical issues/risks/bugs with Cases. Focus on resolving late projects with path to green.

<a href="https://githubsfdeploy.herokuapp.com">
<img alt="Deploy to Salesforce"
src="https://raw.githubusercontent.com/afawcett/githubsfdeploy/master/deploy.png">
</a>
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<GlobalValueSet xmlns="http://soap.sforce.com/2006/04/metadata">
<customValue>
<fullName>Sponsor</fullName>
<fullName>Project Sponsor</fullName>
<default>false</default>
<label>Sponsor</label>
<label> Project Sponsor</label>
</customValue>
<customValue>
<fullName>Project Owner</fullName>
<fullName>Program Director</fullName>
<default>false</default>
<label>Project Owner</label>
<label>Program Director</label>
</customValue>
<customValue>
<fullName>PMO</fullName>
<fullName>Program Manager</fullName>
<default>false</default>
<label>PMO</label>
<label>Program Manager</label>
</customValue>
<customValue>
<fullName>SME</fullName>
<fullName>Monotoring and Evaluation</fullName>
<default>false</default>
<label>SME</label>
<label>Monitoring and Evaluation</label>
</customValue>
<customValue>
<fullName>IT</fullName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>Allocated_Resource_Id__c</fullName>
<externalId>false</externalId>
<formula>Resource_Availability__r.User__r.Id</formula>
<formula>Resource_Availability__r.Flair_Employee__r.Id</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>Allocated Resource Id</label>
<required>false</required>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>Resource_IsActive__c</fullName>
<externalId>false</externalId>
<formula>Resource_Availability__r.User__r.IsActive</formula>
<formula>Resource_Availability__r.Flair_Employee__r.flair__Active__c</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>Resource IsActive</label>
<trackHistory>false</trackHistory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>Resource_Name__c</fullName>
<externalId>false</externalId>
<formula>Resource_Availability__r.User__r.FirstName + &quot; &quot; + Resource_Availability__r.User__r.LastName</formula>
<formula>Resource_Availability__r.Flair_Employee__r.Name</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>Resource Name</label>
<required>false</required>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<fullName>User_Department__c</fullName>
<description>Shows Users department name</description>
<externalId>false</externalId>
<formula>Resource_Availability__r.User__r.Department</formula>
<formula>Resource_Availability__r.Flair_Employee__r.flair__Department__r.Name</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>User Department</label>
<required>false</required>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>User_Department__c</fullName>
<externalId>false</externalId>
<formula>User__r.Department</formula>
<formula>Flair_Employee__r.flair__Department__r.Name</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>User Department</label>
<required>false</required>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<fullName>User_Id__c</fullName>
<description>This formula field is used by the resource allocation functionality</description>
<externalId>false</externalId>
<formula>IF(is_Dummy_Availability__c,&apos;DUM&apos;, CASESAFEID(User__r.Id))</formula>
<formula>IF(is_Dummy_Availability__c,&apos;DUM&apos;, CASESAFEID(Flair_Employee__r.Id))</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>User Id</label>
<required>false</required>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<fullName>User_IsActive__c</fullName>
<description>Shows user is active or not</description>
<externalId>false</externalId>
<formula>User__r.IsActive</formula>
<formula>Flair_Employee__r.flair__Active__c</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>User IsActive</label>
<trackHistory>false</trackHistory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>User_Name__c</fullName>
<externalId>false</externalId>
<formula>IF(is_Dummy_Availability__c,&apos;&apos;, User__r.FirstName + &apos; &apos; + User__r.LastName)</formula>
<formula>IF(is_Dummy_Availability__c,&apos;&apos;,Flair_Employee__r.Name)</formula>
<formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
<label>User Name</label>
<required>false</required>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<description>User for which availability is defined</description>
<externalId>false</externalId>
<label>User</label>
<referenceTo>User</referenceTo>
<referenceTo>Employee</referenceTo>
<relationshipName>Resource_Availability</relationshipName>
<required>false</required>
<trackFeedHistory>false</trackFeedHistory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<fieldManageability>SubscriberControlled</fieldManageability>
<inlineHelpText>This indicates the start of the fiscal year. For example, if value is 2 which means year starts from Feb, 3 for Mar, and so on</inlineHelpText>
<label>Start Month of Fiscal Year</label>
<precision>2</precision>
<precision>1</precision>
<required>true</required>
<scale>0</scale>
<type>Number</type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<deleteConstraint>SetNull</deleteConstraint>
<externalId>false</externalId>
<label>Assigned To</label>
<referenceTo>User</referenceTo>
<referenceTo>Employee</referenceTo>
<relationshipName>PMT_Tasks</relationshipName>
<required>false</required>
<trackFeedHistory>false</trackFeedHistory>
Expand Down
2 changes: 1 addition & 1 deletion force-app/main/default/settings/Company.settings-meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<enableCustomFiscalYear>false</enableCustomFiscalYear>
<fiscalYear>
<fiscalYearNameBasedOn>endingMonth</fiscalYearNameBasedOn>
<startMonth>February</startMonth>
<startMonth>January</startMonth>
</fiscalYear>
</CompanySettings>