diff --git a/NEWS.rst b/NEWS.rst
index 8400cf94edb87cb0a14c32070c0032fe3ad3f1fd_TkVXUy5yc3Q=..bbe49a3f59c6cbd01e9c9457d874e5906575bfdc_TkVXUy5yc3Q= 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -1,6 +1,12 @@
 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
 ----------
 
diff --git a/__manifest__.py b/__manifest__.py
index 8400cf94edb87cb0a14c32070c0032fe3ad3f1fd_X19tYW5pZmVzdF9fLnB5..bbe49a3f59c6cbd01e9c9457d874e5906575bfdc_X19tYW5pZmVzdF9fLnB5 100644
--- a/__manifest__.py
+++ b/__manifest__.py
@@ -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/",
diff --git a/pyproject.toml b/pyproject.toml
index 8400cf94edb87cb0a14c32070c0032fe3ad3f1fd_cHlwcm9qZWN0LnRvbWw=..bbe49a3f59c6cbd01e9c9457d874e5906575bfdc_cHlwcm9qZWN0LnRvbWw= 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -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" }]
diff --git a/views/xbus_emitter_job.xml b/views/xbus_emitter_job.xml
index 8400cf94edb87cb0a14c32070c0032fe3ad3f1fd_dmlld3MveGJ1c19lbWl0dGVyX2pvYi54bWw=..bbe49a3f59c6cbd01e9c9457d874e5906575bfdc_dmlld3MveGJ1c19lbWl0dGVyX2pvYi54bWw= 100644
--- a/views/xbus_emitter_job.xml
+++ b/views/xbus_emitter_job.xml
@@ -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>