remove comment

This commit is contained in:
Raimon Esteve 2023-10-17 16:35:37 +02:00
parent 6ddd4168ba
commit d9150be5af
1 changed files with 0 additions and 6 deletions

View File

@ -544,12 +544,6 @@ class PlanProductLine(ModelSQL, ModelView, tree(separator='/')):
def __setup__(cls):
super(PlanProductLine, cls).__setup__()
cls._order.insert(0, ('sequence', 'ASC'))
# t = cls.__table__()
# cls._sql_constraints += [
# ('check_plan_parent', Check(t, (
# ( (t.parent != Null) & (t.plan == Null) ) | ( (t.parent == Null) & (t.plan != Null) ) )),
# 'product_cost_plan.msg_product_line_plan_parent'),
# ]
@staticmethod
def order_sequence(tables):