Fixes for min max limits on migration
This commit is contained in:
parent
e58e6b3980
commit
97271449ed
1 changed files with 2 additions and 2 deletions
|
|
@ -2015,8 +2015,8 @@ trait GenerateMigrationResources
|
|||
}
|
||||
|
||||
$fees_and_limits = new \stdClass();
|
||||
$fees_and_limits->min_limit = $ags->min_limit;
|
||||
$fees_and_limits->max_limit = $ags->max_limit;
|
||||
$fees_and_limits->min_limit = $ags->min_limit ?: -1;
|
||||
$fees_and_limits->max_limit = $ags->max_limit ?: -1;
|
||||
$fees_and_limits->fee_amount = $ags->fee_amount;
|
||||
$fees_and_limits->fee_percent = $ags->fee_percent;
|
||||
$fees_and_limits->fee_tax_name1 = $ags->tax_name1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue