Fixes for JSON import

This commit is contained in:
Hillel Coren 2016-08-15 21:37:47 +03:00
parent 2d87de6a6a
commit b35c44b1e8
2 changed files with 3 additions and 2 deletions

View File

@ -646,7 +646,7 @@ class ImportService
{
EntityModel::$notifySubscriptions = false;
foreach ([ENTITY_CLIENT, ENTITY_INVOICE, ENTITY_PAYMENT] as $entityType) {
foreach ([ENTITY_CLIENT, ENTITY_INVOICE, ENTITY_PAYMENT, ENTITY_QUOTE] as $entityType) {
$this->results[$entityType] = [
RESULT_SUCCESS => [],
RESULT_FAILURE => [],

View File

@ -2074,7 +2074,8 @@ $LANG = array(
'list_products' => 'List Products',
'include_item_taxes_inline' => 'Include <b>line item taxes in line total</b>',
'created_quotes' => 'Successfully created :count quotes(s)',
);
return $LANG;