E-INVOICE : VATEX filter on the country

This commit is contained in:
sparkyx 2025-11-22 08:38:44 +01:00
parent 55d7fda8d1
commit 71f8a7fc82
5 changed files with 71 additions and 22 deletions

View file

@ -105,15 +105,15 @@ class ISmallButton extends IButton
$extra= ( isset($this->extra))?$this->extra:"";
$this->id=($this->id=="")?$this->name:$this->id;
$tab=(isset($this->tabindex))?' tabindex="'.$this->tabindex.'"':"";
$attr=$this->get_node_attribute();
$r='<input type="BUTTON" name="'.$this->name.'"'.
' class="smallbutton" '.
$this->extra.
$tab.
' id="'.$this->id.'"'.
' value="'.$this->label.'"'.
' onClick="'.$this->javascript.'"'.$extra.'>';
$attr=$this->get_js_attr();
$r.=$attr;
' onClick="'.$this->javascript.'"'.$extra." $attr ".'>';
return $r;
}