[-] WS : Fix xlink

[*] WS : Add entity tax_rule_groups
[*] WS : Fix ObjectModel issue
[*] WS : Delete sqlId not used
[*] WS : Fix entity configurations
[*] WS : Fix entity translated_configurations
This commit is contained in:
aKorczak
2012-02-08 15:42:53 +00:00
parent 1e82f49c7f
commit 641d84a277
6 changed files with 31 additions and 7 deletions
+8 -1
View File
@@ -41,10 +41,17 @@ class TaxRulesGroupCore extends ObjectModel
'primary' => 'id_tax_rules_group',
'fields' => array(
'name' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName', 'required' => true, 'size' => 64),
'active' => array('type' => self::TYPE_BOOL),
'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
),
);
protected $webserviceParameters = array(
'objectsNodeName' => 'tax_rule_groups',
'objectNodeName' => 'tax_rule_group',
'fields' => array(
),
);
protected static $_taxes = array();
public static function getTaxRulesGroups($only_active = true)