Merge branch 'master' of dev.netforce.com:netforce-customized/clinic
commit
603abfc716
|
@ -28,7 +28,6 @@
|
||||||
<item string="Settings">
|
<item string="Settings">
|
||||||
<item string="Cycles" action="clinic_cycle"/>
|
<item string="Cycles" action="clinic_cycle"/>
|
||||||
<item string="Departments" action="clinic_department"/>
|
<item string="Departments" action="clinic_department"/>
|
||||||
<item string="Translate" action="clinic_translate"/>
|
|
||||||
<item string="Clinic Settings" action="clinic_setting"/>
|
<item string="Clinic Settings" action="clinic_setting"/>
|
||||||
</item>
|
</item>
|
||||||
</menu>
|
</menu>
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
import re
|
|
||||||
import time
|
import time
|
||||||
import xlrd
|
import xlrd
|
||||||
from datetime import datetime
|
|
||||||
|
|
||||||
from netforce.model import Model, fields, get_model
|
from netforce.model import Model, fields, get_model
|
||||||
from netforce.access import get_active_company
|
from netforce.access import get_active_company
|
||||||
from netforce.access import get_active_user, set_active_user
|
|
||||||
from netforce.utils import get_file_path
|
from netforce.utils import get_file_path
|
||||||
from netforce.utils import get_data_path
|
from netforce.utils import get_data_path
|
||||||
from netforce.database import get_connection
|
from netforce.database import get_connection
|
||||||
|
|
|
@ -11,5 +11,9 @@ class Payment(Model):
|
||||||
'amount': fields.Float("Amount"),
|
'amount': fields.Float("Amount"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_defaults={
|
||||||
|
'amount': 0.0,
|
||||||
|
}
|
||||||
|
|
||||||
Payment.register()
|
Payment.register()
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit c8b4f9d18c7e96db2763ea2089db724140c2c89f
|
|
@ -1,5 +1,7 @@
|
||||||
===
|
===
|
||||||
- skip holiday
|
- skip holiday
|
||||||
|
-> mum
|
||||||
|
-
|
||||||
====
|
====
|
||||||
- import data
|
- import data
|
||||||
- payment
|
- payment
|
||||||
|
|
Loading…
Reference in New Issue