|
@@ -136,7 +136,7 @@
|
|
|
{
|
|
|
cpt: '',
|
|
|
dateOfService: '{{$note->created_at}}',
|
|
|
- icds: JSON.parse(JSON.stringify(window.noteReasons)),
|
|
|
+ icds: JSON.parse(JSON.stringify(window.noteReasons?window.noteReasons:[])),
|
|
|
numberOfUnits: 1
|
|
|
}
|
|
|
]
|
|
@@ -147,7 +147,7 @@
|
|
|
this.payload.lines.push({
|
|
|
cpt: '',
|
|
|
dateOfService: '{{date_format($note->created_at, 'Y-m-d')}}',
|
|
|
- icds: JSON.parse(JSON.stringify(window.noteReasons)),
|
|
|
+ icds: JSON.parse(JSON.stringify(window.noteReasons?window.noteReasons:[])),
|
|
|
numberOfUnits: 1
|
|
|
});
|
|
|
Vue.nextTick(() => {
|