1 | <?php |
||
7 | class ProductData extends DataReceiver |
||
8 | { |
||
9 | /** |
||
10 | * Put a bar code on product data. |
||
11 | * |
||
12 | * @param array $product |
||
13 | * |
||
14 | * @return stdClass |
||
15 | */ |
||
16 | 3 | public function codigoBarras(array $product) |
|
24 | |||
25 | /** |
||
26 | * Put a local on product data. |
||
27 | * |
||
28 | * @param array $local |
||
29 | * |
||
30 | * @return stdClass |
||
31 | */ |
||
32 | 3 | public function local(array $local) |
|
40 | |||
41 | /** |
||
42 | * Put a aditional field on product data. |
||
43 | * |
||
44 | * @param array $field |
||
45 | * |
||
46 | * @return stdClass |
||
47 | */ |
||
48 | 3 | public function campoAdicionais(array $field) |
|
56 | |||
57 | /** |
||
58 | * Put a provider field on product data. |
||
59 | * |
||
60 | * @param array $provider |
||
61 | * |
||
62 | * @return stdClass |
||
63 | */ |
||
64 | 3 | public function fornecedores(array $provider) |
|
72 | } |
||
73 |