Sfoglia il codice sorgente

Merge branch 'master' of http://git.shengws.com/csx/XT_New

csx 4 anni fa
parent
commit
631ecd98a6

+ 2 - 2
controllers/mobile_api_controllers/dialysis_api_controller.go Vedi File

@@ -784,7 +784,7 @@ func (c *DialysisAPIController) PostAssessmentAfterDislysis() {
784 784
 	is_eat, _ := c.GetInt64("is_eat", 0)
785 785
 
786 786
 	cvc_a, _ := c.GetFloat("cvc_a", 0)
787
-	cvc_b, _ := c.GetFloat("cvc_b", 0)
787
+	cvc_v, _ := c.GetFloat("cvc_v", 0)
788 788
 	channels, _ := c.GetInt64("channel", 0)
789 789
 
790 790
 	if id <= 0 {
@@ -874,7 +874,7 @@ func (c *DialysisAPIController) PostAssessmentAfterDislysis() {
874 874
 		InAdvanceReasonOther:         in_advance_reason_other,
875 875
 		IsEat:                        is_eat,
876 876
 		CvcA:                         cvc_a,
877
-		CvcB:                         cvc_b,
877
+		CvcV:                         cvc_v,
878 878
 		Channel:                      channels,
879 879
 	}
880 880