You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							184 lines
						
					
					
						
							7.5 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							184 lines
						
					
					
						
							7.5 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								###################################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#    Copyright (C) 2021-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
							 | 
						|
								#
							 | 
						|
								#    Author: AVINASH NK(<https://www.cybrosys.com>)
							 | 
						|
								#
							 | 
						|
								#    This program is free software: you can modify
							 | 
						|
								#    it under the terms of the GNU Affero General Public License (AGPL) as
							 | 
						|
								#    published by the Free Software Foundation, either version 3 of the
							 | 
						|
								#    License, or (at your option) any later version.
							 | 
						|
								#
							 | 
						|
								#    This program is distributed in the hope that it will be useful,
							 | 
						|
								#    but WITHOUT ANY WARRANTY; without even the implied warranty of
							 | 
						|
								#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
							 | 
						|
								#    GNU Affero General Public License for more details.
							 | 
						|
								#
							 | 
						|
								#    You should have received a copy of the GNU Affero General Public License
							 | 
						|
								#    along with this program.  If not, see <https://www.gnu.org/licenses/>.
							 | 
						|
								#
							 | 
						|
								###################################################################################
							 | 
						|
								
							 | 
						|
								from datetime import date, datetime
							 | 
						|
								
							 | 
						|
								from odoo import api, fields, models
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class SalonSequenceUpdater(models.Model):
							 | 
						|
								    _name = 'salon.sequence.updater'
							 | 
						|
								    _description = 'Salon Sequence Updater'
							 | 
						|
								
							 | 
						|
								    salon_sequence = fields.Char(string="Salon Sequence")
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class SalonChair(models.Model):
							 | 
						|
								    _name = 'salon.chair'
							 | 
						|
								    _description = 'Salon Chair'
							 | 
						|
								
							 | 
						|
								    name = fields.Char(
							 | 
						|
								        string="Chair", required=True,
							 | 
						|
								        default=lambda self: self.env['salon.sequence.updater'].browse(
							 | 
						|
								            1).salon_sequence or "Chair-1")
							 | 
						|
								    number_of_orders = fields.Integer(string="No.of Orders")
							 | 
						|
								    collection_today = fields.Float(string="Today's Collection")
							 | 
						|
								    user_id = fields.Many2one(
							 | 
						|
								        'res.users', string="User", readonly=True,
							 | 
						|
								        help="""You can select the user from the Users Tab. 
							 | 
						|
								        Last user from the Users Tab will be selected as the Current User.""")
							 | 
						|
								    date = fields.Datetime(string="Date", readonly=True)
							 | 
						|
								    user_line = fields.One2many(
							 | 
						|
								        'salon.chair.user', 'salon_chair_id', string="Users")
							 | 
						|
								    total_time_taken_chair = fields.Float(string="Time Reserved(Hrs)")
							 | 
						|
								    active_booking_chairs = fields.Boolean(string="Active booking chairs")
							 | 
						|
								    chair_created_user = fields.Integer(string="Salon Chair Created User",
							 | 
						|
								                                        default=lambda self: self._uid)
							 | 
						|
								
							 | 
						|
								    @api.model
							 | 
						|
								    def create(self, values):
							 | 
						|
								        """
							 | 
						|
								        add sequence for chair, start date and end date on creating record
							 | 
						|
								        """
							 | 
						|
								        sequence_code = 'salon.chair.sequence'
							 | 
						|
								        sequence_number = self.env['ir.sequence'].next_by_code(sequence_code)
							 | 
						|
								        self.env['salon.sequence.updater'].browse(1).write(
							 | 
						|
								            {'salon_sequence': sequence_number})
							 | 
						|
								        if 'user_line' in values.keys():
							 | 
						|
								            if values['user_line']:
							 | 
						|
								                date_changer = []
							 | 
						|
								                for elements in values['user_line']:
							 | 
						|
								                    date_changer.append(elements[2]['start_date'])
							 | 
						|
								                number = 0
							 | 
						|
								                for elements in values['user_line']:
							 | 
						|
								                    number += 1
							 | 
						|
								                    if len(values['user_line']) == number:
							 | 
						|
								                        break
							 | 
						|
								                    elements[2]['end_date'] = date_changer[number]
							 | 
						|
								                values['user_id'] = values['user_line'][len(
							 | 
						|
								                    (values['user_line'])) - 1][2]['user_id']
							 | 
						|
								                values['date'] = values['user_line'][len(
							 | 
						|
								                    (values['user_line'])) - 1][2]['start_date']
							 | 
						|
								        return super(SalonChair, self).create(values)
							 | 
						|
								
							 | 
						|
								    def write(self, values):
							 | 
						|
								        """
							 | 
						|
								        add sequence for chair, start date and end date on editing record
							 | 
						|
								        """
							 | 
						|
								        if 'user_line' in values.keys():
							 | 
						|
								            if values['user_line']:
							 | 
						|
								                date_changer = []
							 | 
						|
								                for elements in values['user_line']:
							 | 
						|
								                    if str(elements[1]).startswith('v'):
							 | 
						|
								                        date_changer.append(elements[2]['start_date'])
							 | 
						|
								                number = 0
							 | 
						|
								                num = 0
							 | 
						|
								                for records in self.user_line:
							 | 
						|
								                    if records.end_date is False:
							 | 
						|
								                        if date_changer:
							 | 
						|
								                            records.end_date = date_changer[0]
							 | 
						|
								                for elements in values['user_line']:
							 | 
						|
								                    number += 1
							 | 
						|
								                    if elements[2] is not False:
							 | 
						|
								                        num += 1
							 | 
						|
								                        if len(values['user_line']) == number:
							 | 
						|
								                            break
							 | 
						|
								                        elements[2]['end_date'] = date_changer[num]
							 | 
						|
								                values['user_id'] = values['user_line'][len(
							 | 
						|
								                    (values['user_line'])) - 1][2]['user_id']
							 | 
						|
								                values['date'] = values['user_line'][len(
							 | 
						|
								                    (values['user_line'])) - 1][2]['start_date']
							 | 
						|
								        return super(SalonChair, self).write(values)
							 | 
						|
								
							 | 
						|
								    def collection_today_updater(self):
							 | 
						|
								        """
							 | 
						|
								        function to update the collection on the day for each chair
							 | 
						|
								        """
							 | 
						|
								        salon_chair = self.env['salon.chair']
							 | 
						|
								        for values in self.search([]):
							 | 
						|
								            chair_obj = salon_chair.browse(values.ids)
							 | 
						|
								            invoiced_records = chair_obj.env['salon.order'].search(
							 | 
						|
								                [('stage_id', 'in', [3, 4]), ('chair_id', '=', chair_obj.id)])
							 | 
						|
								            total = 0
							 | 
						|
								            for rows in invoiced_records:
							 | 
						|
								                invoiced_date = str(rows.date)
							 | 
						|
								                invoiced_date = invoiced_date[0:10]
							 | 
						|
								                if invoiced_date == str(date.today()):
							 | 
						|
								                    total = total + rows.price_subtotal
							 | 
						|
								            chair_obj.collection_today = total
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class SalonChairUser(models.Model):
							 | 
						|
								    _name = 'salon.chair.user'
							 | 
						|
								    _description = 'Salon Chair User'
							 | 
						|
								
							 | 
						|
								    read_only_checker = fields.Boolean(string="Checker", default=False)
							 | 
						|
								    user_id = fields.Many2one('res.users', string="User", required=True)
							 | 
						|
								    start_date = fields.Datetime(
							 | 
						|
								        string="Start Date", default=fields.Datetime.now, required=True)
							 | 
						|
								    end_date = fields.Datetime(string="End Date", readonly=True, default=False)
							 | 
						|
								    salon_chair_id = fields.Many2one(
							 | 
						|
								        'salon.chair', string="Chair", required=True, ondelete='cascade',
							 | 
						|
								        index=True, copy=False)
							 | 
						|
								
							 | 
						|
								    @api.model
							 | 
						|
								    def create(self, val):
							 | 
						|
								        """
							 | 
						|
								        update records on adding new chair user
							 | 
						|
								        """
							 | 
						|
								        chairs = self.env['salon.chair'].search([])
							 | 
						|
								        all_active_users = []
							 | 
						|
								        for records in chairs:
							 | 
						|
								            if records.user_id:
							 | 
						|
								                all_active_users.append(records.user_id.id)
							 | 
						|
								                records.user_id.write({'user_salon_active': True})
							 | 
						|
								        users = self.env['res.users'].search(
							 | 
						|
								            [('id', 'not in', all_active_users)])
							 | 
						|
								        for records in users:
							 | 
						|
								            records.write({'user_salon_active': False})
							 | 
						|
								        val['read_only_checker'] = True
							 | 
						|
								        return super(SalonChairUser, self).create(val)
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class SalonService(models.Model):
							 | 
						|
								    _name = 'salon.service'
							 | 
						|
								    _description = 'Salon Service'
							 | 
						|
								
							 | 
						|
								    name = fields.Char(string="Name", required=True)
							 | 
						|
								    currency_id = fields.Many2one(
							 | 
						|
								        'res.currency', string='Currency', required=True,
							 | 
						|
								        default=lambda self: self.env.user.company_id.currency_id.id)
							 | 
						|
								    price = fields.Monetary(string="Price")
							 | 
						|
								    time_taken = fields.Float(
							 | 
						|
								        string="Time",
							 | 
						|
								        help="Approximate time required for this service in Hours")
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class SalonStage(models.Model):
							 | 
						|
								    _name = 'salon.stage'
							 | 
						|
								    _order = 'sequence'
							 | 
						|
								    _description = 'Salon Stage'
							 | 
						|
								
							 | 
						|
								    name = fields.Char(string="Name", required=True, translate=True)
							 | 
						|
								    sequence = fields.Integer('Sequence', default=1,
							 | 
						|
								                              help="Used to order stages. Lower is better.")
							 | 
						|
								
							 |