[IMP] account_tax_balance: black, isort, prettier
parent
83eddc89c7
commit
4d16073ed9
|
@ -7,11 +7,11 @@ from psycopg2 import sql
|
||||||
|
|
||||||
|
|
||||||
def pre_init_hook(cr):
|
def pre_init_hook(cr):
|
||||||
""" Precreate move_type and fill with appropriate values to prevent
|
"""Precreate move_type and fill with appropriate values to prevent
|
||||||
a MemoryError when the ORM attempts to call its compute method on a large
|
a MemoryError when the ORM attempts to call its compute method on a large
|
||||||
amount of preexisting moves. Note that the order of the mapping is
|
amount of preexisting moves. Note that the order of the mapping is
|
||||||
important as one move can have move lines on accounts of multiple types
|
important as one move can have move lines on accounts of multiple types
|
||||||
and the move type is set in the order of precedence. """
|
and the move type is set in the order of precedence."""
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
logger.info("Add account_move.move_type column if it does not yet exist")
|
logger.info("Add account_move.move_type column if it does not yet exist")
|
||||||
cr.execute("ALTER TABLE account_move ADD COLUMN IF NOT EXISTS move_type VARCHAR")
|
cr.execute("ALTER TABLE account_move ADD COLUMN IF NOT EXISTS move_type VARCHAR")
|
||||||
|
|
|
@ -35,7 +35,7 @@ class AccountTax(models.Model):
|
||||||
)
|
)
|
||||||
|
|
||||||
def _account_tax_ids_with_moves(self):
|
def _account_tax_ids_with_moves(self):
|
||||||
""" Return all account.tax ids for which there is at least
|
"""Return all account.tax ids for which there is at least
|
||||||
one account.move.line in the context period
|
one account.move.line in the context period
|
||||||
for the user company.
|
for the user company.
|
||||||
|
|
||||||
|
|
|
@ -18,15 +18,15 @@
|
||||||
<field name="target_move" />
|
<field name="target_move" />
|
||||||
</group>
|
</group>
|
||||||
<footer>
|
<footer>
|
||||||
<button
|
<button
|
||||||
string="Open Taxes"
|
string="Open Taxes"
|
||||||
name="open_taxes"
|
name="open_taxes"
|
||||||
type="object"
|
type="object"
|
||||||
class="oe_highlight"
|
class="oe_highlight"
|
||||||
/>
|
/>
|
||||||
or
|
or
|
||||||
<button string="Cancel" class="oe_link" special="cancel" />
|
<button string="Cancel" class="oe_link" special="cancel" />
|
||||||
</footer>
|
</footer>
|
||||||
</form>
|
</form>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
Loading…
Reference in New Issue