如何使用 django mptt?

发布于 2024-07-12 09:34:51 字数 505 浏览 13 评论 0原文

我有一个模型:

class Company(models.Model):
    name = models.CharField( max_length=100)
    parent = models.ForeignKey('self', null=True, blank=True, related_name='children')
mptt.register(Company, order_insertion_by=['name'])

那么

class Financials(models.Model):
    year = models.IntegerField()
    revenue = models.DecimalField(max_digits = 10, decimal_places = 2)

如何将 Financials 作为子项添加到 mptt 树结构中的 Company 中?

I have a model:

class Company(models.Model):
    name = models.CharField( max_length=100)
    parent = models.ForeignKey('self', null=True, blank=True, related_name='children')
mptt.register(Company, order_insertion_by=['name'])

and

class Financials(models.Model):
    year = models.IntegerField()
    revenue = models.DecimalField(max_digits = 10, decimal_places = 2)

So how can I add Financials as a child to Company in the mptt tree structure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑,眼淚并存 2024-07-19 09:34:51

我不太明白你的问题。 一棵树存储一种类型的对象,在您的例子中是 Company。 要将财务链接到公司,只需添加从财务到公司的外键。

如果这没有帮助,请扩展您的问题,向我们提供有关您想要实现的目标的更多详细信息。

I don't quite follow your question. A tree stores one type of object, in your case Company. To link Financials to Company just add a foreign key from Financials to Company.

If this doesn't help please expand your question to give us some more detail about what you are trying to achieve.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文