fflib and at4dx should be pulled locally and pushed to your orgs.
They should NOT be backed up in git.
To install the packages run (from within your SFDX Project):
node --harmony setup.mjs -e ORG_ALIASfflib and at4dx should be pulled locally and pushed to your orgs.
They should NOT be backed up in git.
To install the packages run (from within your SFDX Project):
node --harmony setup.mjs -e ORG_ALIAS| /** | |
| * @author aidan@processity.ai | |
| * @date 29/08/2024 | |
| * @description A map where the items are lists of items and you can provide a function for how values map to keys. | |
| * Oh, if we had generics.... | |
| */ | |
| public class MultiMap { | |
| private Map<Object, List<Object>> theMap; | |
| private Type listType; |
| global class QuotePDFGenerator { | |
| @future(callout=true) | |
| public static void AttachPDFToQuote(String Id) { | |
| try { | |
| CreateQuoteDocumentFromPDF(Id); | |
| } catch(exception ex) { | |
| System.debug('Error: ' + ex); | |
| } | |
| } |