Skip to content

Commit

Permalink
feat: add phone to client info
Browse files Browse the repository at this point in the history
  • Loading branch information
VivienCormier committed Dec 5, 2022
1 parent 41d9820 commit e454cfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bienoubien.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function __construct()
{
$this->name = 'bienoubien';
$this->tab = 'merchandizing';
$this->version = '1.0.7';
$this->version = '1.0.8';
$this->author = 'Binshops';
$this->need_instance = 0;

Expand Down
1 change: 1 addition & 0 deletions controllers/front/createorder.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ protected function processPostRequest()
$shipping_address->address2 = $this->_shipping_address['address2'];
$shipping_address->firstname = $this->_shipping_address['first_name'];
$shipping_address->lastname = $this->_shipping_address['last_name'];
$shipping_address->phone = $this->_shipping_address['phone'];
$shipping_address->id_state = State::getIdByIso($this->_shipping_address['province'], $id_country);


Expand Down

0 comments on commit e454cfd

Please sign in to comment.