fix : 新增外部监督检测 告知单为空

This commit is contained in:
zty 2024-07-08 15:09:40 +08:00
parent f8bd494144
commit 67eb4d8031
1 changed files with 2 additions and 2 deletions

View File

@ -295,6 +295,6 @@ class Oinspect(CommonBDModel):
date_inspect = models.DateField('检查日期')
result = models.TextField('检查结果', null=True, blank=True, default='')
result_date = models.DateField('检查结果日期', null=True, blank=True, default='')
notification_form = models.CharField('检查通知单', max_length=100, null=True)
result_form = models.CharField('检查结果告知单', max_length=100, null=True)
notification_form = models.CharField('检查通知单', max_length=100, blank=True, null=True)
result_form = models.CharField('检查结果告知单', max_length=100, blank=True, null=True)
task2do = models.ForeignKey('supervision.task2do', verbose_name= '关联任务执行', on_delete=models.SET_NULL, null=True, blank=True)