8 lines
134 B
Python
8 lines
134 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from trytond.pool import Pool
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
module='cashbook', type_='model')
|