-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
1,024 additions
and
771 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tmp/smarty/* | ||
vendor | ||
.idea | ||
vde | ||
dev/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,45 @@ | ||
<?php | ||
namespace NS\TecDocSite\Common; | ||
|
||
class AnalogTypes { | ||
/** | ||
* Совпадение. | ||
*/ | ||
const MATCH = 0; | ||
/** | ||
* OE-номер. | ||
*/ | ||
const OE_NUMBER = 1; | ||
/** | ||
* Торговый номер. | ||
*/ | ||
const NUMBER = 2; | ||
/** | ||
* Сопоставимый. | ||
*/ | ||
const COMPARABLE = 3; | ||
/** | ||
* Замена. | ||
*/ | ||
const REPLACEMENT = 4; | ||
/** | ||
* Заменяемое. | ||
*/ | ||
const REMOVABLE = 5; | ||
/** | ||
* EAN | ||
*/ | ||
const EAN = 6; | ||
/** | ||
* Любая. | ||
*/ | ||
const ANY = 10; | ||
/** | ||
* Класс содержит описание типов аналогов | ||
* | ||
* Class AnalogTypes | ||
* @package NS\TecDocSite\Common | ||
*/ | ||
class AnalogTypes | ||
{ | ||
/** | ||
* Совпадение | ||
*/ | ||
const MATCH = 0; | ||
/** | ||
* OE-номер | ||
*/ | ||
const OE_NUMBER = 1; | ||
/** | ||
* Торговый номер | ||
*/ | ||
const NUMBER = 2; | ||
/** | ||
* Сопоставимый | ||
*/ | ||
const COMPARABLE = 3; | ||
/** | ||
* Замена | ||
*/ | ||
const REPLACEMENT = 4; | ||
/** | ||
* Заменяемое | ||
*/ | ||
const REMOVABLE = 5; | ||
/** | ||
* EAN | ||
*/ | ||
const EAN = 6; | ||
/** | ||
* Любая | ||
*/ | ||
const ANY = 10; | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.