From 52740b3cce87473b4a8e0f371c39e88fc86d7f82 Mon Sep 17 00:00:00 2001 From: Dario Lodeiros Date: Sat, 8 Dec 2018 18:21:26 +0100 Subject: [PATCH] [IMP] default colors --- hotel_calendar/models/inherited_res_users.py | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/hotel_calendar/models/inherited_res_users.py b/hotel_calendar/models/inherited_res_users.py index 078c51ab0..7d675a464 100644 --- a/hotel_calendar/models/inherited_res_users.py +++ b/hotel_calendar/models/inherited_res_users.py @@ -81,27 +81,27 @@ class ResUsers(models.Model): 'calendar.event.type', string="Deny Calander Event Tags") - color_pre_reservation = fields.Char('Pre-reservation', default='#A4A4A4') - color_reservation = fields.Char('Confirmed Reservation ', default='#4E9DC4') - color_reservation_pay = fields.Char('Paid Reservation', default='#66CCFF') - color_stay = fields.Char('Checkin', default='#b40606') - color_stay_pay = fields.Char('Paid Checkin', default='#54d12b') - color_checkout = fields.Char('Checkout', default='#FF0000') + color_pre_reservation = fields.Char('Pre-reservation', default='#A09FC9') + color_reservation = fields.Char('Confirmed Reservation ', default='#7C7BAD') + color_reservation_pay = fields.Char('Paid Reservation', default='#7C7BAD') + color_stay = fields.Char('Checkin', default='#FF4040') + color_stay_pay = fields.Char('Paid Checkin', default='#82BF07') + color_checkout = fields.Char('Checkout', default='#7E7E7E') color_dontsell = fields.Char('Dont Sell', default='#000000') - color_staff = fields.Char('Staff', default='#FF9933') - color_to_assign = fields.Char('Ota Reservation to Assign', default='#DFFF00') - color_payment_pending = fields.Char('Payment Pending', default='#f70f0f') + color_staff = fields.Char('Staff', default='#C08686') + color_to_assign = fields.Char('Ota Reservation to Assign', default='#ED722E') + color_payment_pending = fields.Char('Payment Pending', default='#A24689') - color_letter_pre_reservation = fields.Char('Letter Pre-reservation', default='#000000') - color_letter_reservation = fields.Char('Letter Confirmed Reservation ', default='#000000') - color_letter_reservation_pay = fields.Char('Letter Paid Reservation', default='#000000') + color_letter_pre_reservation = fields.Char('Letter Pre-reservation', default='#FFFFFF') + color_letter_reservation = fields.Char('Letter Confirmed Reservation ', default='#FFFFFF') + color_letter_reservation_pay = fields.Char('Letter Paid Reservation', default='#FFFFFF') color_letter_stay = fields.Char('Letter Checkin', default='#FFFFFF') - color_letter_stay_pay = fields.Char('Letter Stay Pay', default='#000000') + color_letter_stay_pay = fields.Char('Letter Stay Pay', default='#FFFFFF') color_letter_checkout = fields.Char('Letter Checkout', default='#FFFFFF') color_letter_dontsell = fields.Char('Letter Dont Sell', default='#FFFFFF') - color_letter_staff = fields.Char('Letter Staff', default='#000000') - color_letter_to_assign = fields.Char('Letter Ota to Assign', default='#000000') - color_letter_payment_pending = fields.Char('Letter Payment Pending', default='#000000') + color_letter_staff = fields.Char('Letter Staff', default='#FFFFFF') + color_letter_to_assign = fields.Char('Letter Ota to Assign', default='#FFFFFF') + color_letter_payment_pending = fields.Char('Letter Payment Pending', default='#FFFFFF') def __init__(self, pool, cr): """ Override of __init__ to add access rights.