diff options
| author | HafidBuroiroh <hafidburoiroh09@gmail.com> | 2026-03-11 20:09:25 +0700 |
|---|---|---|
| committer | HafidBuroiroh <hafidburoiroh09@gmail.com> | 2026-03-11 20:09:25 +0700 |
| commit | 715a60d3dce76a253afd2b119e0e800a230dd24d (patch) | |
| tree | ba8bd1521c10ac78e45a6e6481b6d651a69fc606 /indoteknik_custom/views/sale_order_forecast.xml | |
| parent | 4a200ee4e0caf44e78273215b12c3655655f4273 (diff) | |
| parent | e6b6691f518a7400babdbd4b95541fb3d07f154d (diff) | |
<hafid> naekin sorcing job
Diffstat (limited to 'indoteknik_custom/views/sale_order_forecast.xml')
| -rw-r--r-- | indoteknik_custom/views/sale_order_forecast.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/indoteknik_custom/views/sale_order_forecast.xml b/indoteknik_custom/views/sale_order_forecast.xml new file mode 100644 index 00000000..8e1d13b4 --- /dev/null +++ b/indoteknik_custom/views/sale_order_forecast.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + + <record id="view_sale_forecast_coverage_tree" model="ir.ui.view"> + <field name="name">sale.forecast.coverage.tree</field> + <field name="model">sale.forecast.coverage</field> + <field name="arch" type="xml"> + <tree string="Sale Forecast Coverage"> + <field name="sale_id"/> + <field name="product_id"/> + <field name="so_qty"/> + <field name="reserved_qty"/> + <field name="forecast_qty"/> + <field name="document_in_name"/> + <field name="receipt_date"/> + </tree> + </field> + </record> + + <record id="action_sale_forecast_coverage" model="ir.actions.act_window"> + <field name="name">Sale Forecast Coverage</field> + <field name="res_model">sale.forecast.coverage</field> + <field name="view_mode">tree</field> + </record> + + <menuitem + id="menu_sale_forecast_coverage" + name="Forecast Coverage" + parent="sale.product_menu_catalog" + action="action_sale_forecast_coverage" + sequence="35" + /> + </data> +</odoo>
\ No newline at end of file |
