BUG 11074 Triggers wizard. Doble instruccion en campo del wizard SOLVED

- The comments don't include a description for the return value
- Add a empty description to avoid the innecesary label "Not required"
This commit is contained in:
Julio Cesar Laura
2013-04-03 13:40:57 -04:00
parent 3e59ff41a3
commit 0c99d16115
5 changed files with 43 additions and 43 deletions

View File

@@ -87,7 +87,7 @@ function objectToArray ($object)
* @param string | $linkNameToFieldsArray | A list of link names and the fields to be returned for each link name.
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarEntries | Sugar Entries (array or object)
* @return array/object | $sugarEntries | Sugar Entries (array or object) |
*
*/
@@ -124,7 +124,7 @@ function GetSugarEntry ($sugarSoap, $user, $password, $module, $id, $selectField
* @param string | $maxResults=50 | Max Results
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarEntries | Sugar Entries (array or object)
* @return array/object | $sugarEntries | Sugar Entries (array or object) |
*
*/
@@ -168,7 +168,7 @@ function GetSugarEntries ($sugarSoap, $user, $password, $module, $query, $orderB
* @param string | $maxResults=50 | Max Results
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarCalls | Sugar Calls (array or object)
* @return array/object | $sugarCalls | Sugar Calls (array or object) |
*
*/
@@ -196,7 +196,7 @@ function GetSugarCalls ($sugarSoap, $user, $password, $query, $orderBy, $selecte
* @param string | $maxResults=50 | Max Results
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarLeads | Sugar Leads (array or object)
* @return array/object | $sugarLeads | Sugar Leads (array or object) |
*
*/
@@ -224,7 +224,7 @@ function GetSugarLeads ($sugarSoap, $user, $password, $query, $orderBy, $selecte
* @param string | $maxResults=50 | Max Results
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarContacts | Sugar Contacts (array or object)
* @return array/object | $sugarContacts | Sugar Contacts (array or object) |
*
*/
@@ -252,7 +252,7 @@ function GetSugarContacts ($sugarSoap, $user, $password, $query, $orderBy, $sele
* @param string | $maxResults=50 | Max Results
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarAccount | Sugar Opportunities (array or object)
* @return array/object | $sugarAccount | Sugar Opportunities (array or object) |
*
*/
@@ -280,7 +280,7 @@ function GetSugarOpportunities ($sugarSoap, $user, $password, $query, $orderBy,
* @param string | $maxResults=50 | Max Results
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarAccount | Sugar Opportunities (array or object)
* @return array/object | $sugarAccount | Sugar Opportunities (array or object) |
*
*/
@@ -306,7 +306,7 @@ function GetSugarAccount ($sugarSoap, $user, $password, $query, $orderBy, $selec
* @param string | $name | Account name
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarAccount | Sugar Opportunities (array or object)
* @return array/object | $sugarAccount | Sugar Opportunities (array or object) |
*
*/
function CreateSugarAccount ($sugarSoap, $user, $password, $name, $resultType = "array")
@@ -354,7 +354,7 @@ function CreateSugarAccount ($sugarSoap, $user, $password, $name, $resultType =
* @param string | $account_id | Valid id account
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarContact | Sugar Opportunities (array or object)
* @return array/object | $sugarContact | Sugar Opportunities (array or object) |
*
*/
function CreateSugarContact ($sugarSoap, $user, $password, $first_name, $last_name, $email, $title, $phone, $account_id, $resultType = "array")
@@ -414,7 +414,7 @@ function CreateSugarContact ($sugarSoap, $user, $password, $first_name, $last_na
* @param string | $sales_stage | Prospecting, Qualification, Needs Analysis, Value Proposition, Id. Decision Makers, Perception Analysis, Proposal/Price Quote, Negotiation/Review, Closed Won, Closed Lost
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarOpportunity | Sugar Opportunities (array or object)
* @return array/object | $sugarOpportunity | Sugar Opportunities (array or object) |
*
*/
function CreateSugarOpportunity ($sugarSoap, $user, $password, $name, $account_id, $amount, $date_closed, $sales_stage, $resultType = "array")
@@ -479,7 +479,7 @@ function CreateSugarOpportunity ($sugarSoap, $user, $password, $name, $account_i
* @param string | $account_id | Valid id account
* @param string | $resultType=array | Result type (array or object)
*
* @return array/object | $sugarContact | Sugar Opportunities (array or object)
* @return array/object | $sugarContact | Sugar Opportunities (array or object) |
*
*/
function CreateSugarLeads ($sugarSoap, $user, $password, $first_name, $last_name, $email, $title, $phone, $account_id, $resultType = "array")