Skip to content

[IMP] academic_sale_subscription: enhance quick create form with stud… #275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion academic_sale_subscription/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Academic Sale Subscription",
"version": "18.0.1.4.0",
"version": "18.0.1.5.0",
"sequence": 14,
"summary": "",
"author": "ADHOC SA",
Expand Down
13 changes: 13 additions & 0 deletions academic_sale_subscription/views/crm_lead_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,17 @@
</xpath>
</field>
</record>

<record id="quick_create_opportunity_form" model="ir.ui.view">
<field name="name">crm.lead.form.quick_create</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.quick_create_opportunity_form"/>
<field name="arch" type="xml">
<field name="name" position="attributes">
<attribute name="string">Student's name</attribute>
<attribute name="placeholder">Fill in the student's name</attribute>
</field>
</field>
</record>

</odoo>