Skip to content

Commit

Permalink
Добавление возможности передавать тег 1162
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey lashnev committed Jun 29, 2020
1 parent d51ee4a commit ddbbb52
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/data_objects/Line.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ class Line extends BaseDataObject{
protected $AgentData;
/** @var ProviderData */
protected $ProviderData;
/** @var string */
protected $CGNFloat;

/**
* @param string $description Наименование товарной позиции
Expand Down Expand Up @@ -99,4 +101,12 @@ public function addProviderData(ProviderData $providerData)
{
$this->ProviderData = $providerData;
}

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

0 comments on commit ddbbb52

Please sign in to comment.