Skip to content

Commit

Permalink
[MIG] fieldservice_activity: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Deriman-Alonso committed Jul 31, 2024
1 parent 12fe016 commit ce5345b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
4 changes: 4 additions & 0 deletions fieldservice_activity/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ Contributors
- Bhavesh Odedra <[email protected]>
- Freni Patel <[email protected]>

- ``Binhex Systems Solutions <https://binhex.cloud/>``\ \_:

- Deriman Alonso [email protected]

Other credits
-------------

Expand Down
3 changes: 3 additions & 0 deletions fieldservice_activity/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
- Steve Campbell \<<[email protected]>\>
- Bhavesh Odedra \<<[email protected]>\>
- Freni Patel \<<[email protected]>\>
* `Binhex Systems Solutions <https://binhex.cloud/>`_:

* Deriman Alonso <[email protected]>
15 changes: 11 additions & 4 deletions fieldservice_activity/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@

/*
:Author: David Goodger ([email protected])
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Copyright: This stylesheet has been placed in the public domain.

Default cascading style sheet for the HTML output of Docutils.
Despite the name, some widely supported CSS2 features are used.

See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
Expand Down Expand Up @@ -275,7 +276,7 @@
margin-left: 2em ;
margin-right: 2em }

pre.code .ln { color: grey; } /* line numbers */
pre.code .ln { color: gray; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
Expand All @@ -301,7 +302,7 @@
span.pre {
white-space: pre }

span.problematic {
span.problematic, pre.problematic {
color: red }

span.section-subtitle {
Expand Down Expand Up @@ -430,6 +431,10 @@ <h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
<li>Steve Campbell &lt;<a class="reference external" href="mailto:scampbells&#64;opensourceintegrators.com">scampbells&#64;opensourceintegrators.com</a>&gt;</li>
<li>Bhavesh Odedra &lt;<a class="reference external" href="mailto:bodedra&#64;opensourceintegrators.com">bodedra&#64;opensourceintegrators.com</a>&gt;</li>
<li>Freni Patel &lt;<a class="reference external" href="mailto:fpatel&#64;opensourceintegrators.com">fpatel&#64;opensourceintegrators.com</a>&gt;</li>
<li><tt class="docutils literal">Binhex Systems Solutions <span class="pre">&lt;https://binhex.cloud/&gt;</span></tt>_:<ul>
<li>Deriman Alonso <a class="reference external" href="mailto:d.alonso&#64;binhex.cloud">d.alonso&#64;binhex.cloud</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="other-credits">
Expand All @@ -442,7 +447,9 @@ <h2><a class="toc-backref" href="#toc-entry-7">Other credits</a></h2>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
</a>
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.</p>
Expand Down
6 changes: 3 additions & 3 deletions fieldservice_activity/views/fsm_order.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@
<field name="name" />
<field name="required" />
<field name="ref" />
<field name="completed" invisible="1" />
<field name="completed" column_invisible="1" />
<field name="completed_on" />
<field name="completed_by" />
<button
name="action_done"
string="Complete"
type="object"
class="oe_highlight"
attrs="{'invisible': [('state', 'not in', ['todo'])]}"
invisible="('state', 'not in', ['todo'])"
/>
<button
name="action_cancel"
string="Cancel"
type="object"
attrs="{'invisible': [('state', 'not in', ['todo'])]}"
invisible="('state', 'not in', ['todo'])"
/>
<field name="state" readonly="1" />
</tree>
Expand Down

0 comments on commit ce5345b

Please sign in to comment.