account_invoice_move.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <record id="invoice_move_line_edit" model="ir.ui.view">
  5. <field name="name">invoice.move.line.edit</field>
  6. <field name="model">account.invoice</field>
  7. <field name="inherit_id" ref="account.invoice_form"/>
  8. <field name="arch" type="xml">
  9. <notebook>
  10. <page string="Seguimiento de Pagos">
  11. <group col="4" class="table-bordered" >
  12. <group >
  13. <field name="state_move_line" invisible="1"/>
  14. <label for="actualizar_move_line" string="Actualizar Monto de las Cuotas "/>
  15. <button name="update_ammount_move" id="actualizar_move_line" type="object" string="Aceptar"
  16. attrs="{'invisible': ['|','|',('state_move_line','!=', False), ('state','!=','open'), ('sent','=',True)]}"
  17. help="Actualizar los monto de las cuotas (Monto del saldo / cantidad de Cuota)"
  18. class="oe_button oe_form_button oe_highlight col-md-8 col-xs-12 center"/>
  19. </group>
  20. <group>
  21. <!-- <field name="date_due_new" string="Nueva fecha de Vencimientos"/> -->
  22. <!-- <label for="actualizar_date_due" string="Actualizar Fecha de Vencimientos"/> -->
  23. <!-- <button name="Update_date_due_move" id="actualizar_date_due" type="object" string="Aceptar"
  24. help="Cambiara Automaticamente la Fecha de vencimientos de las cuota Pendiente"
  25. class="oe_button oe_form_button oe_highlight col-md-8 col-xs-12" /> -->
  26. </group>
  27. </group>
  28. <!-- tree -->
  29. <field name="move_line_debt" >
  30. <tree string="Account Move line" editable="bottom" create="false" delete="false" >
  31. <!-- colors="red:(not date_maturity or date_maturity&lt;=current_date) and result&gt;0"> -->
  32. <!-- <field name="date" readonly="True"/> -->
  33. <field name="date_maturity" readonly="True"/>
  34. <field name="reconcile_partial_id" readonly="True"/>
  35. <!-- <field name="result" readonly="True" string=""/> -->
  36. <!-- <field name="amount_residual" string="Saldo $"/> -->
  37. <!-- <field name="amount_currency" string="Saldo ₲"/> -->
  38. <field name="debit"/>
  39. </tree>
  40. </field>
  41. </page>
  42. </notebook>
  43. </field>
  44. </record>
  45. </data>
  46. </openerp>