Merge pull request #7191 from turbo124/master

Minor fixes for imports
This commit is contained in:
David Bomba 2022-02-08 18:53:11 +11:00 committed by GitHub
commit 41b4812c50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -585,8 +585,8 @@ trait GenerateMigrationResources
'terms' => $credit->terms ?: '',
'tax_name1' => $credit->tax_name1,
'tax_name2' => $credit->tax_name2,
'tax_rate1' => $credit->tax_rate1,
'tax_rate2' => $credit->tax_rate2,
'tax_rate1' => $credit->tax_rate1 ?: 0,
'tax_rate2' => $credit->tax_rate2 ?: 0,
'tax_name3' => '',
'tax_rate3' => 0,
'custom_value1' => $credit->custom_value1 ?: '',