Skip to content

Commit

Permalink
Merge 1a3864d into feature/242
Browse files Browse the repository at this point in the history
  • Loading branch information
salesforce-org-metaci[bot] authored Nov 19, 2024
2 parents 09a82e9 + 1a3864d commit 0e49597
Show file tree
Hide file tree
Showing 73 changed files with 228 additions and 225 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ECCN: Open Source
#GUSINFO: Program Management Orion, SFDO Outbound Funds Module
#GUSINFO: NPC Orion, SFDO Outbound Funds Module
#
# Copyright (c) 2021, salesforce.com, inc.
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Spell Checking
on: [push]
jobs:
cspell:
runs-on: ubuntu-latest
runs-on: SalesforceFoundation-ubuntu
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Linting
on: [push]
jobs:
eslint:
runs-on: ubuntu-latest
runs-on: SalesforceFoundation-ubuntu
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Jest
on: [push]
jobs:
jest:
runs-on: ubuntu-latest
runs-on: SalesforceFoundation-ubuntu
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label_audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Label Audit
on: [push]
jobs:
labels:
runs-on: ubuntu-latest
runs-on: SalesforceFoundation-ubuntu
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lockfile-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Lockfile
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
runs-on: SalesforceFoundation-ubuntu
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Formatting
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
runs-on: SalesforceFoundation-ubuntu
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion cumulusci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ tasks:
github_release:
options:
release_content: |
Check out the Salesforce Release Notes on [Salesforce Help & Training](https://sfdc.co/bnL4Cb).
Check out the [Salesforce Release Notes](https://sfdc.co/bnL4Cb) or [Known Issues](https://issues.salesforce.com/) for details.
flows:
config_dev:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
if (intervalType == WEEK) {
dateObject.setDate(dateObject.getDate() + interval * 7);
} else if (intervalType == MONTH) {
dateObject = this.addMonths(dateObject, interval);
dateObject.setMonth(dateObject.getMonth() + interval);
} else if (intervalType == YEAR) {
dateObject.setFullYear(dateObject.getFullYear() + interval);
}
Expand All @@ -104,7 +104,10 @@
// Calculated Properties
id: "" + i, // A workaround to force the datatable to see this id as a string
amount: thisPayment,
scheduleDate: dateObject.toISOString().split("T")[0],
scheduleDate: $A.localizationService.formatDate(
dateObject.toISOString(),
"YYYY-MM-DD"
),
requestId: m.request.recordId
});
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Amount__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Disbursement_Date__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Disbursement_Method__c</name>
<picklistValues>
<masterLabel>Cash</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Check</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>EFT</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<layouts>
<layout>Disbursement Layout</layout>
<sections>
<label/>
<label></label>
<section>Custom Links</section>
</sections>
</layouts>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Funding_Request__c</name>
<relationshipLabel/>
<relationshipLabel></relationshipLabel>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Scheduled_Date__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Status__c</name>
<picklistValues>
<masterLabel>Approved</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Cancelled</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Paid</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Pending Approval</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Scheduled</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Type__c</name>
<picklistValues>
<masterLabel>Amendment</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Final</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Initial</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Interim</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Description__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>End_Date__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<help/>
<label/>
<help></help>
<label></label>
<name>Funding_Program_Manager__c</name>
<relationshipLabel/>
<relationshipLabel></relationshipLabel>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
<layouts>
<layout>Funding Program Layout</layout>
<sections>
<label/>
<label></label>
<section>Custom Links</section>
</sections>
<sections>
<label/>
<label></label>
<section>Description</section>
</sections>
<sections>
<label/>
<label></label>
<section>Program Totals</section>
</sections>
</layouts>
<quickActions>
<label/>
<label></label>
<name>Program_Totals</name>
</quickActions>
<startsWith>Consonant</startsWith>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Parent_Funding_Program__c</name>
<relationshipLabel/>
<relationshipLabel></relationshipLabel>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Start_Date__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Status__c</name>
<picklistValues>
<masterLabel>Aborted</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Completed</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>In progress</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Planned</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<help/>
<label/>
<help></help>
<label></label>
<name>Top_Level__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Total_Program_Amount__c</name>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Contact__c</name>
<relationshipLabel/>
<relationshipLabel></relationshipLabel>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<layouts>
<layout>Funding Request Role Layout</layout>
<sections>
<label/>
<label></label>
<section>Custom Links</section>
</sections>
</layouts>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Funding_Request__c</name>
<relationshipLabel/>
<relationshipLabel></relationshipLabel>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Role__c</name>
<picklistValues>
<masterLabel>Applicant</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Financial Manager</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Grant Manager</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Status__c</name>
<picklistValues>
<masterLabel>Current</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
<picklistValues>
<masterLabel>Former</masterLabel>
<translation/>
<translation></translation>
</picklistValues>
</CustomFieldTranslation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomFieldTranslation xmlns="http://soap.sforce.com/2006/04/metadata">
<label/>
<label></label>
<name>Application_Date__c</name>
</CustomFieldTranslation>
Loading

0 comments on commit 0e49597

Please sign in to comment.