canvas 0.44.0__py3-none-any.whl → 0.44.1__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 canvas might be problematic. Click here for more details.
- {canvas-0.44.0.dist-info → canvas-0.44.1.dist-info}/METADATA +1 -1
- {canvas-0.44.0.dist-info → canvas-0.44.1.dist-info}/RECORD +5 -5
- canvas_sdk/v1/data/claim.py +7 -4
- {canvas-0.44.0.dist-info → canvas-0.44.1.dist-info}/WHEEL +0 -0
- {canvas-0.44.0.dist-info → canvas-0.44.1.dist-info}/entry_points.txt +0 -0
|
@@ -229,7 +229,7 @@ canvas_sdk/v1/data/base.py,sha256=ZuLj9MSUkTR7L0NMwC5YflhY4Px-SgCvhh5G2Ili0SE,63
|
|
|
229
229
|
canvas_sdk/v1/data/billing.py,sha256=E1Bf2SGQCTr4vF3cWQzKgVKvqJmXtzHsyIBcVx8ICMg,2719
|
|
230
230
|
canvas_sdk/v1/data/business_line.py,sha256=8q0BDpKukQVjyHiHkrB3DQTdn4OPJWZhVNNOQ2ULFSY,905
|
|
231
231
|
canvas_sdk/v1/data/care_team.py,sha256=Ce6uXz_g867oYrq1RLvK-KXLubT4MAkomuJIO-GC7Tw,1916
|
|
232
|
-
canvas_sdk/v1/data/claim.py,sha256=
|
|
232
|
+
canvas_sdk/v1/data/claim.py,sha256=5j9Hfi8bp9TVKfYmyamUQgw3Fa7EaJBOGdBND4w2HWI,10901
|
|
233
233
|
canvas_sdk/v1/data/claim_line_item.py,sha256=rd8y2A29nWU_8ZAK0W4ITeUCHp2zAzc0fnUIXpVBOoA,4904
|
|
234
234
|
canvas_sdk/v1/data/command.py,sha256=fLxQMhLN7HT7cMtnrFGLNoZNyZFIK2zgKasYrivYhr0,1822
|
|
235
235
|
canvas_sdk/v1/data/common.py,sha256=u5W3_7kXAGPe7guEBwRouKp8FMRCx9iZL6ei8QMmtwU,4880
|
|
@@ -300,7 +300,7 @@ protobufs/canvas_generated/messages/plugins.proto,sha256=oNainUPWFYQjgCX7bJEPI9_
|
|
|
300
300
|
protobufs/canvas_generated/services/plugin_runner.proto,sha256=doadBKn5k4xAtOgR-q_pEvW4yzxpUaHNOowMG6CL5GY,304
|
|
301
301
|
pubsub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
302
|
pubsub/pubsub.py,sha256=PHIvJ5SD3M-jQSYeGGSj1FuG6CvP6BQffAoGax9Uudk,1423
|
|
303
|
-
canvas-0.44.
|
|
304
|
-
canvas-0.44.
|
|
305
|
-
canvas-0.44.
|
|
306
|
-
canvas-0.44.
|
|
303
|
+
canvas-0.44.1.dist-info/METADATA,sha256=aZwZM-cpatcS9QQ_LA1cNVBY0f5IRPO9BWMRB6TcPeY,4424
|
|
304
|
+
canvas-0.44.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
305
|
+
canvas-0.44.1.dist-info/entry_points.txt,sha256=0Vs_9GmTVUNniH6eDBlRPgofmADMV4BES6Ao26M4AbM,47
|
|
306
|
+
canvas-0.44.1.dist-info/RECORD,,
|
canvas_sdk/v1/data/claim.py
CHANGED
|
@@ -25,17 +25,20 @@ class InstallmentPlan(models.Model):
|
|
|
25
25
|
|
|
26
26
|
class Meta:
|
|
27
27
|
managed = False
|
|
28
|
-
db_table = "
|
|
28
|
+
db_table = "canvas_sdk_data_quality_and_revenue_installmentplan_001"
|
|
29
|
+
|
|
30
|
+
dbid = models.BigIntegerField(primary_key=True)
|
|
29
31
|
|
|
30
32
|
creator = models.ForeignKey("v1.CanvasUser", on_delete=models.CASCADE)
|
|
31
33
|
patient = models.ForeignKey(
|
|
32
34
|
"v1.Patient", on_delete=models.CASCADE, related_name="installment_plans"
|
|
33
35
|
)
|
|
34
36
|
total_amount = models.DecimalField(max_digits=8, decimal_places=2)
|
|
35
|
-
status = models.CharField(choices=InstallmentPlanStatus.choices)
|
|
37
|
+
status = models.CharField(choices=InstallmentPlanStatus.choices, max_length=10)
|
|
36
38
|
expected_payoff_date = models.DateField()
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
|
|
40
|
+
created = models.DateTimeField()
|
|
41
|
+
modified = models.DateTimeField()
|
|
39
42
|
|
|
40
43
|
|
|
41
44
|
class ClaimQueueColumns(models.TextChoices):
|
|
File without changes
|
|
File without changes
|