I hereby claim:
- I am aviars on github.
- I am aviars (https://keybase.io/aviars) on keybase.
- I have a public key ASAIVtQet7ER1tVOAT-CQKgoklyjfFUj94AwBI7F0dm6Awo
To claim this, I am signing this object:
from django.contrib.auth import get_user_model | |
from .models import UserProfile, Address | |
from collections import OrderedDict | |
class ProfileClaimProvider(): | |
def __init__(user): | |
claims_od = OrderedDict() |
I hereby claim:
To claim this, I am signing this object:
... | |
"sequence": 2, | |
"revenue": { | |
"coding": [{ | |
"system": "https://bluebutton.cms.gov/resources/variables/rev_cntr", | |
"code": "0250", | |
"display": "Pharmacy-general classification" | |
}] | |
}, | |
"locationAddress": { |
{ | |
"manifest": [{ | |
"client_name": "CareEvolution", | |
"redirect_uris": [ | |
"https://myfhr.careevolution.com/cfhrprovideraccounts/redirecttarget", | |
"https://test-consumers-release-5-20-x.careevolution.com/WebClientTest.Adapter1.WebClient/cfhrprovideraccounts/redirecttarget" | |
], | |
"grant_types": [ | |
"authorization_code", | |
"implicit", |
Software Deliverables:
Documentaion Deliverables:
from settings import * | |
BASE_DIR = os.path.join( os.path.dirname( __file__ ), '..' ) | |
DBPATH=os.path.join(BASE_DIR, 'gemini.db') | |
DATABASES = { | |
'duncan': { | |
'ENGINE': 'django.db.backends.mysql', | |
'NAME': 'duncan', | |
'USER': '', |
def save(self, **kwargs): | |
#Create/Update a RESTCAT tx | |
extra_fields = jsonify_extra_fields(self) | |
if not self.idtransaction: | |
from ..tracker.models import idTransaction | |
self.idtransaction=idTransaction.objects.create(subject=self.patient, | |
sender=self.worker, | |
receiver=self.worker, | |
extra_fields=jsonify_extra_fields(self)) | |
super(Linkage, self).save(**kwargs) |
from django.db import models | |
from django.utils.translation import ugettext as _, ugettext_lazy as __ | |
class FeatureType(models.Model): | |
class Meta: | |
verbose_name = __("FeatureType") | |
verbose_name_plural = __("FeatureTypes") | |
ordering = ('name',) |