mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[14.0][ADD] account_move_transfer_partner
This commit is contained in:
91
account_move_transfer_partner/README.rst
Normal file
91
account_move_transfer_partner/README.rst
Normal file
@@ -0,0 +1,91 @@
|
||||
=============================
|
||||
Account Move Transfer Partner
|
||||
=============================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Alpha
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/account-financial-tools/tree/14.0/account_move_transfer_partner
|
||||
:alt: OCA/account-financial-tools
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/account-financial-tools-14-0/account-financial-tools-14-0-account_move_transfer_partner
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/92/14.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
Add wizard to make transfer amount due from invoice / refund documents to specific partner
|
||||
|
||||
.. IMPORTANT::
|
||||
This is an alpha version, the data model and design can change at any time without warning.
|
||||
Only for development or testing purpose, do not use in production.
|
||||
`More details on development status <https://odoo-community.org/page/development-status>`_
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
This wizard just can be used on invoice / refund documents
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-financial-tools/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_move_transfer_partner%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* ForgeFlow S.L.
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Christopher Ormaza <chris.ormaza@forgeflow.com>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
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.
|
||||
|
||||
.. |maintainer-ChrisOForgeFlow| image:: https://github.com/ChrisOForgeFlow.png?size=40px
|
||||
:target: https://github.com/ChrisOForgeFlow
|
||||
:alt: ChrisOForgeFlow
|
||||
|
||||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-ChrisOForgeFlow|
|
||||
|
||||
This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/14.0/account_move_transfer_partner>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
4
account_move_transfer_partner/__init__.py
Normal file
4
account_move_transfer_partner/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# Copyright 2022 ForgeFlow S.L.
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import wizard
|
||||
20
account_move_transfer_partner/__manifest__.py
Normal file
20
account_move_transfer_partner/__manifest__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# Copyright 2022 ForgeFlow S.L.
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
{
|
||||
"name": "Account Move Transfer Partner",
|
||||
"summary": "Automation to translate amount due from many partners to one partner",
|
||||
"version": "14.0.1.0.0",
|
||||
"author": "ForgeFlow S.L., " "Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/account-financial-tools",
|
||||
"category": "Generic",
|
||||
"depends": ["account"],
|
||||
"license": "AGPL-3",
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"wizard/wizard_account_move_transfer_partner_view.xml",
|
||||
],
|
||||
"installable": True,
|
||||
"development_status": "Alpha",
|
||||
"maintainers": ["ChrisOForgeFlow"],
|
||||
}
|
||||
1
account_move_transfer_partner/readme/CONTRIBUTORS.rst
Normal file
1
account_move_transfer_partner/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1 @@
|
||||
* Christopher Ormaza <chris.ormaza@forgeflow.com>
|
||||
1
account_move_transfer_partner/readme/DESCRIPTION.rst
Normal file
1
account_move_transfer_partner/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1 @@
|
||||
Add wizard to make transfer amount due from invoice / refund documents to specific partner
|
||||
1
account_move_transfer_partner/readme/USAGE.rst
Normal file
1
account_move_transfer_partner/readme/USAGE.rst
Normal file
@@ -0,0 +1 @@
|
||||
This wizard just can be used on invoice / refund documents
|
||||
@@ -0,0 +1,2 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_wizard_account_move_transfer_partner_all,access_wizard_account_move_transfer_partner_all,model_wizard_account_move_transfer_partner,,1,1,1,1
|
||||
|
432
account_move_transfer_partner/static/description/index.html
Normal file
432
account_move_transfer_partner/static/description/index.html
Normal file
@@ -0,0 +1,432 @@
|
||||
<?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>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
|
||||
<title>Account Move Transfer Partner</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* 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 }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="account-move-transfer-partner">
|
||||
<h1 class="title">Account Move Transfer Partner</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Alpha" src="https://img.shields.io/badge/maturity-Alpha-red.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/account-financial-tools/tree/14.0/account_move_transfer_partner"><img alt="OCA/account-financial-tools" src="https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/account-financial-tools-14-0/account-financial-tools-14-0-account_move_transfer_partner"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/92/14.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>Add wizard to make transfer amount due from invoice / refund documents to specific partner</p>
|
||||
<div class="admonition important">
|
||||
<p class="first admonition-title">Important</p>
|
||||
<p class="last">This is an alpha version, the data model and design can change at any time without warning.
|
||||
Only for development or testing purpose, do not use in production.
|
||||
<a class="reference external" href="https://odoo-community.org/page/development-status">More details on development status</a></p>
|
||||
</div>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="id1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id6">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#id1">Usage</a></h1>
|
||||
<p>This wizard just can be used on invoice / refund documents</p>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-financial-tools/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_move_transfer_partner%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>ForgeFlow S.L.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Christopher Ormaza <<a class="reference external" href="mailto:chris.ormaza@forgeflow.com">chris.ormaza@forgeflow.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id6">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>
|
||||
<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>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external" href="https://github.com/ChrisOForgeFlow"><img alt="ChrisOForgeFlow" src="https://github.com/ChrisOForgeFlow.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/account-financial-tools/tree/14.0/account_move_transfer_partner">OCA/account-financial-tools</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
account_move_transfer_partner/tests/__init__.py
Normal file
1
account_move_transfer_partner/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_account_move_transfer_partner
|
||||
@@ -0,0 +1,334 @@
|
||||
# Copyright 2022 ForgeFlow S.L.
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import _, fields
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.tests.common import Form, TransactionCase
|
||||
|
||||
CURRENCY_RATE = 0.5
|
||||
|
||||
|
||||
class TestAccountMoveTransferPartner(TransactionCase):
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.company = self.env.ref("base.main_company")
|
||||
self.partner_1 = self.env.ref("base.res_partner_1")
|
||||
self.partner_2 = self.env.ref("base.res_partner_2")
|
||||
self.partner_3 = self.env.ref("base.res_partner_3")
|
||||
self.today = fields.Date.today()
|
||||
|
||||
self.AccountJournal = self.env["account.journal"]
|
||||
self.wizard_model = self.env["wizard.account.move.transfer.partner"]
|
||||
self.sale_journal = self.AccountJournal.create(
|
||||
{
|
||||
"name": "Sale journal",
|
||||
"code": "SALE",
|
||||
"type": "sale",
|
||||
}
|
||||
)
|
||||
self.purchase_journal = self.AccountJournal.create(
|
||||
{
|
||||
"name": "Purchase journal",
|
||||
"code": "PURCHASE",
|
||||
"type": "purchase",
|
||||
}
|
||||
)
|
||||
self.general_journal = self.AccountJournal.create(
|
||||
{
|
||||
"name": "General journal",
|
||||
"code": "GENERAL",
|
||||
"type": "general",
|
||||
}
|
||||
)
|
||||
|
||||
self.ProductProduct = self.env["product.product"]
|
||||
self.product = self.ProductProduct.create(
|
||||
{"name": "Product", "price": 100.0, "standard_price": 100.0}
|
||||
)
|
||||
charts = self.env["account.chart.template"].search([])
|
||||
if charts:
|
||||
self.chart = charts[0]
|
||||
else:
|
||||
raise ValidationError(_("No Chart of Account Template has been defined !"))
|
||||
self.AccountMove = self.env["account.move"]
|
||||
with Form(
|
||||
self.AccountMove.with_context(default_move_type="out_invoice")
|
||||
) as invoice_form:
|
||||
invoice_form.invoice_date = self.today
|
||||
invoice_form.partner_id = self.partner_2
|
||||
invoice_form.journal_id = self.sale_journal
|
||||
with invoice_form.invoice_line_ids.new() as line_form:
|
||||
line_form.product_id = self.product
|
||||
self.invoice_1 = invoice_form.save()
|
||||
self.invoice_2 = self.invoice_1.copy()
|
||||
self.invoice_3 = self.invoice_1.copy()
|
||||
invoice_form = Form(self.invoice_3)
|
||||
invoice_form.partner_id = self.partner_2
|
||||
self.invoice_3 = invoice_form.save()
|
||||
self.invoice_1.action_post()
|
||||
self.invoice_2.action_post()
|
||||
self.invoice_3.action_post()
|
||||
|
||||
with Form(
|
||||
self.AccountMove.with_context(default_move_type="in_invoice")
|
||||
) as invoice_form:
|
||||
invoice_form.invoice_date = self.today
|
||||
invoice_form.partner_id = self.partner_1
|
||||
invoice_form.journal_id = self.purchase_journal
|
||||
with invoice_form.invoice_line_ids.new() as line_form:
|
||||
line_form.product_id = self.product
|
||||
self.in_invoice = invoice_form.save()
|
||||
self.in_invoice.action_post()
|
||||
|
||||
with Form(
|
||||
self.AccountMove.with_context(default_move_type="out_refund")
|
||||
) as invoice_form:
|
||||
invoice_form.invoice_date = self.today
|
||||
invoice_form.partner_id = self.partner_1
|
||||
invoice_form.journal_id = self.sale_journal
|
||||
with invoice_form.invoice_line_ids.new() as line_form:
|
||||
line_form.product_id = self.product
|
||||
self.out_refund = invoice_form.save()
|
||||
self.out_refund.action_post()
|
||||
with Form(
|
||||
self.AccountMove.with_context(default_move_type="in_refund")
|
||||
) as invoice_form:
|
||||
invoice_form.invoice_date = self.today
|
||||
invoice_form.partner_id = self.partner_1
|
||||
invoice_form.journal_id = self.purchase_journal
|
||||
with invoice_form.invoice_line_ids.new() as line_form:
|
||||
line_form.product_id = self.product
|
||||
self.in_refund = invoice_form.save()
|
||||
self.in_refund.action_post()
|
||||
|
||||
self.general_move = self.AccountMove.create(
|
||||
{
|
||||
"journal_id": self.general_journal.id,
|
||||
"ref": "sample move",
|
||||
"line_ids": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"debit": 100.0,
|
||||
"credit": 0,
|
||||
"account_id": self.env["account.account"]
|
||||
.search([("user_type_id.type", "=", "other")], limit=1)
|
||||
.id,
|
||||
},
|
||||
),
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"debit": 0.0,
|
||||
"credit": 100.0,
|
||||
"account_id": self.env["account.account"]
|
||||
.search([("user_type_id.type", "=", "other")], limit=1)
|
||||
.id,
|
||||
},
|
||||
),
|
||||
],
|
||||
}
|
||||
)
|
||||
self.general_move.action_post()
|
||||
self.payment_term = self.env["account.payment.term"].create(
|
||||
{
|
||||
"name": "Pay in 2 installments",
|
||||
"line_ids": [
|
||||
# Pay 50% immediately
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"value": "percent",
|
||||
"value_amount": 50,
|
||||
},
|
||||
),
|
||||
# Pay the rest after 14 days
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"value": "balance",
|
||||
"days": 14,
|
||||
},
|
||||
),
|
||||
],
|
||||
}
|
||||
)
|
||||
self.currency_2 = self.env["res.currency"].create(
|
||||
{
|
||||
"name": "test",
|
||||
"symbol": "TEST",
|
||||
"rate_ids": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": fields.Date.today(),
|
||||
"rate": CURRENCY_RATE,
|
||||
},
|
||||
)
|
||||
],
|
||||
}
|
||||
)
|
||||
self.AccountMoveReversal = self.env["account.move.reversal"]
|
||||
|
||||
def test_01_account_move_transfer_partner(self):
|
||||
self.assertEqual(self.invoice_1.payment_state, "not_paid")
|
||||
self.assertEqual(self.invoice_2.payment_state, "not_paid")
|
||||
self.assertEqual(self.invoice_3.payment_state, "not_paid")
|
||||
all_invoices = self.invoice_1 + self.invoice_2 + self.invoice_3
|
||||
total_residual = sum(i.amount_residual for i in all_invoices)
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context({"active_ids": self.invoice_1.ids})
|
||||
)
|
||||
self.assertTrue(wizard_form.allow_edit_amount_to_transfer)
|
||||
wizard_form.amount_to_transfer = self.invoice_1.amount_residual + 1
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
wizard = wizard_form.save()
|
||||
with self.assertRaises(ValidationError):
|
||||
wizard.action_create_move()
|
||||
wizard.write(
|
||||
{
|
||||
"amount_to_transfer": 0,
|
||||
}
|
||||
)
|
||||
with self.assertRaises(ValidationError):
|
||||
wizard.action_create_move()
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context({"active_ids": all_invoices.ids})
|
||||
)
|
||||
with self.assertRaises(AssertionError):
|
||||
wizard_form.amount_to_transfer = total_residual + 1
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
self.assertFalse(wizard_form.allow_edit_amount_to_transfer)
|
||||
wizard = wizard_form.save()
|
||||
action = wizard.action_create_move()
|
||||
self.assertEqual(self.invoice_1.payment_state, "paid")
|
||||
self.assertEqual(self.invoice_2.payment_state, "paid")
|
||||
self.assertEqual(self.invoice_3.payment_state, "paid")
|
||||
new_moves = action.get("domain", []) and self.AccountMove.browse(
|
||||
action.get("domain", [])[0][2]
|
||||
)
|
||||
unreconciled_lines = new_moves.mapped("line_ids").filtered(
|
||||
lambda x: not x.reconciled
|
||||
)
|
||||
self.assertEqual(
|
||||
unreconciled_lines.mapped("partner_id").ids, self.partner_3.ids
|
||||
)
|
||||
|
||||
def test_02_account_move_transfer_partner(self):
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context({"active_ids": self.in_invoice.ids})
|
||||
)
|
||||
self.assertTrue(wizard_form.allow_edit_amount_to_transfer)
|
||||
current_residual_amount = self.invoice_1.amount_residual
|
||||
wizard_form.amount_to_transfer = current_residual_amount - 1
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
wizard = wizard_form.save()
|
||||
action = wizard.action_create_move()
|
||||
self.assertEqual(self.in_invoice.amount_residual, 1.0)
|
||||
new_moves = action.get("domain", []) and self.AccountMove.browse(
|
||||
action.get("domain", [])[0][2]
|
||||
)
|
||||
partner_1_aml = new_moves.mapped("line_ids").filtered(
|
||||
lambda x: x.partner_id.id == self.partner_1.id
|
||||
)
|
||||
self.assertEqual(abs(partner_1_aml.amount_residual), 0.0)
|
||||
partner_3_aml = new_moves.mapped("line_ids").filtered(
|
||||
lambda x: x.partner_id.id == self.partner_3.id
|
||||
)
|
||||
self.assertEqual(
|
||||
abs(partner_3_aml.amount_residual), current_residual_amount - 1
|
||||
)
|
||||
|
||||
def test_03_account_move_transfer_partner(self):
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context({"active_ids": self.out_refund.ids})
|
||||
)
|
||||
self.assertTrue(wizard_form.allow_edit_amount_to_transfer)
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
wizard = wizard_form.save()
|
||||
wizard.action_create_move()
|
||||
self.assertEqual(self.out_refund.amount_residual, 0.0)
|
||||
|
||||
def test_04_account_move_transfer_partner(self):
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context({"active_ids": self.in_refund.ids})
|
||||
)
|
||||
self.assertTrue(wizard_form.allow_edit_amount_to_transfer)
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
wizard = wizard_form.save()
|
||||
wizard.action_create_move()
|
||||
self.assertEqual(self.in_refund.amount_residual, 0.0)
|
||||
|
||||
def test_05_account_move_transfer_partner(self):
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context({"active_ids": self.general_move.ids})
|
||||
)
|
||||
self.assertTrue(wizard_form.allow_edit_amount_to_transfer)
|
||||
self.assertTrue(wizard_form.no_invoice_documents)
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
wizard = wizard_form.save()
|
||||
with self.assertRaises(ValidationError):
|
||||
wizard.action_create_move()
|
||||
|
||||
def test_06_account_move_transfer_partner(self):
|
||||
with Form(
|
||||
self.AccountMove.with_context(default_move_type="out_invoice")
|
||||
) as invoice_form:
|
||||
invoice_form.invoice_date = self.today
|
||||
invoice_form.partner_id = self.partner_2
|
||||
invoice_form.journal_id = self.sale_journal
|
||||
invoice_form.currency_id = self.currency_2
|
||||
with invoice_form.invoice_line_ids.new() as line_form:
|
||||
line_form.product_id = self.product
|
||||
self.invoice_with_payment_term = invoice_form.save()
|
||||
self.invoice_with_payment_term.action_post()
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context(
|
||||
{"active_ids": self.invoice_with_payment_term.ids}
|
||||
)
|
||||
)
|
||||
self.assertTrue(wizard_form.allow_edit_amount_to_transfer)
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
self.assertEqual(
|
||||
wizard_form.total_amount_due,
|
||||
self.invoice_with_payment_term.currency_id.compute(
|
||||
self.invoice_with_payment_term.amount_residual,
|
||||
self.env.company.currency_id,
|
||||
),
|
||||
)
|
||||
wizard_form.currency_id = self.currency_2
|
||||
self.assertEqual(
|
||||
wizard_form.total_amount_due,
|
||||
self.invoice_with_payment_term.amount_residual,
|
||||
)
|
||||
|
||||
def test_07_account_move_transfer_partner(self):
|
||||
with Form(
|
||||
self.AccountMove.with_context(default_move_type="out_invoice")
|
||||
) as invoice_form:
|
||||
invoice_form.invoice_date = self.today
|
||||
invoice_form.partner_id = self.partner_2
|
||||
invoice_form.journal_id = self.sale_journal
|
||||
invoice_form.invoice_payment_term_id = self.payment_term
|
||||
with invoice_form.invoice_line_ids.new() as line_form:
|
||||
line_form.product_id = self.product
|
||||
self.invoice_with_payment_term = invoice_form.save()
|
||||
self.invoice_with_payment_term.action_post()
|
||||
wizard_form = Form(
|
||||
self.wizard_model.with_context(
|
||||
{"active_ids": self.invoice_with_payment_term.ids}
|
||||
)
|
||||
)
|
||||
self.assertTrue(wizard_form.allow_edit_amount_to_transfer)
|
||||
wizard_form.destination_partner_id = self.partner_3
|
||||
wizard = wizard_form.save()
|
||||
action = wizard.action_create_move()
|
||||
self.assertEqual(self.invoice_with_payment_term.amount_residual, 0.0)
|
||||
new_moves = action.get("domain", []) and self.AccountMove.browse(
|
||||
action.get("domain", [])[0][2]
|
||||
)
|
||||
self.assertEqual(len(new_moves.mapped("line_ids")), 4)
|
||||
1
account_move_transfer_partner/wizard/__init__.py
Normal file
1
account_move_transfer_partner/wizard/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import wizard_account_move_transfer_partner
|
||||
@@ -0,0 +1,188 @@
|
||||
# Copyright 2022 ForgeFlow S.L.
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.tools import float_compare
|
||||
|
||||
|
||||
class WizardAccountMoveTransferPartner(models.TransientModel):
|
||||
|
||||
_name = "wizard.account.move.transfer.partner"
|
||||
_description = "Wizard to transfer due amount to another partner"
|
||||
|
||||
origin_partner_ids = fields.Many2many(
|
||||
comodel_name="res.partner", string="Origin Partner", readonly=True
|
||||
)
|
||||
currency_id = fields.Many2one(
|
||||
comodel_name="res.currency",
|
||||
string="Currency",
|
||||
default=lambda self: self.env.company.currency_id.id,
|
||||
)
|
||||
move_ids = fields.Many2many(
|
||||
comodel_name="account.move", string="Moves Selected", readonly=True
|
||||
)
|
||||
destination_partner_id = fields.Many2one(
|
||||
comodel_name="res.partner", string="Destination partner", required=True
|
||||
)
|
||||
journal_id = fields.Many2one(
|
||||
comodel_name="account.journal",
|
||||
string="Journal",
|
||||
required=True,
|
||||
domain=[("type", "=", "general")],
|
||||
default=lambda self: self.env["account.journal"]
|
||||
.search([("type", "=", "general")], limit=1)
|
||||
.id,
|
||||
)
|
||||
account_date = fields.Date(
|
||||
string="Account date", required=True, default=fields.Date.today()
|
||||
)
|
||||
total_amount_due = fields.Monetary(
|
||||
string="Total Amount Due",
|
||||
readonly=True,
|
||||
currency_field="currency_id",
|
||||
)
|
||||
allow_edit_amount_to_transfer = fields.Boolean(
|
||||
string="Allow edit amount to transfer?",
|
||||
readonly=True,
|
||||
)
|
||||
no_invoice_documents = fields.Boolean(string="No invoice documents?", readonly=True)
|
||||
amount_to_transfer = fields.Monetary(
|
||||
string="Amount to transfer",
|
||||
required=True,
|
||||
currency_field="currency_id",
|
||||
)
|
||||
|
||||
@api.onchange("currency_id", "account_date")
|
||||
def _onchange_currency_id(self):
|
||||
if self.currency_id:
|
||||
total_amount_due = 0
|
||||
for move in self.move_ids:
|
||||
if move._origin:
|
||||
invoice = move._origin
|
||||
else:
|
||||
invoice = move
|
||||
total_amount_due += invoice.currency_id.with_context(
|
||||
date=self.account_date or fields.Date.today()
|
||||
).compute(invoice.amount_residual, self.currency_id)
|
||||
self.total_amount_due = total_amount_due
|
||||
self.amount_to_transfer = self.total_amount_due
|
||||
|
||||
@api.model
|
||||
def default_get(self, fields_list):
|
||||
values = super(WizardAccountMoveTransferPartner, self).default_get(fields_list)
|
||||
moves = (
|
||||
self.env["account.move"]
|
||||
.browse(self.env.context.get("active_ids"))
|
||||
.filtered(lambda x: x.state == "posted")
|
||||
)
|
||||
values["origin_partner_ids"] = moves.mapped("partner_id").ids
|
||||
values["move_ids"] = moves.filtered(lambda x: x.is_invoice()).ids
|
||||
values["no_invoice_documents"] = (
|
||||
len(moves.filtered(lambda x: not x.is_invoice())) >= 1
|
||||
)
|
||||
due_amount = abs(sum(moves.mapped("amount_residual")))
|
||||
values["total_amount_due"] = due_amount
|
||||
values["amount_to_transfer"] = due_amount
|
||||
values["allow_edit_amount_to_transfer"] = len(moves) == 1
|
||||
return values
|
||||
|
||||
def action_create_move(self):
|
||||
am_model = self.env["account.move"]
|
||||
aml_model = self.env["account.move.line"].with_context(
|
||||
check_move_validity=False
|
||||
)
|
||||
if self.amount_to_transfer <= 0:
|
||||
raise ValidationError(_("Amount to transfer should be bigger than zero"))
|
||||
if (
|
||||
float_compare(
|
||||
self.amount_to_transfer,
|
||||
self.total_amount_due,
|
||||
precision_rounding=self.env.company.currency_id.rounding or 0.01,
|
||||
)
|
||||
== 1
|
||||
):
|
||||
raise ValidationError(
|
||||
_(
|
||||
"Amount to transfer %s should be equal or lower than total amount due %s"
|
||||
)
|
||||
% (self.amount_to_transfer, self.total_amount_due)
|
||||
)
|
||||
new_moves = am_model.browse()
|
||||
for move in self.move_ids:
|
||||
new_move = am_model.create(
|
||||
{
|
||||
"date": self.account_date,
|
||||
"journal_id": self.journal_id.id,
|
||||
"ref": _("Transfer amount due from %s") % (move.display_name),
|
||||
"state": "draft",
|
||||
"move_type": "entry",
|
||||
}
|
||||
)
|
||||
reconcilable_account = move.line_ids.mapped("account_id").filtered(
|
||||
lambda x: x.user_type_id.type in ("receivable", "payable")
|
||||
)
|
||||
lines = move.line_ids.filtered(
|
||||
lambda line: line.account_id == reconcilable_account
|
||||
and not line.reconciled
|
||||
)
|
||||
common_data = {
|
||||
"account_id": reconcilable_account.id,
|
||||
"move_id": new_move.id,
|
||||
"currency_id": self.currency_id.id,
|
||||
"ref": _("Transfer due amount from %s") % move.display_name,
|
||||
}
|
||||
amount_to_apply = (
|
||||
self.allow_edit_amount_to_transfer
|
||||
and self.amount_to_transfer
|
||||
or move.amount_residual
|
||||
)
|
||||
credit_aml = aml_model.browse()
|
||||
debit_aml = aml_model.browse()
|
||||
for line in lines:
|
||||
amount = min(amount_to_apply, abs(line.amount_residual))
|
||||
amount_to_apply -= amount
|
||||
amount_currency = (
|
||||
move.currency_id.id != self.currency_id.id and amount or 0.0
|
||||
)
|
||||
amount = self.currency_id.with_context(date=self.account_date).compute(
|
||||
amount, move.currency_id
|
||||
)
|
||||
credit_line_data = common_data.copy()
|
||||
debit_line_data = common_data.copy()
|
||||
credit_line_data.update(
|
||||
{
|
||||
"partner_id": move.is_inbound()
|
||||
and move.partner_id.id
|
||||
or move.is_outbound()
|
||||
and self.destination_partner_id.id,
|
||||
"credit": amount,
|
||||
"debit": 0.0,
|
||||
"amount_currency": -amount_currency,
|
||||
"date_maturity": line.date_maturity,
|
||||
}
|
||||
)
|
||||
debit_line_data.update(
|
||||
{
|
||||
"partner_id": move.is_inbound()
|
||||
and self.destination_partner_id.id
|
||||
or move.is_outbound()
|
||||
and move.partner_id.id,
|
||||
"credit": 0.0,
|
||||
"debit": amount,
|
||||
"amount_currency": amount_currency,
|
||||
"date_maturity": line.date_maturity,
|
||||
}
|
||||
)
|
||||
credit_aml += aml_model.create(credit_line_data)
|
||||
debit_aml += aml_model.create(debit_line_data)
|
||||
new_move.action_post()
|
||||
if move.is_inbound():
|
||||
for aml in credit_aml:
|
||||
move.js_assign_outstanding_line(aml.id)
|
||||
if move.is_outbound():
|
||||
for aml in debit_aml:
|
||||
move.js_assign_outstanding_line(aml.id)
|
||||
new_moves |= new_move
|
||||
action = self.env.ref("account.action_move_journal_line").read()[0]
|
||||
action.update({"domain": [("id", "in", new_moves.ids)]})
|
||||
return action
|
||||
@@ -0,0 +1,98 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<data>
|
||||
|
||||
<record id="wizard_account_move_transfer_partner_view_form" model="ir.ui.view">
|
||||
<field name="name">wizard_account_move_transfer_partner_view_form</field>
|
||||
<field name="model">wizard.account.move.transfer.partner</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="wizard_account_move_transfer_partner_form">
|
||||
<div
|
||||
class="alert alert-info"
|
||||
role="alert"
|
||||
style="margin-bottom:0px;"
|
||||
attrs="{'invisible': [('allow_edit_amount_to_transfer', '=', True)]}"
|
||||
>
|
||||
<span>You can edit <strong
|
||||
>Amount to transfer</strong> only when you apply this on one move</span>
|
||||
</div>
|
||||
<div
|
||||
class="alert alert-warning"
|
||||
role="alert"
|
||||
style="margin-bottom:0px;"
|
||||
attrs="{'invisible': [('move_ids', '!=', [])]}"
|
||||
>
|
||||
<span
|
||||
>You only can perform this operation on invoice/refund documents</span>
|
||||
</div>
|
||||
<sheet>
|
||||
<group>
|
||||
<group>
|
||||
<field
|
||||
name="origin_partner_ids"
|
||||
widget="many2many_tags"
|
||||
/>
|
||||
<field
|
||||
name="destination_partner_id"
|
||||
domain="[('id', 'not in', origin_partner_ids), ('parent_id', 'not in', origin_partner_ids)]"
|
||||
options="{'no_create': True}"
|
||||
/>
|
||||
<field
|
||||
name="currency_id"
|
||||
options="{'no_create': True}"
|
||||
/>
|
||||
</group>
|
||||
<group>
|
||||
<field name="account_date" />
|
||||
<field
|
||||
name="journal_id"
|
||||
options="{'no_create': True}"
|
||||
/>
|
||||
<field name="total_amount_due" force_save="1" />
|
||||
<field
|
||||
name="amount_to_transfer"
|
||||
force_save="1"
|
||||
attrs="{'readonly': [('allow_edit_amount_to_transfer', '!=', True)]}"
|
||||
/>
|
||||
</group>
|
||||
</group>
|
||||
<field
|
||||
name="move_ids"
|
||||
invisible="1"
|
||||
widget="many2many_tags"
|
||||
force_save="1"
|
||||
/>
|
||||
<field name="allow_edit_amount_to_transfer" invisible="1" />
|
||||
<field name="no_invoice_documents" invisible="1" />
|
||||
</sheet>
|
||||
<footer>
|
||||
<button
|
||||
string="Continue"
|
||||
name="action_create_move"
|
||||
type="object"
|
||||
class="btn-primary"
|
||||
/>
|
||||
<button
|
||||
string="Cancel"
|
||||
class="btn-secondary"
|
||||
special="cancel"
|
||||
/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record
|
||||
id="wizard_account_move_transfer_partner_view_form_action"
|
||||
model="ir.actions.act_window"
|
||||
>
|
||||
<field name="name">Transfer amount due to another partner</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">wizard.account.move.transfer.partner</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
<field name="binding_model_id" ref="account.model_account_move" />
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
@@ -0,0 +1 @@
|
||||
../../../../account_move_transfer_partner
|
||||
6
setup/account_move_transfer_partner/setup.py
Normal file
6
setup/account_move_transfer_partner/setup.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['setuptools-odoo'],
|
||||
odoo_addon=True,
|
||||
)
|
||||
Reference in New Issue
Block a user