hayun-vite 0.7.1 → 0.7.2
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.
package/package.json
CHANGED
package/src/Form/printForm.js
CHANGED
@@ -103,23 +103,23 @@ const rasaTymp = {
|
|
103
103
|
this.patient.elements = [
|
104
104
|
{ type: 'line', x1: 0, y1: 20, x2: width, y2: 20 },
|
105
105
|
{ type: 'text', x: width, y: 5, value: 'نام:' },
|
106
|
-
{ type: 'text', x: width -
|
107
|
-
{ type: 'text', x: width -
|
108
|
-
{ type: 'text', x: width - 120, y: 5, value: 'ارجاع از:' },
|
106
|
+
{ type: 'text', x: width - 42, y: 5, value: 'نام خانوادگی:' },
|
107
|
+
{ type: 'text', x: width - 95, y: 5, value: 'سن:' },
|
108
|
+
// { type: 'text', x: width - 120, y: 5, value: 'ارجاع از:' },
|
109
109
|
{ type: 'text', x: width - 170, y: 5, value: 'تاریخ:' }
|
110
110
|
]
|
111
111
|
this.patient.inputs = [
|
112
112
|
{ name: 'name', x: width - 6, y: 5 },
|
113
|
-
{ name: 'lastName', x: width -
|
114
|
-
{ name: 'age', x: width -
|
115
|
-
{ name: 'referrer', x: width - 132, y: 5 },
|
113
|
+
{ name: 'lastName', x: width - 62, y: 5 },
|
114
|
+
{ name: 'age', x: width - 102, y: 5 },
|
115
|
+
// { name: 'referrer', x: width - 132, y: 5 },
|
116
116
|
{ name: 'date', x: width - 180, y: 5 }
|
117
117
|
]
|
118
118
|
this.patient.forceInputs = [
|
119
119
|
{ name: 'name', x: width - 10, y: 4 },
|
120
120
|
{ name: 'lastName', x: width - 47, y: 5 },
|
121
121
|
{ name: 'age', x: width - 97, y: 5 },
|
122
|
-
{ name: 'referrer', x: width - 142, y: 5 }
|
122
|
+
// { name: 'referrer', x: width - 142, y: 5 }
|
123
123
|
]
|
124
124
|
|
125
125
|
width = this.history.width = this.getWidth(this.history)
|