콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
8337 화면

I have an entity "appointment" with a date_appointment attribute. I have also created a Calendar view for that appointment. An appointment should never be scheduled on weekends, so I have disable those days in odoo datepicker (in the doem view). But when I clic on any Satursday or sunday in the Calendar view it shows the form view where I can create an appointment for that day. Is there any way I can disable those days in Odoo Calendar, so the user cannot clic on any weekend an create appointments. I have already disable the quick_add option

<record id="appointment_view_calendar" model="ir.ui.view">
    <field name="name">appointment.view.calendar</field>
    <field name="model">tico_hospital.appointment</field>
    <field name="arch" type="xml">
        <calendar string="Consultas programadas" mode="week" date_start="date_appointment" quick_add="False" color="patient_id">
            <field name="patient_id"/>
            <field name="reason"/>         
        </calendar>
    </field>
</record>  
아바타
취소
베스트 답변

Hi,

For disabling particular days from the odoo date-picker, you can achieve it like this,

<field name="appointment_date" options='{"datepicker": {"daysOfWeekDisabled": [5, 6]}}'/>


See more at: Disable Selection Of Particular Days From Odoo DatePicker - Date Field

Thanks

아바타
취소

Hi, how about disabling a specific time of a date? I don't need to disable a full date. Any ideas ?

관련 게시물 답글 화면 활동
0
11월 20
3921
1
8월 15
8837
1
7월 25
620
2
6월 25
1008
1
5월 25
2550