13 lines
316 B
Python
13 lines
316 B
Python
"""
|
|
Account module: stub to fulfill the Account toon.dc Distributed Class
|
|
This is a class Roger needs for the server to be able to display these values
|
|
appropriately in the db web interface.
|
|
"""
|
|
|
|
import DistributedObject
|
|
|
|
class Account(DistributedObject.DistributedObject):
|
|
def __init__(self, cr):
|
|
pass
|
|
|