Skip to content

Commit

Permalink
Finish 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey lashnev committed Jun 26, 2020
2 parents 2720935 + df312f1 commit 008ba99
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/data_objects/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ class Item extends BaseDataObject
protected $supplier_info;
/** @var string */
protected $user_data;
/** @var string */
protected $nomenclature_code;

/**
* @param string $name Описание товара
Expand Down Expand Up @@ -100,4 +102,12 @@ public function addUserData($userData)
{
$this->user_data = (string)$userData;
}

/**
* @param string $nomenclatureCode
*/
public function addNomenclatureCode($nomenclatureCode)
{
$this->nomenclature_code = (string)$nomenclatureCode;
}
}

0 comments on commit 008ba99

Please sign in to comment.