Would be nice to have a deep link to Patentcenter next to the existing links at the top of the page (the matter files, tasks, ... references icons).
https://patentcenter.uspto.gov/applications/{ApplicationNum_noformat}
Would be nice to have a deep link to Patentcenter next to the existing links at the top of the page (the matter files, tasks, ... references icons).
https://patentcenter.uspto.gov/applications/{ApplicationNum_noformat}
Would be helpful if AppColl could automatically calculate the expiration date of a patent once the issue date and PTA have been entered.
@RichardS3059 Fair enough that AppColl won't be able to accurately calculate every expiration date. But it could still calculate a default date that will be correct for most patents. Even a human can't calculate the expiration date at issue accurately if the patent later becomes eligible for PTE.
Turns out the expression also requires curly brackets...
AND while the expression 'x<#{General.Now(-500d)}# using the 'PriorityDate' field in the matter is true.
@GeorgeJ4336 This is great!
Here is a small Python script to automate the "lightly edit" step:
import xml.etree.ElementTree as ET
import glob
path="C:\\Users\\WhereeverYourDownloadAppcollFilesInput\\"
f = next(glob.iglob(path+"*EPAS_*.txt")) # use a characterizing portion of filename
print ("Processing file ",f)
tree = ET.parse(f)
root = tree.getroot()
conveyingparties=root.find("pat-conveying-parties")
print("Enter assignment execution date in yyyy-mm-dd format")
for conveyingparty in conveyingparties.findall("pat-conveying-party"):
if (conveyingparty.find("individual/first-name").text == None):
conveyingparties.remove(conveyingparty)
else:
assignor=conveyingparty.find("individual/first-name").text+" "+conveyingparty.find("individual/last-name").text+": "
executeddate=input(assignor)
conveyingparty.find("executed-date").text = executeddate
tree.write(path+"_EPAS-upload.txt")
@BruceY9453 Just started looking into this. US references could be obtained in JSON format from PatentCenter. Would not be too hard to convert to CSV for import into AppColl.
Foreign references are going to be much harder to load automatically.
Would be nice to have a deep link to Patentcenter next to the existing links at the top of the page (the matter files, tasks, ... references icons).
https://patentcenter.uspto.gov/applications/{ApplicationNum_noformat}
@GeorgeJ4336 This is great!
Here is a small Python script to automate the "lightly edit" step:
import xml.etree.ElementTree as ET
import glob
path="C:\\Users\\WhereeverYourDownloadAppcollFilesInput\\"
f = next(glob.iglob(path+"*EPAS_*.txt")) # use a characterizing portion of filename
print ("Processing file ",f)
tree = ET.parse(f)
root = tree.getroot()
conveyingparties=root.find("pat-conveying-parties")
print("Enter assignment execution date in yyyy-mm-dd format")
for conveyingparty in conveyingparties.findall("pat-conveying-party"):
if (conveyingparty.find("individual/first-name").text == None):
conveyingparties.remove(conveyingparty)
else:
assignor=conveyingparty.find("individual/first-name").text+" "+conveyingparty.find("individual/last-name").text+": "
executeddate=input(assignor)
conveyingparty.find("executed-date").text = executeddate
tree.write(path+"_EPAS-upload.txt")
I consider AppColl to be "business-critical" for the operation of my practice. Given increasing cyberthreats, I would like to move to a more robust two factor authentication than text and email. Texts are known to be susceptible to SIM swap attacks, and I would rather not have the security of a critical system depend on hundreds of employees at cell phone stores all following their company's policies. An authenticator app, or even better a FIDO2 hardware key, would be great.
@admin DOCX seems buggy. Saved the same form letter as DOCX and RTF. The RTF template fills correctly, the DOCX template does not.
@RichardS3059 Fair enough that AppColl won't be able to accurately calculate every expiration date. But it could still calculate a default date that will be correct for most patents. Even a human can't calculate the expiration date at issue accurately if the patent later becomes eligible for PTE.
Turns out the expression also requires curly brackets...
AND while the expression 'x<#{General.Now(-500d)}# using the 'PriorityDate' field in the matter is true.
Would be helpful if AppColl could automatically calculate the expiration date of a patent once the issue date and PTA have been entered.
Any ideas how to get this trigger to work? It is supposed to limit triggers to matters in which the priority date is more than 500 days ago, but does not seem to do the job. Couldn't find a good description of expressions that can be used in triggers anywhere.