Skip to content
Snippets Groups Projects
Commit bbe49a3f59c6 authored by Etienne Ferriere's avatar Etienne Ferriere
Browse files

Fix the form view of the Xbus emitter job from information loss, following

commit 4b0be37db052.
parent 8400cf94edb8
Branches branch/11.0
No related tags found
1 merge request!31Fix the form view of the Xbus emitter job from information loss, following
Pipeline #120862 passed with warnings
Changelog
=========
16.0.2.0.1
----------
Fix the form view of the Xbus emitter job from information loss, following
commit 4b0be37db05267313cd46a7273894cea1a5c12e3.
16.0.2.0.0
----------
......
......@@ -21,7 +21,7 @@
"name": "Xbus Emitter",
"license": "AGPL-3",
"summary": "Emit messages from Odoo to Xbus",
"version": "16.0.2.0.0",
"version": "16.0.2.0.1",
"category": "Technical",
"author": "XCG Consulting",
"website": "https://orbeet.io/",
......
......@@ -3,7 +3,7 @@
dynamic = ["version"]
description = "Emit messages to Xbus from Odoo."
readme = "README.rst"
requires-python = "~=3.10.0"
requires-python = "~=3.11.9"
license = { file = "LICENSE", name = "GNU Affero General Public License v3" }
keywords = ["odoo"]
authors = [{ name = "XCG Consulting" }]
......
......@@ -75,7 +75,7 @@
<field name="model">xbus.emitter.job</field>
<field name="arch" type="xml">
<tree
decoration-success="state in ('sent_success')"
decoration-success="state in ('sent_success', 'process_done')"
decoration-danger="state in ('sent_error')"
>
<field name="emitter_id" />
......@@ -97,12 +97,6 @@
<field name="state" widget="statusbar" />
</header>
<sheet>
<div class="oe_left oe_title">
<h1>
<field name="envelope_id" />
</h1>
</div>
<group col="3">
<group>
<field name="emitter_id" />
......@@ -116,4 +110,5 @@
</group>
<group>
<field name="envelope_id" />
<field name="process_id" />
......@@ -119,4 +114,5 @@
<field name="process_id" />
<field name="process_state" />
</group>
</group>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment