wipo-gbd-transformation 1.1.51__py3-none-any.whl → 1.1.53__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wipo-gbd-transformation might be problematic. Click here for more details.
- gbdtransformation/.DS_Store +0 -0
- gbdtransformation/brands/istm/filters.py +1 -2
- gbdtransformation/brands/lktm/__init__.py +5 -0
- gbdtransformation/brands/lktm/filters.py +83 -0
- gbdtransformation/brands/lktm/schema +87 -0
- gbdtransformation/brands/lktm/template.yml +1 -0
- gbdtransformation/brands/lktm/tests/__init__.py +0 -0
- gbdtransformation/brands/qatm/__init__.py +5 -0
- gbdtransformation/brands/qatm/filters.py +81 -0
- gbdtransformation/brands/qatm/schema +87 -0
- gbdtransformation/brands/qatm/template.yml +1 -0
- gbdtransformation/brands/qatm/tests/__init__.py +0 -0
- gbdtransformation/brands/vntm/filters.py +1 -3
- gbdtransformation/designs/alid/filters.py +13 -1
- gbdtransformation/designs/bgid/__init__.py +5 -0
- gbdtransformation/designs/bgid/filters.py +91 -0
- gbdtransformation/designs/bgid/schema +106 -0
- gbdtransformation/designs/bgid/template.yml +169 -0
- gbdtransformation/designs/bnid/filters.py +13 -1
- gbdtransformation/designs/bwid/filters.py +13 -1
- gbdtransformation/designs/crid/filters.py +14 -1
- gbdtransformation/designs/cuid/filters.py +14 -1
- gbdtransformation/designs/egid/filters.py +14 -1
- gbdtransformation/designs/filters.py +10 -3
- gbdtransformation/designs/idid/filters.py +14 -1
- gbdtransformation/designs/ipas/filters.py +83 -0
- gbdtransformation/designs/ipas/template.yml +15 -15
- gbdtransformation/designs/joid/filters.py +14 -1
- gbdtransformation/designs/keid/filters.py +14 -1
- gbdtransformation/designs/khid/filters.py +14 -1
- gbdtransformation/designs/laid/filters.py +13 -1
- gbdtransformation/designs/mnid/filters.py +14 -1
- gbdtransformation/designs/myid/filters.py +13 -1
- gbdtransformation/designs/phid/filters.py +13 -1
- gbdtransformation/designs/sgid/filters.py +14 -1
- gbdtransformation/designs/thid/filters.py +13 -1
- gbdtransformation/designs/tnid/filters.py +13 -1
- gbdtransformation/designs/vnid/filters.py +13 -1
- gbdtransformation/designs/woid/filters.py +21 -16
- gbdtransformation/designs/woid/template.yml +11 -2
- gbdtransformation/designs/xxid/template.yml +10 -4
- gbdtransformation/execs.py +36 -3
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/METADATA +4 -7
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/RECORD +48 -33
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/WHEEL +1 -1
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/entry_points.txt +1 -1
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/LICENSE.md +0 -0
- {wipo_gbd_transformation-1.1.51.dist-info → wipo_gbd_transformation-1.1.53.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
{% from 'navigation.tmpl' import match %}
|
|
2
|
+
|
|
3
|
+
{% call(header) match('DesignTransactionBody.TransactionContentDetails', Transaction) %}
|
|
4
|
+
|
|
5
|
+
{% call(design) match('TransactionData.DesignDetails.Design', header) %}
|
|
6
|
+
{% set design_count = design | get_designs_count(header) %}
|
|
7
|
+
{% set design_pos = design | get_designs_pos(header) %}
|
|
8
|
+
{% set kind = design | translate_kind(header) %}
|
|
9
|
+
type: 'DESIGN'
|
|
10
|
+
subtype: 'OPEN'
|
|
11
|
+
designGrouping: 'MULTIPLE'
|
|
12
|
+
designsCount: {{ design_count }}
|
|
13
|
+
|
|
14
|
+
kind:
|
|
15
|
+
- {{kind}}
|
|
16
|
+
{{ design }}
|
|
17
|
+
registrationOfficeCode: {{ design.RegistrationOfficeCode}}
|
|
18
|
+
designatedCountries:
|
|
19
|
+
- BG
|
|
20
|
+
reference:
|
|
21
|
+
{% if header | is_international %}
|
|
22
|
+
registration:
|
|
23
|
+
- number: {{ design.ApplicationNumber | get_ir_refnum }}
|
|
24
|
+
office: WO
|
|
25
|
+
{% endif %}
|
|
26
|
+
{% if not kind == 'Industrial Design' %}
|
|
27
|
+
registration:
|
|
28
|
+
- number: {{ design.RegistrationNumber }}
|
|
29
|
+
{% endif %}
|
|
30
|
+
|
|
31
|
+
{% set idstatus = design | translate_status %}
|
|
32
|
+
{% set appdate = design.ApplicationDate | get_appdate(design.ApplicationNumber) %}
|
|
33
|
+
|
|
34
|
+
st13: {{ design.ApplicationNumber | parseForSt13(design) | st13(design.RegistrationOfficeCode, design_pos, appdate=appdate) }}
|
|
35
|
+
|
|
36
|
+
applicationNumber: {{ design.ApplicationNumber }}
|
|
37
|
+
applicationDate: {{ design.ApplicationDate }}
|
|
38
|
+
registrationNumber: {{ design.RegistrationNumber }}
|
|
39
|
+
registrationDate: {{ design.RegistrationDate }}
|
|
40
|
+
publicationDate: {{ design.PublicationDate }}
|
|
41
|
+
expiryDate: {{ design.ExpiryDate }}
|
|
42
|
+
|
|
43
|
+
applicationLanguageCode: BG
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
applicants:
|
|
47
|
+
{% call(applicant) match('ApplicantDetails.Applicant', design) %}
|
|
48
|
+
- identifier: {{ applicant.ApplicantIdentifier }}
|
|
49
|
+
{% call(details) match('ApplicantAddressBook.FormattedNameAddress.Name.FormattedName', applicant) %}
|
|
50
|
+
{% if details.OrganizationName %}
|
|
51
|
+
kind: 'organization'
|
|
52
|
+
fullName:
|
|
53
|
+
- languageCode: BG
|
|
54
|
+
text: {{ details.OrganizationName }}
|
|
55
|
+
{% else %}
|
|
56
|
+
kind: 'person'
|
|
57
|
+
fullName:
|
|
58
|
+
- languageCode: BG
|
|
59
|
+
text: {{ details | format_name }}
|
|
60
|
+
firstName:
|
|
61
|
+
- languageCode: BG
|
|
62
|
+
text: {{ details.FirstName}}
|
|
63
|
+
lastName:
|
|
64
|
+
- languageCode: BG
|
|
65
|
+
text: {{ details.LastName}}
|
|
66
|
+
middleName:
|
|
67
|
+
- languageCode: BG
|
|
68
|
+
text: {{ details.MiddleName}}
|
|
69
|
+
{% endif %}
|
|
70
|
+
{% endcall %}
|
|
71
|
+
{% call(address) match('ApplicantAddressBook.FormattedNameAddress.Address', applicant) %}
|
|
72
|
+
fullAddress:
|
|
73
|
+
- languageCode: BG
|
|
74
|
+
text: {{ address.FormattedAddress | format_address }}
|
|
75
|
+
addressLines: {{ address.FormattedAddress.AddressStreet }}
|
|
76
|
+
cityName: {{ address.FormattedAddress.AddressCity }}
|
|
77
|
+
geographicRegionName: {{ address.FormattedAddress.AddressCounty }}
|
|
78
|
+
postalCode: {{ address.FormattedAddress.AddressPostcode }}
|
|
79
|
+
countryCode: {{ address.AddressCountryCode }}
|
|
80
|
+
{% endcall %}
|
|
81
|
+
{% endcall %}
|
|
82
|
+
|
|
83
|
+
representatives:
|
|
84
|
+
{% call(rep) match('RepresentativeDetails.Representative', design) %}
|
|
85
|
+
- identifier: {{ rep.RepresentativeIdentifier }}
|
|
86
|
+
{% call(details) match('RepresentativeAddressBook.FormattedNameAddress.Name.FormattedName', rep) %}
|
|
87
|
+
kind: {{ rep.RepresentativeLegalEntity}}
|
|
88
|
+
{% if details.OrganizationName %}
|
|
89
|
+
fullName:
|
|
90
|
+
- languageCode: BG
|
|
91
|
+
text: {{ details.OrganizationName }}
|
|
92
|
+
{% else %}
|
|
93
|
+
fullName:
|
|
94
|
+
- languageCode: BG
|
|
95
|
+
text: {{ details | format_name }}
|
|
96
|
+
firstName:
|
|
97
|
+
- languageCode: BG
|
|
98
|
+
text: {{ details.FirstName}}
|
|
99
|
+
lastName:
|
|
100
|
+
- languageCode: BG
|
|
101
|
+
text: {{ details.LastName}}
|
|
102
|
+
middleName:
|
|
103
|
+
- languageCode: BG
|
|
104
|
+
text: {{ details.MiddleName}}
|
|
105
|
+
{% endif %}
|
|
106
|
+
{% endcall %}
|
|
107
|
+
{% call(address) match('RepresentativeAddressBook.FormattedNameAddress.Address', rep) %}
|
|
108
|
+
fullAddress:
|
|
109
|
+
- languageCode: BG
|
|
110
|
+
text: {{ address.FormattedAddress | format_address }}
|
|
111
|
+
addressLines: {{ address.FormattedAddress.AddressStreet }}
|
|
112
|
+
cityName: {{ address.FormattedAddress.AddressCity }}
|
|
113
|
+
geographicRegionName: {{ address.FormattedAddress.AddressCounty }}
|
|
114
|
+
postalCode: {{ address.FormattedAddress.AddressPostcode }}
|
|
115
|
+
countryCode: {{ address.AddressCountryCode }}
|
|
116
|
+
{% endcall %}
|
|
117
|
+
{% endcall %}
|
|
118
|
+
|
|
119
|
+
designs:
|
|
120
|
+
- designPos: {{ design_pos }}
|
|
121
|
+
officeStatus: {{ design.DesignCurrentStatusCode | parseStatus }}
|
|
122
|
+
gbdStatus: {{ idstatus }}
|
|
123
|
+
statusDate: {{ design.DesignCurrentStatusDate }}
|
|
124
|
+
productIndication:
|
|
125
|
+
{% call(indic) match('IndicationProduct', design.IndicationProductDetails) %}
|
|
126
|
+
- languageCode: {{ indic | guess_language(indic._languageCode, BG) }}
|
|
127
|
+
text: {{ indic }}
|
|
128
|
+
{% endcall %}
|
|
129
|
+
|
|
130
|
+
designImageDetails:
|
|
131
|
+
{% call(sheet) match('DesignRepresentationSheet', design.DesignRepresentationSheetDetails) %}
|
|
132
|
+
{% call(img) match('ViewDetails.View',sheet) %}
|
|
133
|
+
- name: {{ img.ViewURI }}
|
|
134
|
+
{% endcall %}
|
|
135
|
+
{% endcall %}
|
|
136
|
+
|
|
137
|
+
designer:
|
|
138
|
+
{% call(designer) match('DesignerDetails.Designer', design) %}
|
|
139
|
+
{% call(details) match('DesignerAddressBook.FormattedNameAddress.Name.FreeFormatName', designer) %}
|
|
140
|
+
- identifier: {{ designer.DesignerIdentifier }}
|
|
141
|
+
fullName:
|
|
142
|
+
{% call(nameline) match('FreeFormatNameDetails.FreeFormatNameLine', details) %}
|
|
143
|
+
- text: {{ nameline }}
|
|
144
|
+
languageCode: BG
|
|
145
|
+
{% endcall %}
|
|
146
|
+
{% endcall %}
|
|
147
|
+
{% endcall %}
|
|
148
|
+
|
|
149
|
+
productIndicationClasses:
|
|
150
|
+
{% call(indicationProducts) match('ClassDescriptionDetails', design) %}
|
|
151
|
+
- kind: "Locarno"
|
|
152
|
+
classes:
|
|
153
|
+
{% call(code) match('ClassDescription', indicationProducts) %}
|
|
154
|
+
- code: {{ code.ClassNumber }}
|
|
155
|
+
{% endcall %}
|
|
156
|
+
{% endcall %}
|
|
157
|
+
|
|
158
|
+
priorities:
|
|
159
|
+
{% call(priority) match('PriorityDetails.Priority', design) %}
|
|
160
|
+
- countryCode: {{ priority.PriorityCountryCode }}
|
|
161
|
+
number: {{ priority.PriorityNumber }}
|
|
162
|
+
date: {{ priority.PriorityDate }}
|
|
163
|
+
{% endcall %}
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
{% endcall %}
|
|
169
|
+
{% endcall %}
|
|
@@ -46,4 +46,16 @@ def is_international(header):
|
|
|
46
46
|
return False
|
|
47
47
|
|
|
48
48
|
def get_ir_refnum(appnum):
|
|
49
|
-
return appnum
|
|
49
|
+
return appnum
|
|
50
|
+
|
|
51
|
+
def select_earliest_date(publications):
|
|
52
|
+
return ipas.select_earliest_date(publications)
|
|
53
|
+
|
|
54
|
+
def deduplicate_publication_dates(publications):
|
|
55
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_classes(classes):
|
|
58
|
+
return ipas.deduplicate_classes(classes)
|
|
59
|
+
|
|
60
|
+
def deduplicate_publications(publications):
|
|
61
|
+
return ipas.deduplicate_publications(publications)
|
|
@@ -49,4 +49,16 @@ def is_international(header):
|
|
|
49
49
|
return False
|
|
50
50
|
|
|
51
51
|
def get_ir_refnum(appnum):
|
|
52
|
-
return appnum
|
|
52
|
+
return appnum
|
|
53
|
+
|
|
54
|
+
def select_earliest_date(publications):
|
|
55
|
+
return ipas.select_earliest_date(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_publication_dates(publications):
|
|
58
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
59
|
+
|
|
60
|
+
def deduplicate_classes(classes):
|
|
61
|
+
return ipas.deduplicate_classes(classes)
|
|
62
|
+
|
|
63
|
+
def deduplicate_publications(publications):
|
|
64
|
+
return ipas.deduplicate_publications(publications)
|
|
@@ -47,4 +47,17 @@ def is_international(header):
|
|
|
47
47
|
return False
|
|
48
48
|
|
|
49
49
|
def get_ir_refnum(appnum):
|
|
50
|
-
return appnum
|
|
50
|
+
return appnum
|
|
51
|
+
|
|
52
|
+
def select_earliest_date(publications):
|
|
53
|
+
return ipas.select_earliest_date(publications)
|
|
54
|
+
|
|
55
|
+
def deduplicate_publication_dates(publications):
|
|
56
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
57
|
+
|
|
58
|
+
def deduplicate_classes(classes):
|
|
59
|
+
return ipas.deduplicate_classes(classes)
|
|
60
|
+
|
|
61
|
+
def deduplicate_publications(publications):
|
|
62
|
+
return ipas.deduplicate_publications(publications)
|
|
63
|
+
|
|
@@ -44,4 +44,17 @@ def is_international(header):
|
|
|
44
44
|
return False
|
|
45
45
|
|
|
46
46
|
def get_ir_refnum(appnum):
|
|
47
|
-
return appnum
|
|
47
|
+
return appnum
|
|
48
|
+
|
|
49
|
+
def select_earliest_date(publications):
|
|
50
|
+
return ipas.select_earliest_date(publications)
|
|
51
|
+
|
|
52
|
+
def deduplicate_publication_dates(publications):
|
|
53
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
54
|
+
|
|
55
|
+
def deduplicate_classes(classes):
|
|
56
|
+
return ipas.deduplicate_classes(classes)
|
|
57
|
+
|
|
58
|
+
def deduplicate_publications(publications):
|
|
59
|
+
return ipas.deduplicate_publications(publications)
|
|
60
|
+
|
|
@@ -46,4 +46,17 @@ def is_international(header):
|
|
|
46
46
|
return False
|
|
47
47
|
|
|
48
48
|
def get_ir_refnum(appnum):
|
|
49
|
-
return appnum
|
|
49
|
+
return appnum
|
|
50
|
+
|
|
51
|
+
def select_earliest_date(publications):
|
|
52
|
+
return ipas.select_earliest_date(publications)
|
|
53
|
+
|
|
54
|
+
def deduplicate_publication_dates(publications):
|
|
55
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_classes(classes):
|
|
58
|
+
return ipas.deduplicate_classes(classes)
|
|
59
|
+
|
|
60
|
+
def deduplicate_publications(publications):
|
|
61
|
+
return ipas.deduplicate_publications(publications)
|
|
62
|
+
|
|
@@ -18,9 +18,16 @@ def should_display_language(lang, payload):
|
|
|
18
18
|
return lang
|
|
19
19
|
return None
|
|
20
20
|
|
|
21
|
-
def st13(appnum, office, pos, type='Design', appdate=None, roffice=None, sanitize=True):
|
|
21
|
+
def st13(appnum, registration_number, office, pos, type='Design', appdate=None, roffice=None, sanitize=True):
|
|
22
22
|
if not appnum:
|
|
23
|
-
|
|
23
|
+
# fallback to registration number (required for example by Hague pre-1999 records, which have no application number)
|
|
24
|
+
if registration_number:
|
|
25
|
+
# remove non digit prefix (we want to keep non digit char at the end of the registration number, to distinguish
|
|
26
|
+
# non unitary registration numbers from the same application, e.g. D054966 and D054966A)
|
|
27
|
+
registration_number = re.sub(r"^[^0-9]+", '', registration_number)
|
|
28
|
+
appnum = 'R' + registration_number
|
|
29
|
+
else:
|
|
30
|
+
return None
|
|
24
31
|
# collections are usually office code followed with tm: xxtm
|
|
25
32
|
collection = '%sid' % office.lower()
|
|
26
33
|
|
|
@@ -63,4 +70,4 @@ def st13(appnum, office, pos, type='Design', appdate=None, roffice=None, sanitiz
|
|
|
63
70
|
st13 = '%s%s' % (st13, appdate[:4])
|
|
64
71
|
|
|
65
72
|
# add application number and zfill till 17
|
|
66
|
-
return '%s%s
|
|
73
|
+
return '%s%s' % (st13, appnum.zfill(17 - len(st13)))
|
|
@@ -51,4 +51,17 @@ def is_international(header):
|
|
|
51
51
|
return False
|
|
52
52
|
|
|
53
53
|
def get_ir_refnum(appnum):
|
|
54
|
-
return appnum
|
|
54
|
+
return appnum
|
|
55
|
+
|
|
56
|
+
def select_earliest_date(publications):
|
|
57
|
+
return ipas.select_earliest_date(publications)
|
|
58
|
+
|
|
59
|
+
def deduplicate_publication_dates(publications):
|
|
60
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
61
|
+
|
|
62
|
+
def deduplicate_classes(classes):
|
|
63
|
+
return ipas.deduplicate_classes(classes)
|
|
64
|
+
|
|
65
|
+
def deduplicate_publications(publications):
|
|
66
|
+
return ipas.deduplicate_publications(publications)
|
|
67
|
+
|
|
@@ -64,6 +64,89 @@ def get_registration_date(trademark, tmstatus):
|
|
|
64
64
|
if event.MarkEventCode == 'Published':
|
|
65
65
|
return event.MarkEventDate
|
|
66
66
|
|
|
67
|
+
# given a list of dates as strings, e.g. publication dates, deduplicate
|
|
68
|
+
def deduplicate_dates(dates):
|
|
69
|
+
return list(set(dates))
|
|
70
|
+
|
|
71
|
+
# given a list of publications, deduplicate
|
|
72
|
+
def deduplicate_publication_dates(design):
|
|
73
|
+
if design == None:
|
|
74
|
+
return None
|
|
75
|
+
dates = []
|
|
76
|
+
if "PublicationDetails" in design:
|
|
77
|
+
publicationDetails = design["PublicationDetails"]
|
|
78
|
+
publications = publicationDetails.get('Publication', [])
|
|
79
|
+
if not isinstance(publications, list):
|
|
80
|
+
publications = [publications]
|
|
81
|
+
for publication in publications:
|
|
82
|
+
if "PublicationDate" in publication:
|
|
83
|
+
dates.append(publication["PublicationDate"])
|
|
84
|
+
return deduplicate_dates(dates)
|
|
85
|
+
|
|
86
|
+
# given a list of classes, deduplicate
|
|
87
|
+
def deduplicate_classes(classes):
|
|
88
|
+
deduplicate_classes = []
|
|
89
|
+
if not isinstance(classes, list):
|
|
90
|
+
classes = [classes]
|
|
91
|
+
for the_class in classes:
|
|
92
|
+
if the_class["ClassNumber"] not in deduplicate_classes:
|
|
93
|
+
deduplicate_classes.append(the_class["ClassNumber"])
|
|
94
|
+
result = []
|
|
95
|
+
for deduplicate_class in deduplicate_classes:
|
|
96
|
+
result.append({ "code": deduplicate_class} )
|
|
97
|
+
return result
|
|
98
|
+
|
|
99
|
+
# given a list of publications, deduplicate
|
|
100
|
+
def deduplicate_publications(publications):
|
|
101
|
+
deduplicate_publications = []
|
|
102
|
+
pub_keys = []
|
|
103
|
+
if not isinstance(publications, list):
|
|
104
|
+
publications = [publications]
|
|
105
|
+
for publication in publications:
|
|
106
|
+
publication_date = publication.get("PublicationDate")
|
|
107
|
+
publication_identifier = publication.get("PublicationIdentifier")
|
|
108
|
+
pub_key = ""
|
|
109
|
+
if publication_identifier:
|
|
110
|
+
pub_key += publication_identifier
|
|
111
|
+
if publication_date:
|
|
112
|
+
pub_key += publication_date
|
|
113
|
+
if pub_key not in pub_keys:
|
|
114
|
+
deduplicate_publications.append(publication)
|
|
115
|
+
pub_keys.append(pub_key)
|
|
116
|
+
result = []
|
|
117
|
+
for publication in deduplicate_publications:
|
|
118
|
+
res = {}
|
|
119
|
+
if "PublicationIdentifier" in publication:
|
|
120
|
+
res["identifier"] = publication["PublicationIdentifier"]
|
|
121
|
+
if "PublicationDate" in publication:
|
|
122
|
+
res["date"] = publication["PublicationDate"]
|
|
123
|
+
result.append(res)
|
|
124
|
+
return result
|
|
125
|
+
|
|
126
|
+
# given a list of publications with dates as strings, select the earliest date publication
|
|
127
|
+
def select_earliest_date(design):
|
|
128
|
+
if design == None:
|
|
129
|
+
return None
|
|
130
|
+
|
|
131
|
+
if "PublicationDetails" in design:
|
|
132
|
+
publicationDetails = design["PublicationDetails"]
|
|
133
|
+
publications = publicationDetails.get('Publication', [])
|
|
134
|
+
if not isinstance(publications, list):
|
|
135
|
+
publications = [publications]
|
|
136
|
+
if len(publications) == 0:
|
|
137
|
+
return None
|
|
138
|
+
elif len(publications) == 1:
|
|
139
|
+
return publications[0]["PublicationDate"]
|
|
140
|
+
else:
|
|
141
|
+
earliest_date = None
|
|
142
|
+
n = -1
|
|
143
|
+
for count, publication in enumerate(publications):
|
|
144
|
+
if earliest_date == None or publication["PublicationDate"] < earliest_date:
|
|
145
|
+
earliest_date = publication["PublicationDate"]
|
|
146
|
+
return earliest_date
|
|
147
|
+
else:
|
|
148
|
+
return None
|
|
149
|
+
|
|
67
150
|
def translate_status(status):
|
|
68
151
|
status = status.lower()
|
|
69
152
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
{% call(header) match('DesignTransactionBody.TransactionContentDetails', Transaction) %}
|
|
4
4
|
|
|
5
|
-
{%
|
|
5
|
+
{% set design = Transaction.DesignTransactionBody.TransactionContentDetails.TransactionData.DesignApplicationDetails.DesignApplication %}
|
|
6
6
|
{% set design_count = design | get_designs_count(header) %}
|
|
7
7
|
{% set design_pos = design | get_designs_pos(header) %}
|
|
8
8
|
{% set kind = design | translate_kind(header) %}
|
|
@@ -35,13 +35,16 @@ reference:
|
|
|
35
35
|
{% set idstatus = design.DesignDetails.Design | translate_status %}
|
|
36
36
|
{% set appdate = design.DesignApplicationDate | get_appdate(design.DesignApplicationNumber) %}
|
|
37
37
|
|
|
38
|
-
st13: {{ design.DesignApplicationNumber | st13(design.RegistrationOfficeCode, design_pos, appdate=appdate, roffice=design.ReceivingOfficeCode) }}
|
|
38
|
+
st13: {{ design.DesignApplicationNumber | st13(None, design.RegistrationOfficeCode, design_pos, appdate=appdate, roffice=design.ReceivingOfficeCode) }}
|
|
39
39
|
|
|
40
40
|
applicationNumber: {{ design.DesignApplicationNumber }}
|
|
41
41
|
applicationDate: {{ design.DesignApplicationDate }}
|
|
42
42
|
registrationNumber: {{ design.DesignDetails.Design | get_registration_nb(idstatus) | remove_trailing('-') }}
|
|
43
43
|
registrationDate: {{ design.DesignDetails.Design | get_registration_date(idstatus) }}
|
|
44
|
-
|
|
44
|
+
|
|
45
|
+
publicationDates: {{ design.DesignDetails.Design | deduplicate_publication_dates }}
|
|
46
|
+
earliestPublicationDate: {{ design.DesignDetails.Design | select_earliest_date }}
|
|
47
|
+
|
|
45
48
|
expiryDate: {{ design.DesignDetails.Design | get_expiry_date(idstatus) }}
|
|
46
49
|
|
|
47
50
|
applicationLanguageCode: {{ design.DesignApplicationLanguageCode }}
|
|
@@ -143,13 +146,9 @@ designs:
|
|
|
143
146
|
- kind: {{ indicationProducts.ClassificationKindCode | lower }}
|
|
144
147
|
version: {{ indicationProducts.ClassificationVersion}}
|
|
145
148
|
classes:
|
|
146
|
-
|
|
147
|
-
- code: {{ code.ClassNumber }}
|
|
148
|
-
description: {{ code.ProductDescription}}
|
|
149
|
-
{% endcall %}
|
|
149
|
+
- {{ indicationProducts.ClassDescriptionDetails.ClassDescription | deduplicate_classes }}
|
|
150
150
|
{% endcall %}
|
|
151
151
|
|
|
152
|
-
|
|
153
152
|
priorities:
|
|
154
153
|
{% call(priority) match('PriorityDetails.Priority', design.DesignDetails.Design) %}
|
|
155
154
|
- countryCode: {{ priority.PriorityCountryCode }}
|
|
@@ -161,14 +160,15 @@ designs:
|
|
|
161
160
|
{% call(indic) match('NoveltyStatement', design.DesignDetails.Design) %}
|
|
162
161
|
- languageCode: {{ indic | remove_trailing('-', '.') | guess_language(indic._languageCode, design.DesignApplicationLanguageCode) }}
|
|
163
162
|
text: {{ indic | remove_trailing('-', '.') }}
|
|
164
|
-
|
|
163
|
+
{% endcall %}
|
|
164
|
+
|
|
165
|
+
{% set earliestDesignPub = design.DesignDetails.Design.PublicationDetails.Publication | select_earliest_date %}
|
|
166
|
+
earliestPublications:
|
|
167
|
+
identifier: {{ earliestDesignPub.PublicationIdentifier}}
|
|
168
|
+
date: {{ earliestDesignPub.PublicationDate}}
|
|
169
|
+
section:
|
|
165
170
|
|
|
166
171
|
publications:
|
|
167
|
-
{
|
|
168
|
-
- identifier: {{ pub.PublicationIdentifier}}
|
|
169
|
-
date: {{ pub.PublicationDate}}
|
|
170
|
-
section:
|
|
171
|
-
{% endcall %}
|
|
172
|
+
- {{ design.DesignDetails.Design.PublicationDetails.Publication | deduplicate_publications }}
|
|
172
173
|
|
|
173
174
|
{% endcall %}
|
|
174
|
-
{% endcall %}
|
|
@@ -46,4 +46,17 @@ def is_international(header):
|
|
|
46
46
|
return False
|
|
47
47
|
|
|
48
48
|
def get_ir_refnum(appnum):
|
|
49
|
-
return appnum
|
|
49
|
+
return appnum
|
|
50
|
+
|
|
51
|
+
def select_earliest_date(publications):
|
|
52
|
+
return ipas.select_earliest_date(publications)
|
|
53
|
+
|
|
54
|
+
def deduplicate_publication_dates(publications):
|
|
55
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_classes(classes):
|
|
58
|
+
return ipas.deduplicate_classes(classes)
|
|
59
|
+
|
|
60
|
+
def deduplicate_publications(publications):
|
|
61
|
+
return ipas.deduplicate_publications(publications)
|
|
62
|
+
|
|
@@ -46,4 +46,17 @@ def is_international(header):
|
|
|
46
46
|
return False
|
|
47
47
|
|
|
48
48
|
def get_ir_refnum(appnum):
|
|
49
|
-
return appnum
|
|
49
|
+
return appnum
|
|
50
|
+
|
|
51
|
+
def select_earliest_date(publications):
|
|
52
|
+
return ipas.select_earliest_date(publications)
|
|
53
|
+
|
|
54
|
+
def deduplicate_publication_dates(publications):
|
|
55
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_classes(classes):
|
|
58
|
+
return ipas.deduplicate_classes(classes)
|
|
59
|
+
|
|
60
|
+
def deduplicate_publications(publications):
|
|
61
|
+
return ipas.deduplicate_publications(publications)
|
|
62
|
+
|
|
@@ -47,4 +47,17 @@ def is_international(header):
|
|
|
47
47
|
return False
|
|
48
48
|
|
|
49
49
|
def get_ir_refnum(appnum):
|
|
50
|
-
return appnum
|
|
50
|
+
return appnum
|
|
51
|
+
|
|
52
|
+
def select_earliest_date(publications):
|
|
53
|
+
return ipas.select_earliest_date(publications)
|
|
54
|
+
|
|
55
|
+
def deduplicate_publication_dates(publications):
|
|
56
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
57
|
+
|
|
58
|
+
def deduplicate_classes(classes):
|
|
59
|
+
return ipas.deduplicate_classes(classes)
|
|
60
|
+
|
|
61
|
+
def deduplicate_publications(publications):
|
|
62
|
+
return ipas.deduplicate_publications(publications)
|
|
63
|
+
|
|
@@ -46,4 +46,16 @@ def is_international(header):
|
|
|
46
46
|
return False
|
|
47
47
|
|
|
48
48
|
def get_ir_refnum(appnum):
|
|
49
|
-
return appnum
|
|
49
|
+
return appnum
|
|
50
|
+
|
|
51
|
+
def select_earliest_date(publications):
|
|
52
|
+
return ipas.select_earliest_date(publications)
|
|
53
|
+
|
|
54
|
+
def deduplicate_publication_dates(publications):
|
|
55
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_classes(classes):
|
|
58
|
+
return ipas.deduplicate_classes(classes)
|
|
59
|
+
|
|
60
|
+
def deduplicate_publications(publications):
|
|
61
|
+
return ipas.deduplicate_publications(publications)
|
|
@@ -46,4 +46,17 @@ def is_international(header):
|
|
|
46
46
|
return False
|
|
47
47
|
|
|
48
48
|
def get_ir_refnum(appnum):
|
|
49
|
-
return appnum
|
|
49
|
+
return appnum
|
|
50
|
+
|
|
51
|
+
def select_earliest_date(publications):
|
|
52
|
+
return ipas.select_earliest_date(publications)
|
|
53
|
+
|
|
54
|
+
def deduplicate_publication_dates(publications):
|
|
55
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_classes(classes):
|
|
58
|
+
return ipas.deduplicate_classes(classes)
|
|
59
|
+
|
|
60
|
+
def deduplicate_publications(publications):
|
|
61
|
+
return ipas.deduplicate_publications(publications)
|
|
62
|
+
|
|
@@ -45,4 +45,16 @@ def is_international(header):
|
|
|
45
45
|
return False
|
|
46
46
|
|
|
47
47
|
def get_ir_refnum(appnum):
|
|
48
|
-
return appnum
|
|
48
|
+
return appnum
|
|
49
|
+
|
|
50
|
+
def select_earliest_date(publications):
|
|
51
|
+
return ipas.select_earliest_date(publications)
|
|
52
|
+
|
|
53
|
+
def deduplicate_publication_dates(publications):
|
|
54
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
55
|
+
|
|
56
|
+
def deduplicate_classes(classes):
|
|
57
|
+
return ipas.deduplicate_classes(classes)
|
|
58
|
+
|
|
59
|
+
def deduplicate_publications(publications):
|
|
60
|
+
return ipas.deduplicate_publications(publications)
|
|
@@ -55,4 +55,16 @@ def is_international(header):
|
|
|
55
55
|
return False
|
|
56
56
|
|
|
57
57
|
def get_ir_refnum(appnum):
|
|
58
|
-
return appnum
|
|
58
|
+
return appnum
|
|
59
|
+
|
|
60
|
+
def select_earliest_date(publications):
|
|
61
|
+
return ipas.select_earliest_date(publications)
|
|
62
|
+
|
|
63
|
+
def deduplicate_publication_dates(publications):
|
|
64
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
65
|
+
|
|
66
|
+
def deduplicate_classes(classes):
|
|
67
|
+
return ipas.deduplicate_classes(classes)
|
|
68
|
+
|
|
69
|
+
def deduplicate_publications(publications):
|
|
70
|
+
return ipas.deduplicate_publications(publications)
|
|
@@ -50,4 +50,17 @@ def is_international(header):
|
|
|
50
50
|
return False
|
|
51
51
|
|
|
52
52
|
def get_ir_refnum(appnum):
|
|
53
|
-
return appnum
|
|
53
|
+
return appnum
|
|
54
|
+
|
|
55
|
+
def select_earliest_date(publications):
|
|
56
|
+
return ipas.select_earliest_date(publications)
|
|
57
|
+
|
|
58
|
+
def deduplicate_publication_dates(publications):
|
|
59
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
60
|
+
|
|
61
|
+
def deduplicate_classes(classes):
|
|
62
|
+
return ipas.deduplicate_classes(classes)
|
|
63
|
+
|
|
64
|
+
def deduplicate_publications(publications):
|
|
65
|
+
return ipas.deduplicate_publications(publications)
|
|
66
|
+
|
|
@@ -49,4 +49,16 @@ def is_international(header):
|
|
|
49
49
|
return False
|
|
50
50
|
|
|
51
51
|
def get_ir_refnum(appnum):
|
|
52
|
-
return appnum
|
|
52
|
+
return appnum
|
|
53
|
+
|
|
54
|
+
def select_earliest_date(publications):
|
|
55
|
+
return ipas.select_earliest_date(publications)
|
|
56
|
+
|
|
57
|
+
def deduplicate_publication_dates(publications):
|
|
58
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
59
|
+
|
|
60
|
+
def deduplicate_classes(classes):
|
|
61
|
+
return ipas.deduplicate_classes(classes)
|
|
62
|
+
|
|
63
|
+
def deduplicate_publications(publications):
|
|
64
|
+
return ipas.deduplicate_publications(publications)
|
|
@@ -51,4 +51,16 @@ def is_international(header):
|
|
|
51
51
|
return True
|
|
52
52
|
|
|
53
53
|
def get_ir_refnum(appnum):
|
|
54
|
-
return appnum
|
|
54
|
+
return appnum
|
|
55
|
+
|
|
56
|
+
def select_earliest_date(publications):
|
|
57
|
+
return ipas.select_earliest_date(publications)
|
|
58
|
+
|
|
59
|
+
def deduplicate_publication_dates(publications):
|
|
60
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
61
|
+
|
|
62
|
+
def deduplicate_classes(classes):
|
|
63
|
+
return ipas.deduplicate_classes(classes)
|
|
64
|
+
|
|
65
|
+
def deduplicate_publications(publications):
|
|
66
|
+
return ipas.deduplicate_publications(publications)
|
|
@@ -47,4 +47,16 @@ def is_international(header):
|
|
|
47
47
|
return False
|
|
48
48
|
|
|
49
49
|
def get_ir_refnum(appnum):
|
|
50
|
-
return appnum
|
|
50
|
+
return appnum
|
|
51
|
+
|
|
52
|
+
def select_earliest_date(publications):
|
|
53
|
+
return ipas.select_earliest_date(publications)
|
|
54
|
+
|
|
55
|
+
def deduplicate_publication_dates(publications):
|
|
56
|
+
return ipas.deduplicate_publication_dates(publications)
|
|
57
|
+
|
|
58
|
+
def deduplicate_classes(classes):
|
|
59
|
+
return ipas.deduplicate_classes(classes)
|
|
60
|
+
|
|
61
|
+
def deduplicate_publications(publications):
|
|
62
|
+
return ipas.deduplicate_publications(publications)
|