Tank_0216 2022-08-16 23:56 采纳率: 50%
浏览 44
已结题

ModelForm添加外键表单中的多个字段

使用Django SutModelForm自动创建form实例化对象后,只关联了设置外键的另一个模型ProductModelForm中的字段(product_model),SutModelForm怎么添加另一个模型ProductModelForm中的多个字段(product_type和product_factory)到 form = SutModelForm()中

class ProductInfo(models.Model):
    product_model = models.CharField(verbose_name="产品型号", max_length=32)
    product_name = models.CharField(verbose_name="产品名称", max_length=32)
    product_factory = models.CharField(verbose_name="生产厂家", max_length=32)
    # 产品类型
    type_choice = {
        (1, '动态仪器'),
        (2, '振动传感器'),
        (3, '位移传感器'),
        (4, '压力传感器'),
    }
    type = models.SmallIntegerField(verbose_name="产品类型", choices=type_choice, default=1)

    def __str__(self):
        return self.product_model

class SutInfo(models.Model):
    """样品信息"""
    entrust_num = models.ForeignKey(verbose_name="合同编号", to="EntrustInfo", to_field="entrust_id",
                                    on_delete=models.CASCADE)
    deliver_choice = {
        (1, "送样上门"),
        (2, "快递"),
    }
    deliver = models.SmallIntegerField(verbose_name="收样方式", choices=deliver_choice, default=1)
    type = models.ForeignKey(verbose_name="样品型号", to="ProductInfo", to_field="id",
                             on_delete=models.CASCADE)
    sn = models.CharField(verbose_name="出厂编号", max_length=32)
    manage_sn = models.CharField(verbose_name="管理编号", max_length=32)
    sample_sn = models.CharField(verbose_name="样品编号", max_length=14)
    receive_date = models.DateTimeField(verbose_name="收样日期")
    apparent_choice = {
        (1, '完好'),
        (2, '锈蚀严重'),
        (3, '破损'),
    }
    apparent = models.SmallIntegerField(verbose_name="外观状态", choices=apparent_choice, default=1)

img

比如在这个对话框里不止显示ProductInfo中的product_model产品型号,增加显示ProductInfo中的product_factory 。

  • 写回答

1条回答 默认 最新

  • 我辈李想 Python领域优质创作者 2022-08-17 17:11
    关注

    class ProductInfo(models.Model):
    product_model = models.CharField(verbose_name="产品型号", max_length=32)
    product_name = models.CharField(verbose_name="产品名称", max_length=32)
    product_factory = models.CharField(verbose_name="生产厂家", max_length=32)
    # 产品类型
    type_choice = {
    (1, '动态仪器'),
    (2, '振动传感器'),
    (3, '位移传感器'),
    (4, '压力传感器'),
    }
    type = models.SmallIntegerField(verbose_name="产品类型", choices=type_choice, default=1)

    def __str__(self):
        return self.product_model+ self.product_name + self.product_factory 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 8月28日
  • 已采纳回答 8月20日
  • 创建了问题 8月16日

悬赏问题

  • ¥15 软件定义网络mininet和onos控制器问题
  • ¥15 微信小程序 用oss下载 aliyun-oss-sdk-6.18.0.min client报错
  • ¥15 ArcGIS批量裁剪
  • ¥15 labview程序设计
  • ¥15 为什么在配置Linux系统的时候执行脚本总是出现E: Failed to fetch http:L/cn.archive.ubuntu.com
  • ¥15 Cloudreve保存用户组存储空间大小时报错
  • ¥15 伪标签为什么不能作为弱监督语义分割的结果?
  • ¥15 编一个判断一个区间范围内的数字的个位数的立方和是否等于其本身的程序在输入第1组数据后卡住了(语言-c语言)
  • ¥15 Mac版Fiddler Everywhere4.0.1提示强制更新
  • ¥15 android 集成sentry上报时报错。