-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FJG: merge awesomefoodcoops/9.0 cd42c279612a7d1b94be9a932d5a1676404e18d6
(missing dependcies)
- Loading branch information
fjg
committed
Jan 28, 2021
1 parent
02644b4
commit 313281f
Showing
173 changed files
with
10,803 additions
and
1,384 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
22 changes: 10 additions & 12 deletions
22
account_asset_management_xlsx/report/report_account_asset_xlsx.xml
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 |
---|---|---|
@@ -1,13 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<openerp> | ||
<data> | ||
<report | ||
id="report_account_asset_xlsx" | ||
model="account.asset.xlsx.wizard" | ||
name="report_account_asset_xlsx" | ||
file="report_account_asset_xlsx" | ||
report_type="xlsx" | ||
string="Account Asset Report" | ||
/> | ||
</data> | ||
</openerp> | ||
<odoo> | ||
<report | ||
id="report_account_asset_xlsx" | ||
model="account.asset.xlsx.wizard" | ||
name="report_account_asset_xlsx" | ||
file="report_account_asset_xlsx" | ||
report_type="xlsx" | ||
string="Account Asset Report" | ||
/> | ||
</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
76 changes: 37 additions & 39 deletions
76
account_asset_management_xlsx/wizard/account_asset_xlsx_wizard.xml
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 |
---|---|---|
@@ -1,43 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
|
||
<openerp> | ||
<data> | ||
<record id="view_account_asset_xlsx_wizard" model="ir.ui.view"> | ||
<field name="name">view.account.asset.xlsx.wizard</field> | ||
<field name="model">account.asset.xlsx.wizard</field> | ||
<field name="arch" type="xml"> | ||
<form string="Account Asset Xlsx Wizard"> | ||
<group col="4"> | ||
<field name="from_date" /> | ||
<field name="to_date" /> | ||
<field name="asset_state" /> | ||
<field name="target_move" widget="radio"/> | ||
</group> | ||
<group> | ||
<field name="asset_category_ids" options="{'no_create_edit': True, 'no_quick_create': True}"/> | ||
</group> | ||
<footer> | ||
<button name="export_report" string="Export" type="object" class="btn btn-primary"/> | ||
<button special="cancel" string="Cancel" class="btn btn-danger"/> | ||
</footer> | ||
</form> | ||
</field> | ||
</record> | ||
<odoo> | ||
<record id="view_account_asset_xlsx_wizard" model="ir.ui.view"> | ||
<field name="name">view.account.asset.xlsx.wizard</field> | ||
<field name="model">account.asset.xlsx.wizard</field> | ||
<field name="arch" type="xml"> | ||
<form string="Account Asset Xlsx Wizard"> | ||
<group col="4"> | ||
<field name="from_date" invisible="1"/> | ||
<field name="to_date" /> | ||
<field name="asset_state" /> | ||
<field name="target_move" widget="radio"/> | ||
</group> | ||
<group> | ||
<field name="asset_category_ids" options="{'no_create_edit': True, 'no_quick_create': True}"/> | ||
</group> | ||
<footer> | ||
<button name="export_report" string="Export" type="object" class="btn btn-primary"/> | ||
<button special="cancel" string="Cancel" class="btn btn-danger"/> | ||
</footer> | ||
</form> | ||
</field> | ||
</record> | ||
|
||
<record id="action_account_asset_xlsx_wizard" model="ir.actions.act_window"> | ||
<field name="name">Export Account Asset Report</field> | ||
<field name="res_model">account.asset.xlsx.wizard</field> | ||
<field name="view_type">form</field> | ||
<field name="target">new</field> | ||
<field name="view_id" ref="view_account_asset_xlsx_wizard"/> | ||
</record> | ||
<record id="action_account_asset_xlsx_wizard" model="ir.actions.act_window"> | ||
<field name="name">Export Account Asset Report</field> | ||
<field name="res_model">account.asset.xlsx.wizard</field> | ||
<field name="view_type">form</field> | ||
<field name="target">new</field> | ||
<field name="view_id" ref="view_account_asset_xlsx_wizard"/> | ||
</record> | ||
|
||
<menuitem | ||
id="open_account_asset_xlsx_wizard" | ||
action="action_account_asset_xlsx_wizard" | ||
name="Asset Report Xlsx" | ||
parent="account.account_reports_management_menu" | ||
sequence="100" | ||
/> | ||
</data> | ||
</openerp> | ||
<menuitem | ||
id="open_account_asset_xlsx_wizard" | ||
action="action_account_asset_xlsx_wizard" | ||
name="Asset Report Xlsx" | ||
parent="account.account_reports_management_menu" | ||
sequence="100" | ||
/> | ||
</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
Oops, something went wrong.