-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
============================ | ||
Purchase Reporting Hide Date | ||
============================ | ||
|
||
this module hide date request from purchase report | ||
|
||
Configuration | ||
============= | ||
|
||
To configure this module, you need to: | ||
|
||
#. Go to ... | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
#. Go to ... | ||
|
||
|
||
Changelog | ||
========= |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright 2024 KMEE] | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Purchase Report Hide Date", | ||
"version": "14.0.1.0.0", | ||
"license": "", | ||
"author": "KMEE", | ||
"depends": [ | ||
"purchase", | ||
], | ||
"data": [ | ||
"report/purchase_report.xml", | ||
], | ||
"demo": [], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version='1.0' encoding='utf-8' ?> | ||
<odoo> | ||
<template | ||
id="purchase_report_hide_date" | ||
name="purchase_hide_date" | ||
inherit_id="purchase.report_purchaseorder_document" | ||
> | ||
<xpath expr="//th[@name='th_date_req']" position="replace"> | ||
</xpath> | ||
|
||
<xpath expr="//span[@t-field='line.date_planned']" position="replace"> | ||
</xpath> | ||
</template> | ||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
========================== | ||
Purchase Report Hide Taxes | ||
========================== | ||
|
||
this module hide taxes from purchase report | ||
|
||
Configuration | ||
============= | ||
|
||
To configure this module, you need to: | ||
|
||
#. Go to ... | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
#. Go to ... | ||
|
||
|
||
Changelog | ||
========= |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright 2024 KMEE | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Purchase Report Hide Taxes", | ||
"version": "14.0.1.0.0", | ||
"license": "", | ||
"author": "KMEE", | ||
"depends": [ | ||
"purchase", | ||
], | ||
"data": [ | ||
"report/purchase_report.xml", | ||
], | ||
"demo": [], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version='1.0' encoding='utf-8' ?> | ||
<odoo> | ||
<template | ||
id="purchase_report_hide_taxes" | ||
name="purchase_hide_taxes" | ||
inherit_id="purchase.report_purchaseorder_document" | ||
> | ||
|
||
<xpath expr="//th[@name='th_taxes']" position="replace"> | ||
</xpath> | ||
|
||
<xpath expr="//td[@name='td_taxes']" position="replace"> | ||
</xpath> | ||
|
||
<xpath | ||
expr="//div[@id='total']/div/table/tr/td[@name='td_taxes_label']" | ||
position="replace" | ||
> | ||
</xpath> | ||
</template> | ||
</odoo> |