xxxx
parent
1738023cf0
commit
b4b7d511a7
|
@ -5,7 +5,7 @@
|
||||||
<group span="6" columns="1">
|
<group span="6" columns="1">
|
||||||
<field name="number"/>
|
<field name="number"/>
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="type" required="1"/>
|
<field name="type" onchange="onchange_type" required="1"/>
|
||||||
</group>
|
</group>
|
||||||
<group span="6" columns="1">
|
<group span="6" columns="1">
|
||||||
<field name="date_import"/>
|
<field name="date_import"/>
|
||||||
|
@ -20,7 +20,6 @@
|
||||||
<list>
|
<list>
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
<field name="select" onchange="onchange_sheet"/>
|
<field name="select" onchange="onchange_sheet"/>
|
||||||
<!--<field name="process_type"/>-->
|
|
||||||
</list>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</group>
|
</group>
|
||||||
|
@ -29,23 +28,25 @@
|
||||||
<group span="3" columns="1">
|
<group span="3" columns="1">
|
||||||
<button string="Load Sheet" type="primary" icon="download" method="load_sheet"/>
|
<button string="Load Sheet" type="primary" icon="download" method="load_sheet"/>
|
||||||
<newline/>
|
<newline/>
|
||||||
<button string="Load DATA" type="warning" icon="download" method="load_data"/>
|
<button string="Load Payment" type="warning" icon="download" method="load_payment"/>
|
||||||
<newline/>
|
<newline/>
|
||||||
<button offset="10" string="Find Invoice" type="success" icon="search" method="find_invoice"/>
|
<button offset="10" string="Match Invoice" type="success" icon="search" method="find_invoice"/>
|
||||||
<newline/>
|
<newline/>
|
||||||
<button offset="10" string="Make Payment" type="primary" icon="arrow-right" method="make_payment"/>
|
<button offset="10" string="Make Payment" type="primary" icon="arrow-right" method="make_payment"/>
|
||||||
<newline/>
|
<newline/>
|
||||||
<button string="Post" type="success" icon="arrow-right" method="post_payment"/>
|
<button string="Post" type="success" icon="arrow-right" method="post_payment"/>
|
||||||
<newline/>
|
<newline/>
|
||||||
<button string="Clear DATA" type="default" icon="remove" method="clear_data"/>
|
<button string="Undo" type="danger" icon="circle" method="undo"/>
|
||||||
|
<newline/>
|
||||||
|
<button string="Clear" type="default" icon="remove" method="clear"/>
|
||||||
</group>
|
</group>
|
||||||
<group span="3" columns="1">
|
<group span="3" columns="1">
|
||||||
<field name="description" width="300" height="250" nolabel="1"/>
|
<field name="description" width="300" height="250" nolabel="1"/>
|
||||||
</group>
|
</group>
|
||||||
</group>
|
</group>
|
||||||
</tab>
|
</tab>
|
||||||
<tab string="Priview">
|
<tab string="Payments">
|
||||||
<field name="input_data" count="10" nolabel="1">
|
<field name="payment_lines" count="10" nolabel="1">
|
||||||
<list>
|
<list>
|
||||||
<field name="doc_date"/>
|
<field name="doc_date"/>
|
||||||
<field name="name"/>
|
<field name="name"/>
|
||||||
|
@ -55,16 +56,13 @@
|
||||||
</field>
|
</field>
|
||||||
</tab>
|
</tab>
|
||||||
<tab string="Invoices">
|
<tab string="Invoices">
|
||||||
<field name="lines" count="10" nolabel="1">
|
<field name="invoice_lines" count="10" nolabel="1">
|
||||||
<list>
|
<list>
|
||||||
<field name="invoice_id"/>
|
<field name="invoice_id"/>
|
||||||
<field name="amount"/>
|
<field name="amount"/>
|
||||||
</list>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</tab>
|
</tab>
|
||||||
<tab string="History">
|
|
||||||
<separator string="TODO"/>
|
|
||||||
</tab>
|
|
||||||
</tabs>
|
</tabs>
|
||||||
<foot>
|
<foot>
|
||||||
</foot>
|
</foot>
|
||||||
|
|
|
@ -19,6 +19,6 @@ from . import nation
|
||||||
from . import race
|
from . import race
|
||||||
from . import cause_chronic
|
from . import cause_chronic
|
||||||
from . import je
|
from . import je
|
||||||
from . import input_data
|
|
||||||
from . import input_line
|
from . import input_line
|
||||||
from . import file_sheet
|
from . import file_sheet
|
||||||
|
from . import payment
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
import time
|
|
||||||
from netforce.model import Model, fields
|
from netforce.model import Model, fields
|
||||||
|
|
||||||
class InputLine(Model):
|
class Invoice(Model):
|
||||||
_name="clinic.input.line"
|
_name="clinic.invoice"
|
||||||
_string="Input Line"
|
_string="Clinic Invoice"
|
||||||
|
|
||||||
_fields={
|
_fields={
|
||||||
'je_id': fields.Many2One("clinic.je","Journal Entry"),
|
'je_id': fields.Many2One("clinic.je","Journal Entry"),
|
||||||
'invoice_id': fields.Many2One("account.invoice","Invoice"),
|
'invoice_id': fields.Many2One("account.invoice","NF Invoice"),
|
||||||
'amount': fields.Float("Amount"),
|
'amount': fields.Float("Amount"),
|
||||||
}
|
}
|
||||||
|
|
||||||
InputLine.register()
|
Invoice.register()
|
||||||
|
|
|
@ -8,6 +8,14 @@ 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
|
||||||
|
|
||||||
|
PAMENT_TYPE={
|
||||||
|
"mg":"Medical Government",
|
||||||
|
"sc":"Social Security",
|
||||||
|
"nhso":"NHSO (30฿)",
|
||||||
|
"personal": "Personal",
|
||||||
|
"others": "Others",
|
||||||
|
}
|
||||||
|
|
||||||
class JE(Model):
|
class JE(Model):
|
||||||
_name="clinic.je"
|
_name="clinic.je"
|
||||||
_string="Import Journal Entry"
|
_string="Import Journal Entry"
|
||||||
|
@ -19,11 +27,11 @@ class JE(Model):
|
||||||
"type": fields.Selection([("mg","Medical Government"),("sc","Social Security"),("nhso","NHSO (30฿)")],"Type"),
|
"type": fields.Selection([("mg","Medical Government"),("sc","Social Security"),("nhso","NHSO (30฿)")],"Type"),
|
||||||
'file': fields.File("File"),
|
'file': fields.File("File"),
|
||||||
'payment_id': fields.Many2One("account.payment","Payment"),
|
'payment_id': fields.Many2One("account.payment","Payment"),
|
||||||
'lines': fields.One2Many("clinic.input.line","je_id", "Input Line"),
|
'payment_lines': fields.One2Many("clinic.payment","je_id", "Payments"),
|
||||||
'input_data': fields.One2Many("clinic.input.data","je_id", "Input Data"),
|
'invoice_lines': fields.One2Many("clinic.invoice","je_id", "Invoices"),
|
||||||
'sheets': fields.One2Many("clinic.file.sheet","je_id", "Sheets"),
|
'sheets': fields.One2Many("clinic.file.sheet","je_id", "Sheets"),
|
||||||
'columns': fields.One2Many("clinic.file.column","je_id", "Columns"),
|
'columns': fields.One2Many("clinic.file.column","je_id", "Columns"),
|
||||||
"state": fields.Selection([("draft","Draft"),('sheet_loaded','Sheet Loaded'),("fail","Fail"),("done","Done")],"Status",required=True),
|
"state": fields.Selection([("draft","Draft"),('sheet_loaded','Sheet Loaded'),('payment_load','Payment Load'),('posted','Posted'),("fail","Fail"),("done","Done")],"Status",required=True),
|
||||||
'description': fields.Text("Description")
|
'description': fields.Text("Description")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,7 +98,7 @@ class JE(Model):
|
||||||
'flash': "Load sheet successfully",
|
'flash': "Load sheet successfully",
|
||||||
}
|
}
|
||||||
|
|
||||||
def load_data(self,ids,context={}):
|
def load_payment(self,ids,context={}):
|
||||||
obj=self.browse(ids[0])
|
obj=self.browse(ids[0])
|
||||||
if not obj.file:
|
if not obj.file:
|
||||||
raise Exception("Please select some file!")
|
raise Exception("Please select some file!")
|
||||||
|
@ -105,6 +113,7 @@ class JE(Model):
|
||||||
raise Exception("Please select some sheet!")
|
raise Exception("Please select some sheet!")
|
||||||
if len(indexes) > 1:
|
if len(indexes) > 1:
|
||||||
raise Exception("Only one sheet can select!")
|
raise Exception("Only one sheet can select!")
|
||||||
|
|
||||||
sheet_name=indexes[0][1]
|
sheet_name=indexes[0][1]
|
||||||
fname=obj.file
|
fname=obj.file
|
||||||
fpath=get_file_path(fname)
|
fpath=get_file_path(fname)
|
||||||
|
@ -112,7 +121,7 @@ class JE(Model):
|
||||||
ws=wb.sheet_by_name(sheet_name)
|
ws=wb.sheet_by_name(sheet_name)
|
||||||
num_rows = ws.nrows - 1
|
num_rows = ws.nrows - 1
|
||||||
curr_row = -1
|
curr_row = -1
|
||||||
input_data=[]
|
payment_lines=[]
|
||||||
while curr_row < num_rows:
|
while curr_row < num_rows:
|
||||||
curr_row += 1
|
curr_row += 1
|
||||||
# skip header
|
# skip header
|
||||||
|
@ -129,19 +138,22 @@ class JE(Model):
|
||||||
'hn':ws.cell_value(curr_row, 2),
|
'hn':ws.cell_value(curr_row, 2),
|
||||||
'amount':ws.cell_value(curr_row, 3),
|
'amount':ws.cell_value(curr_row, 3),
|
||||||
}
|
}
|
||||||
input_data.append(('create',data))
|
payment_lines.append(('create',data))
|
||||||
data_ids=[data.id for data in obj.input_data]
|
|
||||||
get_model("clinic.input.data").delete(data_ids)
|
data_ids=[data.id for data in obj.invoice_lines]
|
||||||
|
get_model("clinic.payment").delete(data_ids)
|
||||||
obj.write({
|
obj.write({
|
||||||
'input_data': input_data,
|
'payment_lines': payment_lines,
|
||||||
'description': 'see preview',
|
'description': 'see -> payments',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
def clear_data(self,ids,context={}):
|
def clear(self,ids,context={}):
|
||||||
obj=self.browse(ids[0])
|
obj=self.browse(ids[0])
|
||||||
data_ids=[data.id for data in obj.input_data]
|
invoice_ids=[invoice.id for invoice in obj.invoice_lines]
|
||||||
get_model("clinic.input.data").delete(data_ids)
|
get_model("clinic.invoice").delete(invoice_ids)
|
||||||
|
payment_ids=[payment.id for payment in obj.payment_lines]
|
||||||
|
get_model("clinic.payment").delete(payment_ids)
|
||||||
|
|
||||||
def find_invoice(self,ids,context={}):
|
def find_invoice(self,ids,context={}):
|
||||||
obj=self.browse(ids[0])
|
obj=self.browse(ids[0])
|
||||||
|
@ -157,22 +169,22 @@ class JE(Model):
|
||||||
raise Exception("No partner")
|
raise Exception("No partner")
|
||||||
|
|
||||||
# XXX
|
# XXX
|
||||||
if obj.lines:
|
if obj.payment_lines:
|
||||||
for line in obj.lines:
|
for line in obj.payment_lines:
|
||||||
line.delete()
|
line.delete()
|
||||||
dom=[]
|
dom=[]
|
||||||
dom.append(['state','=','waiting_payment'])
|
dom.append(['state','=','waiting_payment'])
|
||||||
dom.append(['partner_id','=',partner_id])
|
dom.append(['partner_id','=',partner_id])
|
||||||
lines=[]
|
invoice_lines=[]
|
||||||
for invoice in get_model("account.invoice").search_browse(dom):
|
for invoice in get_model("account.invoice").search_browse(dom):
|
||||||
print(invoice.id, " ", invoice.number, " ", invoice.amount_total),
|
print(invoice.id, " ", invoice.number, " ", invoice.amount_total),
|
||||||
line={
|
line={
|
||||||
'invoice_id': invoice.id,
|
'invoice_id': invoice.id,
|
||||||
'amount': invoice.amount_total,
|
'amount': invoice.amount_total,
|
||||||
}
|
}
|
||||||
lines.append(('create',line))
|
invoice_lines.append(('create',line))
|
||||||
obj.write({
|
obj.write({
|
||||||
'lines': lines,
|
'invoice_lines': invoice_lines,
|
||||||
})
|
})
|
||||||
return {
|
return {
|
||||||
'next': {
|
'next': {
|
||||||
|
@ -180,12 +192,12 @@ class JE(Model):
|
||||||
'mode': 'form',
|
'mode': 'form',
|
||||||
'active_id': obj.id,
|
'active_id': obj.id,
|
||||||
},
|
},
|
||||||
'flash':'Load invoice OK!',
|
'flash':'Invoice Load!',
|
||||||
}
|
}
|
||||||
|
|
||||||
def post_payment(self,ids,context={}):
|
def post_payment(self,ids,context={}):
|
||||||
obj=self.browse(ids[0])
|
obj=self.browse(ids[0])
|
||||||
if not obj.lines:
|
if not obj.payment_lines:
|
||||||
raise Exception("No invoice to post")
|
raise Exception("No invoice to post")
|
||||||
|
|
||||||
def onchange_sheet(self,context={}):
|
def onchange_sheet(self,context={}):
|
||||||
|
@ -200,20 +212,20 @@ class JE(Model):
|
||||||
def make_payment(self,ids,context={}):
|
def make_payment(self,ids,context={}):
|
||||||
obj=self.browse(ids[0])
|
obj=self.browse(ids[0])
|
||||||
if obj.payment_id:
|
if obj.payment_id:
|
||||||
if obj.lines:
|
if obj.payment_lines:
|
||||||
if obj.payment_id.invoice_lines:
|
if obj.payment_id.invoice_lines:
|
||||||
return
|
return
|
||||||
vals={
|
vals={
|
||||||
'invoice_lines':[],
|
'invoice_lines':[],
|
||||||
}
|
}
|
||||||
for line in obj.lines:
|
# XXX
|
||||||
|
for line in obj.invoice_lines:
|
||||||
line={
|
line={
|
||||||
'invoice_id': line.invoice_id.id,
|
'invoice_id': line.invoice_id.id,
|
||||||
'amount': line.amount,
|
'amount': line.amount,
|
||||||
}
|
}
|
||||||
vals['invoice_lines'].append(('create',line))
|
vals['invoice_lines'].append(('create',line))
|
||||||
obj.payment_id.write(vals)
|
obj.payment_id.write(vals)
|
||||||
print("add invoice to payment")
|
|
||||||
return
|
return
|
||||||
company_id=get_active_company()
|
company_id=get_active_company()
|
||||||
timenow=time.strftime("%Y-%m-%d")
|
timenow=time.strftime("%Y-%m-%d")
|
||||||
|
@ -252,4 +264,10 @@ class JE(Model):
|
||||||
'flash': "Make payment ok !",
|
'flash': "Make payment ok !",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def onchange_type(self,context={}):
|
||||||
|
data=context['data']
|
||||||
|
payment_type=PAMENT_TYPE.get(data['type'],"")
|
||||||
|
data['name']="%s Payment for %s"%(payment_type,time.strftime("%Y-%m-%d"))
|
||||||
|
return data
|
||||||
|
|
||||||
JE.register()
|
JE.register()
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
from netforce.model import Model, fields
|
from netforce.model import Model, fields
|
||||||
|
|
||||||
class InputData(Model):
|
class Payment(Model):
|
||||||
_name="clinic.input.data"
|
_name="clinic.payment"
|
||||||
_string="Input Data"
|
_string="Payment"
|
||||||
_fields={
|
_fields={
|
||||||
'doc_date': fields.Date("Doc Date"),
|
'doc_date': fields.Date("Doc Date"),
|
||||||
'name': fields.Char("Name"),
|
'name': fields.Char("Name"),
|
||||||
|
@ -11,4 +11,4 @@ class InputData(Model):
|
||||||
'je_id': fields.Many2One("clinic.je","Journal Entry"),
|
'je_id': fields.Many2One("clinic.je","Journal Entry"),
|
||||||
}
|
}
|
||||||
|
|
||||||
InputData.register()
|
Payment.register()
|
|
@ -13,3 +13,27 @@ question?
|
||||||
- 1 cycle take how long ?
|
- 1 cycle take how long ?
|
||||||
issue:
|
issue:
|
||||||
hd case should link only 1 dialyzer -> should not copy 2 time
|
hd case should link only 1 dialyzer -> should not copy 2 time
|
||||||
|
|
||||||
|
create journal entry
|
||||||
|
-> ok
|
||||||
|
|
||||||
|
sunday
|
||||||
|
todo:
|
||||||
|
- need to close all issue:
|
||||||
|
https://docs.google.com/spreadsheets/d/1GDl9vCswHlD1MMfVwRS504keIz9NYL8VhUZlSPDEJvk/edit?usp=drive_web
|
||||||
|
payment
|
||||||
|
- personal
|
||||||
|
- government
|
||||||
|
|
||||||
|
set visible for each staus
|
||||||
|
|
||||||
|
======= import data
|
||||||
|
- flow
|
||||||
|
1. select sheet
|
||||||
|
2. select columns
|
||||||
|
3. load data -> load payment
|
||||||
|
4. review data -> review payment
|
||||||
|
5. import data -> post payment
|
||||||
|
6. done
|
||||||
|
- issue
|
||||||
|
load excel is very slow
|
||||||
|
|
Loading…
Reference in New Issue