Browse Source

Aug 22: [FIX] Bug Fixed 'dental_clinical_management'

pull/313/merge
Risvana Cybro 4 weeks ago
parent
commit
fdc9b7fb52
  1. 2
      dental_clinical_management/__manifest__.py
  2. 5
      dental_clinical_management/doc/RELEASE_NOTES.md
  3. 17
      dental_clinical_management/views/dental_patients_views.xml

2
dental_clinical_management/__manifest__.py

@ -21,7 +21,7 @@
################################################################################
{
'name': 'Dental Clinic Management',
'version': '17.0.1.0.1',
'version': '17.0.1.1.0',
'category': 'Services',
'summary': """Dental Clinic Management is to manage the entire dental clinic.""",
'description': """Dental Clinic Management software, dental clinics can

5
dental_clinical_management/doc/RELEASE_NOTES.md

@ -9,3 +9,8 @@ Initial commit for Dental Clinic Management
#### Version 17.0.1.0.1
#### BugFix
Fixed the issue of stock management of medicines
#### 18.08.2025
#### Version 17.0.1.1.0
#### BugFix
Fixed the issue in the patient form view.

17
dental_clinical_management/views/dental_patients_views.xml

@ -82,10 +82,6 @@
<xpath expr="//button[@name='%(purchase.act_res_partner_2_purchase_order)d']" position="attributes">
<attribute name="invisible">company_type == 'person'</attribute>
</xpath>
<!-- Invisible the smart button Vendor Bill on patient -->
<xpath expr="//button[@name='%(purchase.act_res_partner_2_supplier_invoices)d']" position="attributes">
<attribute name="invisible">company_type == 'person'</attribute>
</xpath>
<!-- Invisible the smart button On-Time Rate on patient -->
<xpath expr="//button[@icon='fa-truck']" position="attributes">
<attribute name="invisible">company_type == 'person'</attribute>
@ -113,4 +109,17 @@
</xpath>
</field>
</record>
<record id="dental_patients_view_form" model="ir.ui.view">
<field name="name">partner_view_buttons.inherit.dental.clinical.management</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="account.partner_view_buttons" />
<field name="arch" type="xml">
<!-- Invisible the smart button Vendor Bill on patient -->
<xpath expr="//button[@name='%(account.res_partner_action_supplier_bills)d']" position="attributes">-->
<attribute name="invisible">company_type == 'person'</attribute>
</xpath>
</field>
</record>
</odoo>
Loading…
Cancel
Save