Skip to content

Commit

Permalink
Add bump
Browse files Browse the repository at this point in the history
  • Loading branch information
uryvskiy-dima committed Jul 31, 2024
1 parent ecf59a8 commit 4efbb8d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v3.6.7
* Добавлена передача полей "Компания" и "Номер НДС" из заказа CMS в пользовательские поля заказа CRM

## v3.6.6
* Добавлена передача поля link при выгрузке брошенных корзин

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.6
3.6.7
4 changes: 2 additions & 2 deletions retailcrm/lib/RetailcrmOrderBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ private function buildRegularAddress()
->setAddress($this->invoiceAddress)
->build()
->getDataArray()
;
;
}

/**
Expand All @@ -354,7 +354,7 @@ private function buildCorporateAddress($isMain = true)
->setWithExternalId(true)
->build()
->getDataArray()
;
;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion retailcrm/lib/settings/RetailcrmSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private function createCompanyAndVatNumberFields()

$customFields = [
['code' => 'ps_company', 'name' => $company, 'type' => 'string', 'displayArea' => 'customer'],
['code' => 'ps_vat_number', 'name' => $vatNumber, 'type' => 'string', 'displayArea' => 'customer']
['code' => 'ps_vat_number', 'name' => $vatNumber, 'type' => 'string', 'displayArea' => 'customer'],
];

if (null !== $api) {
Expand Down
2 changes: 1 addition & 1 deletion retailcrm/retailcrm.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

class RetailCRM extends Module
{
const VERSION = '3.6.6';
const VERSION = '3.6.7';

const API_URL = 'RETAILCRM_ADDRESS';
const API_KEY = 'RETAILCRM_API_TOKEN';
Expand Down

0 comments on commit 4efbb8d

Please sign in to comment.