-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
base: 18.0
Are you sure you want to change the base?
Conversation
- 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
- 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
There was a problem hiding this 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.
automated_auction/models/property.py
Outdated
property.write({ | ||
'buyer_id': property.highest_offer_bidder.id, | ||
'selling_price': property.best_price, | ||
'auction_state': 'done' | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
automated_auction/models/property.py
Outdated
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'}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why??
There was a problem hiding this comment.
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
automated_auction/static/src/auction_state_widget/auction_state_widget.js
Outdated
Show resolved
Hide resolved
automated_auction/static/src/auction_state_widget/auction_state_widget.js
Outdated
Show resolved
Hide resolved
- 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
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