Browse Source

fix(core): Include tax setting when populating default shipping methods

Michael Bromley 4 years ago
parent
commit
26ce6ff5f4
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/core/src/data-import/providers/populator/populator.ts

+ 1 - 0
packages/core/src/data-import/providers/populator/populator.ts

@@ -238,6 +238,7 @@ export class Populator {
                     arguments: [
                         { name: 'rate', value: method.price.toString() },
                         { name: 'taxRate', value: '0' },
+                        { name: 'includesTax', value: 'auto' },
                     ],
                 },
                 code: normalizeString(method.name, '-'),