tryton-sao 6.0.13 → 6.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG +3 -0
- package/dist/tryton-sao.js +2 -0
- package/dist/tryton-sao.min.js +2 -2
- package/package.json +1 -1
- package/src/screen.js +1 -0
- package/src/view/form.js +1 -0
package/CHANGELOG
CHANGED
package/dist/tryton-sao.js
CHANGED
|
@@ -13567,6 +13567,7 @@ var Sao = {};
|
|
|
13567
13567
|
return record.model.execute(attributes.name, [values],
|
|
13568
13568
|
this.context).then(function(changes) {
|
|
13569
13569
|
record.set_on_change(changes);
|
|
13570
|
+
record.group.changed();
|
|
13570
13571
|
record.group.root_group.screens.forEach(
|
|
13571
13572
|
function(screen) {
|
|
13572
13573
|
screen.display();
|
|
@@ -14907,6 +14908,7 @@ function eval_pyson(value){
|
|
|
14907
14908
|
this.el = jQuery('<button/>', {
|
|
14908
14909
|
'class': this.class_ + ' btn btn-link',
|
|
14909
14910
|
'name': attributes.name,
|
|
14911
|
+
'type': 'button',
|
|
14910
14912
|
});
|
|
14911
14913
|
if (attributes.icon) {
|
|
14912
14914
|
var img = jQuery('<img/>', {
|