diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-12-14 15:42:41 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-12-14 15:42:41 +0700 |
| commit | 1a68a5e600e2f7f90bee44144557f6af2f35618c (patch) | |
| tree | d0f3414e583284be53c5d089f2a938e35ba86ece /indoteknik_custom/views/automatic_purchase.xml | |
| parent | ce2b8502ab85419096dda2bffaffbec4a096a99f (diff) | |
add some field in automatic purchase
Diffstat (limited to 'indoteknik_custom/views/automatic_purchase.xml')
| -rw-r--r-- | indoteknik_custom/views/automatic_purchase.xml | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/indoteknik_custom/views/automatic_purchase.xml b/indoteknik_custom/views/automatic_purchase.xml index 0478304e..6f10653f 100644 --- a/indoteknik_custom/views/automatic_purchase.xml +++ b/indoteknik_custom/views/automatic_purchase.xml @@ -5,7 +5,9 @@ <field name="model">automatic.purchase</field> <field name="arch" type="xml"> <tree> + <field name="number"/> <field name="date_doc"/> + <field name="apo_type"/> <field name="vendor_id"/> <field name="description"/> <field name="notification" readonly="1"/> @@ -56,13 +58,14 @@ <div class="oe_button_box" name="button_box"/> <group> <group> - <field name="date_doc"/> + <field name="number"/> + <field name="apo_type"/> <field name="vendor_id"/> - <field name="responsible_id"/> <field name="description"/> - <field name="notification" readonly="1"/> </group> <group> + <field name="date_doc"/> + <field name="responsible_id"/> <div> <button name="generate_automatic_purchase" string="Generate Line" @@ -84,8 +87,17 @@ <page string="Matches"> <field name="purchase_match"/> </page> + <page string="Info" name="automatic_purchase_info"> + <group> + <field name="notification" readonly="1"/> + </group> + </page> </notebook> </sheet> + <div class="oe_chatter"> + <field name="message_follower_ids" widget="mail_followers"/> + <field name="message_ids" widget="mail_thread"/> + </div> </form> </field> </record> |
