[IMP] pre-commit: first run on whole repo

This commit is contained in:
Kevin Khao
2021-11-26 18:54:38 +03:00
parent a04b8980e1
commit 167aefee13
289 changed files with 6020 additions and 4170 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,46 +1,86 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2020 Akretion France (http://www.akretion.com/)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<odoo>
<record id="stock_valuation_xlsx_form" model="ir.ui.view">
<field name="name">stock.valuation.xlsx.form</field>
<field name="model">stock.valuation.xlsx</field>
<field name="arch" type="xml">
<field name="arch" type="xml">
<form string="Stock valuation XLSX">
<div name="help">
<p>The generated XLSX report has the valuation of stockable products located on the selected stock locations (and their childrens).</p>
<p
>The generated XLSX report has the valuation of stockable products located on the selected stock locations (and their childrens).</p>
</div>
<group name="setup">
<field name="state" invisible="1"/>
<field name="categ_ids" widget="many2many_tags"/>
<field name="warehouse_id"/>
<field name="location_id"/>
<field name="source" widget="radio"/>
<field name="inventory_id" attrs="{'invisible': [('source', '!=', 'inventory')], 'required': [('source', '=', 'inventory')]}"/>
<field name="stock_date_type" attrs="{'invisible': [('source', '!=', 'stock')], 'required': [('source', '=', 'stock')]}" widget="radio"/>
<field name="past_date" attrs="{'invisible': ['|', ('source', '!=', 'stock'), ('stock_date_type', '!=', 'past')], 'required': [('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}"/>
<field name="standard_price_date" attrs="{'invisible': [('source', '=', 'stock'), ('stock_date_type', '=', 'present')]}" widget="radio"/>
<field name="state" invisible="1" />
<field name="categ_ids" widget="many2many_tags" />
<field name="warehouse_id" />
<field name="location_id" />
<field name="source" widget="radio" />
<field
name="inventory_id"
attrs="{'invisible': [('source', '!=', 'inventory')], 'required': [('source', '=', 'inventory')]}"
/>
<field
name="stock_date_type"
attrs="{'invisible': [('source', '!=', 'stock')], 'required': [('source', '=', 'stock')]}"
widget="radio"
/>
<field
name="past_date"
attrs="{'invisible': ['|', ('source', '!=', 'stock'), ('stock_date_type', '!=', 'past')], 'required': [('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}"
/>
<field
name="standard_price_date"
attrs="{'invisible': [('source', '=', 'stock'), ('stock_date_type', '=', 'present')]}"
widget="radio"
/>
<field name="categ_subtotal" />
<field name="has_expiry_date" invisible="1"/>
<field name="split_by_lot" attrs="{'invisible': [('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}" groups="stock.group_production_lot"/>
<field name="split_by_location" attrs="{'invisible': [('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}"/>
<field name="apply_depreciation" groups="stock.group_production_lot" attrs="{'invisible': ['|', '|', ('split_by_lot', '=', False), ('has_expiry_date', '=', False), '&amp;', ('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}"/>
<field name="has_expiry_date" invisible="1" />
<field
name="split_by_lot"
attrs="{'invisible': [('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}"
groups="stock.group_production_lot"
/>
<field
name="split_by_location"
attrs="{'invisible': [('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}"
/>
<field
name="apply_depreciation"
groups="stock.group_production_lot"
attrs="{'invisible': ['|', '|', ('split_by_lot', '=', False), ('has_expiry_date', '=', False), '&amp;', ('source', '=', 'stock'), ('stock_date_type', '=', 'past')]}"
/>
</group>
<group name="done" states="done" string="Result">
<field name="export_file" filename="export_filename"/>
<field name="export_filename" invisible="1"/>
<field name="export_file" filename="export_filename" />
<field name="export_filename" invisible="1" />
</group>
<footer>
<button name="generate" type="object" states="setup"
class="btn-primary" string="Generate"/>
<button special="cancel" string="Cancel" class="btn-default" states="setup"/>
<button special="cancel" string="Close" class="btn-default" states="done"/>
<button
name="generate"
type="object"
states="setup"
class="btn-primary"
string="Generate"
/>
<button
special="cancel"
string="Cancel"
class="btn-default"
states="setup"
/>
<button
special="cancel"
string="Close"
class="btn-default"
states="done"
/>
</footer>
</form>
</field>
@@ -55,7 +95,7 @@
<!-- Replace native menu, to avoid user confusion -->
<record id="stock_account.menu_valuation" model="ir.ui.menu">
<field name="action" ref="stock_valuation_xlsx.stock_valuation_xlsx_action"/>
<field name="action" ref="stock_valuation_xlsx.stock_valuation_xlsx_action" />
<field name="name">Stock Valuation XLSX</field>
<field name="sequence">0</field>
</record>