Bug col_width

This commit is contained in:
2026-07-19 17:32:54 +02:00
parent 0272fc70bc
commit c655427be5
6 changed files with 201 additions and 28 deletions

View File

@@ -1,11 +1,12 @@
from trytond.pool import Pool
from . import automation,rules,freight_booking,cron #, document
def register():
Pool.register(
automation.AutomationDocument,
rules.AutomationRuleSet,
freight_booking.FreightBookingInfo,
cron.Cron,
cron.AutomationCron,
module='automation', type_='model')
from trytond.pool import Pool
from . import automation,rules,freight_booking,booking_report,cron #, document
def register():
Pool.register(
automation.AutomationDocument,
rules.AutomationRuleSet,
freight_booking.FreightBookingInfo,
booking_report.FreightBookingShipmentReport,
cron.Cron,
cron.AutomationCron,
module='automation', type_='model')