Compare commits
1 Commits
7d32cc3009
...
16.0
Author | SHA1 | Date | |
---|---|---|---|
9b85bd6483 |
@@ -15,10 +15,10 @@ jobs:
|
||||
python-version: "3.11"
|
||||
- name: Get python version
|
||||
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.cache/pre-commit
|
||||
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
|
||||
# - uses: actions/cache@v4
|
||||
# with:
|
||||
# path: ~/.cache/pre-commit
|
||||
# key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
|
||||
- name: Install pre-commit
|
||||
run: pip install pre-commit
|
||||
- name: Run pre-commit
|
||||
|
@@ -48,8 +48,14 @@ repos:
|
||||
bash -c 'oca-fix-manifest-website "https://git.elabore.coop/elabore/$(basename
|
||||
$(git rev-parse --show-toplevel))"'
|
||||
- id: oca-gen-addon-readme
|
||||
entry: bash -c 'oca-gen-addon-readme --addons-dir=. --branch=16.0 --repo-name=$(basename
|
||||
$(git rev-parse --show-toplevel)) --org-name="Elabore" --if-source-changed --keep-source-digest'
|
||||
entry:
|
||||
bash -c 'oca-gen-addon-readme
|
||||
--addons-dir=.
|
||||
--branch=$(git symbolic-ref
|
||||
refs/remotes/origin/HEAD | sed "s@^refs/remotes/origin/@@")
|
||||
--repo-name=$(basename $(git rev-parse --show-toplevel))
|
||||
--org-name="Elabore"
|
||||
--if-source-changed --keep-source-digest'
|
||||
|
||||
- repo: https://github.com/OCA/odoo-pre-commit-hooks
|
||||
rev: v0.1.4
|
||||
|
@@ -5,16 +5,14 @@
|
||||
"name": "crm usability misc",
|
||||
"version": "16.0.1.0.0",
|
||||
"author": "Elabore",
|
||||
"website": "https://git.elabore.coop/elabore/crm-tools",
|
||||
"website": "https://elabore.coop",
|
||||
"maintainer": "Elabore",
|
||||
"license": "AGPL-3",
|
||||
"category": "CRM",
|
||||
"summary": "Various modifications of CRM app",
|
||||
# any module necessary for this one to work correctly
|
||||
"depends": [
|
||||
"base",
|
||||
"crm",
|
||||
"sales_team",
|
||||
"base","crm","sales_team",
|
||||
],
|
||||
# always loaded
|
||||
"data": [
|
||||
|
@@ -7,29 +7,16 @@
|
||||
<field name="inherit_id" ref="crm.crm_lead_view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<!-- remove chapter Marketing in page Extra Information -->
|
||||
<xpath
|
||||
expr="//page[@name='lead']//field[@name='campaign_id']/ancestor::group[1]"
|
||||
position="replace"
|
||||
/>
|
||||
<xpath expr="//page[@name='lead']//field[@name='campaign_id']/ancestor::group[1]" position="replace" />
|
||||
<!-- move source_id and referred fields under Tags field -->
|
||||
<xpath expr="//field[@name='tag_ids']" position="after" >
|
||||
<field name="source_id"/>
|
||||
<field name="referred"/>
|
||||
</xpath>
|
||||
<!-- move team_id under Phone field -->
|
||||
<xpath
|
||||
expr="//group[@name='Misc']//field[@name='team_id']"
|
||||
position="replace"
|
||||
/>
|
||||
<xpath
|
||||
expr="//group[@name='opportunity_partner']//field[@name='lost_reason_id']"
|
||||
position="before"
|
||||
>
|
||||
<field
|
||||
name="team_id"
|
||||
options="{'no_open': True, 'no_create': True}"
|
||||
context="{'kanban_view_ref' : 'sales_team.crm_team_view_kanban'}"
|
||||
/>
|
||||
<xpath expr="//group[@name='Misc']//field[@name='team_id']" position="replace" />
|
||||
<xpath expr="//group[@name='opportunity_partner']//field[@name='lost_reason_id']" position="before" >
|
||||
<field name="team_id" options="{'no_open': True, 'no_create': True}" context="{'kanban_view_ref' : 'sales_team.crm_team_view_kanban'}"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
Reference in New Issue
Block a user