Temporal fix

This commit is contained in:
oscar alvarez 2023-10-24 13:20:09 -05:00
parent de0f32306d
commit c5cc82daa2
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ this repository contains the full copyright notices and license terms. -->
<field name="name">No Show / Cancelled</field>
<field name="sequence" eval="50"/>
<field name="domain" eval="['OR',
[('state', 'in', ['cancelled', 'no_show'])]
[('state', 'in', ['cancelled', 'not_show'])]
]" pyson="1"/>
<field name="count" eval="True"/>
<field name="act_window" ref="act_booking_form"/>

View File

@ -3,7 +3,7 @@ STATE_BOOKING = [
('offer', 'Offer'),
('confirmed', 'Confirmed'),
('cancelled', 'Cancelled'),
('no_show', 'No Show'),
('not_show', 'No Show'),
('finished', 'Finished'),
]