Compare commits

..

No commits in common. "5e58eb4baf99e03edc3c014e247cd3358d17e51b" and "95d6dfbf6adad5e845f12f5723798b930d2246b0" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -168,9 +168,9 @@ class PatentInfo(CommonBDModel):
APPLY_AREAS = ( APPLY_AREAS = (
('Domestic', '国内申请'), ('Domestic', '国内申请'),
('Foreign', '国外申请'), ('Foreign', '国外申请'),
('PCT', 'PCT申请'), (' PCT', 'PCT申请'),
) )
name = models.CharField('拟申请专利名称', max_length=100) name = models.CharField('拟申请专利名称', max_length=100)
author = models.CharField('发明人(设计人)', max_length=100) author = models.CharField('发明人(设计人)', max_length=100)
type = models.CharField('专利类型', max_length=50, choices=PATENT_TYPE_CHOICES, default='invention') type = models.CharField('专利类型', max_length=50, choices=PATENT_TYPE_CHOICES, default='invention')