1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* Copyright (C) 2024 Rafael San José <[email protected]> |
4
|
|
|
* |
5
|
|
|
* This program is free software; you can redistribute it and/or modify |
6
|
|
|
* it under the terms of the GNU General Public License as published by |
7
|
|
|
* the Free Software Foundation; either version 3 of the License, or |
8
|
|
|
* (at your option) any later version. |
9
|
|
|
* |
10
|
|
|
* This program is distributed in the hope that it will be useful, |
11
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
12
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13
|
|
|
* GNU General Public License for more details. |
14
|
|
|
* |
15
|
|
|
* You should have received a copy of the GNU General Public License |
16
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
17
|
|
|
*/ |
18
|
|
|
|
19
|
|
|
namespace Dolibarr\Code\Variants\Model; |
20
|
|
|
|
21
|
|
|
class ProductCombination extends Model |
22
|
|
|
{ |
23
|
|
|
public $table = 'product_attribute_combination'; |
24
|
|
|
|
25
|
|
|
public function fetch($rowid) |
26
|
|
|
{ |
27
|
|
|
return DB::firstWhere('rowid', $rowid); |
|
|
|
|
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
public function fetchCombinationPriceLevels($fk_price_level = 0, $useCache = true) |
31
|
|
|
{ |
32
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
public function saveCombinationPriceLevels($clean = 1) |
36
|
|
|
{ |
37
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
public function fetchByFkProductChild($productid, $donotloadpricelevel = 0) |
41
|
|
|
{ |
42
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function fetchAllByFkProductParent($fk_product_parent, $sort_by_ref = false) |
46
|
|
|
{ |
47
|
|
|
$result = ProductCombination::where('fk_product_parent', $fk_product_parent); |
48
|
|
|
dump($result); |
49
|
|
|
return $result; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
public function countNbOfCombinationForFkProductParent($fk_product_parent) |
53
|
|
|
{ |
54
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
public function create($user) |
58
|
|
|
{ |
59
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
public function update2(User $user) |
63
|
|
|
{ |
64
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
public function delete2(User $user) |
68
|
|
|
{ |
69
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
public function deleteByFkProductParent($user, $fk_product_parent) |
73
|
|
|
{ |
74
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
public function updateProperties(Product $parent, User $user) |
78
|
|
|
{ |
79
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
public function fetchByProductCombination2ValuePairs($prodid, array $features) |
83
|
|
|
{ |
84
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
public function getUniqueAttributesAndValuesByFkProductParent($productid) |
88
|
|
|
{ |
89
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
public function createProductCombination(User $user, Product $product, array $combinations, array $variations, $price_var_percent = false, $forced_pricevar = false, $forced_weightvar = false, $forced_refvar = false, $ref_ext = '') |
93
|
|
|
{ |
94
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
public function copyAll(User $user, $origProductId, Product $destProduct) |
98
|
|
|
{ |
99
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
public function getCombinationLabel($prod_child) |
103
|
|
|
{ |
104
|
|
|
die(__METHOD__ . ' of ' . __CLASS__); |
|
|
|
|
105
|
|
|
} |
106
|
|
|
} |
107
|
|
|
|