/**
* Module Dependencies
*/
// Any module dependencies go here
/**
* Export the default `driver`
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
<snippet> | |
<content> | |
<![CDATA[ | |
/** | |
* @author Charles Naccio | |
* @date ${1:DD}/${2:MM}/20${3:YY} | |
* | |
* @group ${4:a group to display this class under, in the menu hierarchy. i.e. "Payment Processing"} | |
* @group-content ${5:a relative path to a static html file that provides content about the group i.e. "../../ApexDocContent/Accounts.htm"} | |
* |
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
<aura:component implements="flexipage:availableForRecordHome,force:hasRecordId,force:lightningQuickActionWithoutHeader" | |
access="global"> | |
<!-- modal size fix --> | |
<style type="text/css"> | |
.cFulfillmentReceivePurchaseOrder.slds-modal__container {width:100%;padding:0;margin:0;} | |
.cFulfillmentReceivePurchaseOrder .slds-modal__content {padding:1rem;} | |
.slds-modal__content {padding:0;height:auto !important;max-height:100% !important;} | |
.forceChatterBasePublisher :not(.PHONE) .cuf-content {padding:0;} | |
</style> |
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
/** | |
* @author Charles Naccio | |
* @date 5/31/2019 | |
* | |
* @group Security | |
* @group-content ../../ApexDocContent/Security.htm | |
* | |
* @description A unit of work DML interface for executing secure database write operations | |
* based on user level permissions. | |
*/ |
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
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
<ItemGroup> | |
<Compile Include=".\**\*.cs*" /> | |
</ItemGroup> | |
<ItemGroup> | |
<ProjectReference Include="..\lean\Common\QuantConnect.csproj" /> | |
<ProjectReference Include="..\lean\Indicators\QuantConnect.Indicators.csproj" /> | |
<ProjectReference Include="..\lean\Algorithm\QuantConnect.Algorithm.csproj" /> |
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
public with sharing class TestsUtils { | |
// Setup global/account data | |
public static void setupAccountingSeedTestData() { | |
User adminUser = TestsUtils.getAdminUser(); | |
System.runAs(adminUser) { | |
TestsUtils.createAccountingSettings(); | |
} | |
} |