Skip to content

Commit

Permalink
Fix "INSERT QUERY FAILED Query Failed:INSERT INTO leads ... ::: [Micr…
Browse files Browse the repository at this point in the history
…osoft][ODBC Driver 17 for SQL Server][SQL Server]Arithmetic overflow error converting numeric to data type numeric.\n[Microsoft][ODBC Driver 17 for SQL Server][SQL Server]The statement has been terminated.
  • Loading branch information
Alexey Klimko authored and dmulitsa committed Aug 14, 2023
1 parent 1abcab8 commit 7d5ca35
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/data/Leads.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,9 @@
$GLOBALS['dataTool']['Leads']['phone_home'] = array('phone' => true);
$GLOBALS['dataTool']['Leads']['picture'] = ['skip' => true];
$GLOBALS['dataTool']['Leads']['subscriptions'] = ['probability' => 60];
$GLOBALS['dataTool']['Leads']['ai_conv_score_absolute'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
$GLOBALS['dataTool']['Leads']['ai_conv_bin_accuracy'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
$GLOBALS['dataTool']['Leads']['ai_conv_multiplier'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
$GLOBALS['dataTool']['Leads']['ai_icp_fit_score_absolute'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
$GLOBALS['dataTool']['Leads']['ai_icp_fit_bin_accuracy'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
$GLOBALS['dataTool']['Leads']['ai_icp_fit_multiplier'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
3 changes: 3 additions & 0 deletions config/data/Opportunities.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@
);
$GLOBALS['dataTool']['Opportunities']['date_closed_timestamp'] = ['skip' => true];
$GLOBALS['dataTool']['Opportunities']['subscriptions'] = ['probability' => 60];
$GLOBALS['dataTool']['Opportunities']['ai_opp_conv_score_absolute'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
$GLOBALS['dataTool']['Opportunities']['ai_opp_conv_bin_accuracy'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];
$GLOBALS['dataTool']['Opportunities']['ai_opp_conv_multiplier'] = ['range' => ['min' => 1, 'max' => 30], 'multiply' => 3.321];

0 comments on commit 7d5ca35

Please sign in to comment.