1

我目前有两个独立的模型(如下所示),它们适用于我的小规模/测试应用程序。但是,当有超过 5000 名客户通过 FK 下拉框进行搜索时,每次输入注释时都会很烦人。

我的问题是,无论如何我可以将 Note 模型放入我的 Customer 模型中吗?这样我就可以从我的客户模型中直接添加注释了吗?

#models.py
samples_to_customer = Table('samples_to_customer', Base.metadata,
  Column('customer_id', Integer, ForeignKey('customer.id')),
  Column('sample_id', Integer, ForeignKey('samples.id'))
  )

#Create a cusotmer model to store customer numbers

class Customer(Base):
    __tablename__ = 'customer'
    __acl__ = [
            (Allow, 'admin', ALL_PERMISSIONS),
            (Allow, 'saff', ('view', 'edit')),
        ]
    id = Column(Integer, primary_key=True)
    name = Column(Unicode, unique=True) #this will be the variable used to search the existing db
    customer_samples = relationship('Sample', secondary='samples_to_customer', backref='samples')
    sales_rep = Column(Integer, ForeignKey('rep.id'))
    rep = relationship('Rep', backref='rep')

    def __unicode__(self):
        return self.name

# This model will have its own entry view/page a user logs on and enters notes (according to a customer
# number) they then get stored/saved onto the Customers account
class Note(Base):
    __tablename__ = 'note'
    __acl__ = [
            (Allow, 'admin', ALL_PERMISSIONS),
            (Allow, 'staff', ('view', 'edit')),
        ]    
    id = Column(Integer, primary_key=True)
    name = Column(Unicode)
    pub_date = Column(Date)
    customer_no = Column(Integer, ForeignKey('customer.id'))
    customer = relationship('Customer', backref='notes')

    def __unicode__(self):
        return self.name
4

1 回答 1

1

反正我没发现要这样做。

但我对金字塔和形式化学还是很陌生。

我决定编写自己的管理/模型界面,让我可以使用金字塔视图和 jinja2 模板做我需要做的事情。不使用形式化学和/或javascript。

我来自 django,所以没有意识到编写自己的模型管理视图和模板是多么容易。

于 2012-03-21T13:38:04.750 回答