This file contains hidden or 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
| <apex:page controller="viewController" title="Forecast" sidebar="false" showHeader="false" standardStylesheets="true"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
| <style> | |
| div.Bottom [hidden], .slds template | |
| { | |
| display: block; | |
| } | |
| </style> |
This file contains hidden or 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
| <apex:page StandardController="SBQQ__Quote__c" extensions="GenerateNDA" action="{!createNDA}"></apex:page> |
This file contains hidden or 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
| trigger TemplateQuoteBefore on SBQQ__Quote__c (before update, before insert) { | |
| // INSERT STUFF | |
| if(trigger.isInsert){ | |
| for(SBQQ__Quote__c quote : trigger.new){ | |
| //Do Stuff | |
| } | |
| } | |
This file contains hidden or 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 class GenerateNDA { | |
| public GenerateNDA(ApexPages.StandardController stdcontroller){ | |
| } | |
| public PageReference createNDA() | |
| { | |
| string quoteID = ApexPages.currentPage().getParameters().get('id'); | |
This file contains hidden or 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
| global class PluginDemoProductSearchPlugin implements SBQQ.ProductSearchPlugin{ | |
| public String type1 {get; set;} | |
| global PluginDemoProductSearchPlugin(){ | |
| System.debug('METHOD CALLED: customSearchFilter Constructor'); | |
| } | |
| global String getAdditionalSearchFilters(SObject so, Map<String,Object> ma){ | |
| System.debug('METHOD CALLED: getAdditionalSearchFilters'); | |
| //System.debug('Sobject Passed: ' + so.getSObjectType().getDescribe().getName()); |
This file contains hidden or 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
| <apex:page showHeader="false" sidebar="false" cache="false" contentType="text/xml" controller="DiscountSchedulePrintController"> | |
| <block> | |
| <apex:repeat var="line" value="{!linesWithTiers}"> | |
| <block>{!line.name}</block> | |
| <block> | |
| <table table-layout="fixed" width="100%" border-color="#000000" border-width="1px"> | |
| <!--<table-column column-width="{!dataColumnWidth}%"/>--> | |
| <table-column column-width="{!dataColumnWidth}%"/> | |
| <table-column column-width="{!dataColumnWidth}%"/> |