|
@@ -129,7 +129,7 @@
|
|
|
lines: [
|
|
|
{
|
|
|
cpt: '',
|
|
|
- dateOfService: '{{date('Y-m-d')}}',
|
|
|
+ dateOfService: '{{$note->created_at}}',
|
|
|
icds: JSON.parse(JSON.stringify(window.noteReasons)),
|
|
|
numberOfUnits: 1
|
|
|
}
|
|
@@ -140,7 +140,7 @@
|
|
|
addLine: function () {
|
|
|
this.payload.lines.push({
|
|
|
cpt: '',
|
|
|
- dateOfService: '{{date('Y-m-d')}}',
|
|
|
+ dateOfService: '{{date_format($note->created_at, 'Y-m-d')}}',
|
|
|
icds: JSON.parse(JSON.stringify(window.noteReasons)),
|
|
|
numberOfUnits: 1
|
|
|
});
|