Skip to content
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

[IMP] automated_auction: Improved estate by adding auction feature #503

Draft
wants to merge 10 commits into
base: 18.0
Choose a base branch
from

Conversation

ppch-odoo
Copy link

@ppch-odoo ppch-odoo commented Mar 3, 2025

  • Automated auction option added in config settings

  • Inherited estate.property and added some extra fields required for automated
    auction functionality

  • Inherited estate_property_from_view to display all fields of automated auction
    such as start auction button, auction details section

  • Added automated auction functionality such as create offer button,
    property offer form to add offer in selected property

  • Added auction_type filter in module

  • Inherited estate.property.offer and added related field required for automated
    auction functionality and overrided method create

  • Inherited estate_propety_list_view to disable accept/reject functionality

  • Added compute_highest_bidder which depends on offer_ids.price

  • Added timer in property detail template

  • Added auction_state to track auction process

  • Added widget for auction_state

  • Added cron to check whether auction ended or not

  • Added mailing feature, mail will be sent to all participants

  • Added Invoice button which will redirect to invoice related to property

    task - 4617486

- configuration added in estate module
- auto install of invoice on check invoice from settings of estate
- demo data added for property types and tags
- improve code formatting by reading code guidelines
- property image added to property model
- kanban view added with property image
- graph view and pivot view added for property page
- access rights and record rules are added for agent and manager
- chatter added
- logs in chatter when state of property changed
- reports added for property and salesperson
- controller added
- web page added with pagination and filter
- wizard added to make offer for multiple properties
- test cases added for real estate module
awesome_owl:
- Displayed a counter and extracted it into a sub-component
- Implemented sum of two counters using state management
- Created a simple Card component with slots and minimizable content
- Used markup for dynamic HTML rendering and added props validation
- Implemented core component concepts and a functional todo app
- Developed a todo list with adding and deleting functionality

awesome_dashboard:
- Built an interactive dashboard with real data and services
- Designed a new layout with quick navigation buttons
- Added dashboard items and integrated statistics from the server
- Cached network calls using a service for better performance
- Displayed statistics using a pie chart and enabled real-time updates
- Implemented lazy loading and made the dashboard generic and extensible
- Allowed dynamic addition and removal of dashboard items
- Automated auction option added in config settings
- Inherited estate.property and added some extra fields required for automated
  auction functionality
- Inherited estate_property_from_view to display all fields of automated auction
  such as start auction button, auction details section
- Added automated auction functionality such as create offer button,
  property offer form to add offer in selected property
@robodoo
Copy link

robodoo commented Mar 3, 2025

Pull request status dashboard

- Added auction_type filter in module
- Inherited estate.property.offer and added related field required for automated
  auction functionality and overrided method create
- Inherited estate_propety_list_view to disable accept/reject functionality
- Added compute_highest_bidder which depends on offer_ids.price
- Improved UI of estate website
- Added timer in property detail template
- Added auction_state to track auction process
- Added widget for auction_state
- Added cron to check whether auction ended or not
- Added mailing feature, mail will be sent to all participants
- Added Invoice button which will redirect to invoice related to property
- Start_time removed as it is not needed
Copy link

@bhra-odoo bhra-odoo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

small changes.
also add task id in pr description.

Comment on lines 54 to 58
property.write({
'buyer_id': property.highest_offer_bidder.id,
'selling_price': property.best_price,
'auction_state': 'done'
})

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
property.write({
'buyer_id': property.highest_offer_bidder.id,
'selling_price': property.best_price,
'auction_state': 'done'
})
property.auction_state = 'done'

i guess with action_accepted(), the buyer and selling price will be automatically set.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

Comment on lines 60 to 66
if not auction_ended_properties:
auction_ended_but_no_offers = self.search([
('end_time', '<', fields.Datetime.now()),
('state', '=', 'new')
])
for property in auction_ended_but_no_offers:
property.write({'auction_state': 'done'})

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why??

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logic updated
if auction ended but no offers then it's auction state will be template

@ppch-odoo ppch-odoo changed the title 18.0 imp estate auction ppch [IMP] automated_auction: Improved estate by adding auction feature Mar 7, 2025
- Updated code to enhance readability by using '' and .
- Updated logic of auto_accepted_offers
- Working on write method to work manually auction state change
- Write updated which will work on changing auction state
- code formatting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants