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 authored and dreispt committed Sep 14, 2024
1 parent 116b4fc commit fea2920
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 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 <bodedra@opensourceintegrators.com>
- Freni Patel <fpatel@opensourceintegrators.com>

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

- Deriman Alonso d.alonso@binhex.cloud

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 \<<scampbells@opensourceintegrators.com>\>
- Bhavesh Odedra \<<bodedra@opensourceintegrators.com>\>
- Freni Patel \<<fpatel@opensourceintegrators.com>\>
* `Binhex Systems Solutions <https://binhex.cloud/>`_:

* Deriman Alonso <d.alonso@binhex.cloud>
16 changes: 11 additions & 5 deletions fieldservice_activity/static/description/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
Expand All @@ -9,10 +8,11 @@

/*
:Author: David Goodger (goodger@python.org)
: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 +275,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 +301,7 @@
span.pre {
white-space: pre }

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

span.section-subtitle {
Expand Down Expand Up @@ -430,6 +430,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 +446,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 fea2920

Please sign in to comment.