diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2023-10-02 16:45:07 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2023-10-02 16:45:07 +0700 |
| commit | 9fe4b646f1b1cda3d704a66dfbca3e935e38d96b (patch) | |
| tree | d22e810cbd1f0b409378ff363fb4427f89702481 /indoteknik_custom/views | |
| parent | b0b5d0a094a1a87810b45bfcc52c17a82b73d3eb (diff) | |
Group by brand, sync to solr when validate stock picking, add new name function solr queue
Diffstat (limited to 'indoteknik_custom/views')
| -rw-r--r-- | indoteknik_custom/views/apache_solr_queue.xml | 1 | ||||
| -rwxr-xr-x | indoteknik_custom/views/product_template.xml | 1 | ||||
| -rw-r--r-- | indoteknik_custom/views/stock_move_line.xml | 24 |
3 files changed, 25 insertions, 1 deletions
diff --git a/indoteknik_custom/views/apache_solr_queue.xml b/indoteknik_custom/views/apache_solr_queue.xml index 9685ef06..13869b4c 100644 --- a/indoteknik_custom/views/apache_solr_queue.xml +++ b/indoteknik_custom/views/apache_solr_queue.xml @@ -28,6 +28,7 @@ <field name="res_model"/> <field name="res_id"/> <field name="function_name"/> + <field name="display_name" filter_domain="[('display_name', 'ilike', self)]"/> <filter string="Active Queue" name="active_queue" domain="[('execute_status', '=', False)]"/> </search> </field> diff --git a/indoteknik_custom/views/product_template.xml b/indoteknik_custom/views/product_template.xml index e09fee77..a3a23101 100755 --- a/indoteknik_custom/views/product_template.xml +++ b/indoteknik_custom/views/product_template.xml @@ -15,7 +15,6 @@ <field name="uom_po_id" position="after"> <field name="desc_update_solr" readonly="1" /> <field name="last_update_solr" readonly="1" /> - <field name="publish" /> </field> <page name="inventory" position="after"> <page string="Marketplace" name="marketplace"> diff --git a/indoteknik_custom/views/stock_move_line.xml b/indoteknik_custom/views/stock_move_line.xml new file mode 100644 index 00000000..757d2522 --- /dev/null +++ b/indoteknik_custom/views/stock_move_line.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <record id="stock_move_line_form_view_inherited" model="ir.ui.view"> + <field name="name">Stock Move Line</field> + <field name="model">stock.move.line</field> + <field name="inherit_id" ref="stock.view_move_line_form" /> + <field name="arch" type="xml"> + <field name="qty_done" position="after"> + <field name="manufacture"/> + </field> + </field> + </record> + + <record id="stock_move_line_tree_view_inherited" model="ir.ui.view"> + <field name="name">Stock Move Line</field> + <field name="model">stock.move.line</field> + <field name="inherit_id" ref="stock.view_move_line_tree" /> + <field name="arch" type="xml"> + <field name="product_id" position="after"> + <field name="manufacture"/> + </field> + </field> + </record> +</odoo> |
