tryton-sao 6.2.4 → 6.2.5
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
|
@@ -13652,6 +13652,7 @@ var Sao = {};
|
|
|
13652
13652
|
return record.model.execute(attributes.name, [values],
|
|
13653
13653
|
this.context).then(function(changes) {
|
|
13654
13654
|
record.set_on_change(changes);
|
|
13655
|
+
record.group.changed();
|
|
13655
13656
|
record.group.root_group.screens.forEach(
|
|
13656
13657
|
function(screen) {
|
|
13657
13658
|
screen.display();
|
|
@@ -15037,6 +15038,7 @@ function eval_pyson(value){
|
|
|
15037
15038
|
this.el = jQuery('<button/>', {
|
|
15038
15039
|
'class': this.class_ + ' btn btn-link',
|
|
15039
15040
|
'name': attributes.name,
|
|
15041
|
+
'type': 'button',
|
|
15040
15042
|
});
|
|
15041
15043
|
if (attributes.icon) {
|
|
15042
15044
|
var img = jQuery('<img/>', {
|