This commit is contained in:
2026-01-18 23:00:29 +01:00
parent 9daa701a28
commit 8ae4aeb3e8
2 changed files with 2 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ class FreightBookingInfo(ModelSQL, ModelView):
t = Table('freight_booking_info')
query = t.select(
Literal(0).as_('create_uid'),
Literal(None).as_('create_uid'),
CurrentTimestamp().as_('create_date'),
Literal(None).as_('write_uid'),
Literal(None).as_('write_date'),
@@ -45,7 +45,7 @@ class FreightBookingInfo(ModelSQL, ModelView):
Column(t, 'NumberOfContainers').as_('container_count'),
Column(t, 'ShippingInstructionQuantity').as_('quantity'),
)
logger.info("*****QUERY*****:%s",query)
#logger.info("*****QUERY*****:%s",query)
return query
@classmethod

View File

@@ -10,5 +10,4 @@
<field name="carrier"/>
<field name="vessel"/>
<field name="container_count"/>
<field name="quantity"/>
</tree>