feat: srm-patent修改字段类型
This commit is contained in:
parent
355be71775
commit
d0493eb87b
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.12 on 2025-11-25 07:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('srm', '0007_auto_20251125_1454'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='patentrecord',
|
||||
name='status',
|
||||
field=models.CharField(blank=True, choices=[('not_disclosed', '未公开'), ('under_examination', '实审中'), ('first_office_action', '一通'), ('second_office_action', '二通'), ('rejected', '驳回'), ('reexamination', '复审'), ('authorized', '授权')], max_length=20, null=True, verbose_name='状态'),
|
||||
),
|
||||
]
|
||||
|
|
@ -77,6 +77,8 @@ class PatentRecord(CommonADModel):
|
|||
("reexamination", "复审"),
|
||||
("authorized", "授权")
|
||||
],
|
||||
null=True,
|
||||
blank=True,
|
||||
verbose_name="状态"
|
||||
)
|
||||
award_info = models.TextField(null=True, blank=True, verbose_name="报奖情况")
|
||||
|
|
|
|||
Loading…
Reference in New Issue