Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
21e89343
Commit
21e89343
authored
Mar 27, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
87918016
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
8 deletions
+18
-8
account_statement.html
application/index/view/finance/account_statement.html
+2
-2
inspectionRecordAll.js
public/resource/js/inspectionRecordAll.js
+1
-1
reportList.js
public/resource/js/reportList.js
+14
-4
reportList_template_tpl.html
public/resource/template/reportList_template_tpl.html
+1
-1
No files found.
application/index/view/finance/account_statement.html
View file @
21e89343
...
...
@@ -1391,7 +1391,7 @@
</td>
<td>
<span
class=
"span-width-90"
>
入账日期:
</span>
<input
class=
"input-width-m input-width
"
type=
"text"
value=
""
class=
"commission-income
"
<input
class=
"input-width-m input-width
commission-income-time"
type=
"text"
value=
"
"
onClick=
"WdatePicker({el:this,dateFmt:'yyyy-MM-dd HH:mm:ss',readOnly:true})"
/>
</td>
</tr>
...
...
@@ -1460,7 +1460,7 @@
<tr
class=
"anchangfei"
>
<td>
<span
class=
"span-width-90"
>
之前已收佣:
</span>
<input
type=
"number"
placeholder=
"请输入"
class=
"commission-before-
anchang
"
>
<input
type=
"number"
placeholder=
"请输入"
class=
"commission-before-
zhongjie
"
>
</td>
<td>
<span
class=
"span-width-90"
>
成交价:
</span>
...
...
public/resource/js/inspectionRecordAll.js
View file @
21e89343
...
...
@@ -384,7 +384,7 @@ define(['doT', 'text!temp/inspectionRecordAll_list_template_tpl.html', 'css!styl
dataType
:
"json"
,
success
:
function
(
data
)
{
if
(
data
.
code
==
200
)
{
// user.getList(1);
alert
(
'提交成功!'
)
}
else
{
alert
(
data
.
msg
)
}
...
...
public/resource/js/reportList.js
View file @
21e89343
...
...
@@ -23,6 +23,7 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
orderno_commission
:
''
,
bargainid_commission
:
''
,
price_commission
:
''
,
reportid_commission
:
''
,
init
:
function
()
{
//初始化dot
$
(
document
.
body
).
append
(
template
);
...
...
@@ -632,7 +633,7 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
bargain
.
orderno_commission
=
$
(
this
).
attr
(
'data-orderno'
)
;
bargain
.
bargainid_commission
=
$
(
this
).
attr
(
'data-bargainid'
)
;
bargain
.
price_commission
=
$
(
this
).
attr
(
'data-price'
)
;
bargain
.
reportid_commission
=
$
(
this
).
attr
(
'data-reportid'
)
;
bargain
.
resetInput
();
});
//点击收佣金按钮
...
...
@@ -889,16 +890,20 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
params
.
agent_id
=
userObj
.
id
;
params
.
agent_name
=
userObj
.
name
;
params
.
AuthToken
=
userObj
.
AuthToken
;
// params.report_id= record.reportID;//报备id
params
.
report_id
=
bargain
.
reportid_commission
;
params
.
order_id
=
bargain
.
orderid_commission
;
params
.
order_no
=
bargain
.
orderno_commission
;
params
.
house_number
=
$
(
".shop-num-liu"
).
val
();
//商铺号
params
.
industry_type
=
$
(
".shop-yetai-liu"
).
val
();
//业态
params
.
remark
=
$
(
".beizhu-liu"
).
val
();
params
.
transfer_name
=
$
(
".commission-transfer-name"
).
val
();
// params.receipt_number=$(".intention-num").val()
;
params
.
receipt_number
=
''
;
params
.
bargain_id
=
bargain
.
bargainid_commission
;
//成交报告id
params
.
income_time
=
(
new
Date
(
$
(
'#booked-date'
).
val
())).
getTime
()
*
0.001
;
params
.
income_time
=
(
new
Date
(
$
(
'.commission-income-time'
).
val
())).
getTime
()
*
0.001
;
params
.
received_money
=
$
(
".commission-before-zhongjie"
).
val
();
var
obj
=
{
'type'
:
$
(
".commission-type"
).
val
(),
...
...
@@ -920,9 +925,11 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
if
(
$
(
'.commission-pay-type'
).
val
()
==
91
){
params
.
type_ext
=
$
(
'.fee-type-zhongjie'
).
val
();
//中介费类型
params
.
is_dividend
=
$
(
'.commission-type-zhongjie'
).
val
();
//是否分红
}
else
{
params
.
is_dividend
=
$
(
'.commission-type-anchang'
).
val
();
//是否分红
}
$
.
ajax
({
'type'
:
'POST'
,
...
...
@@ -931,6 +938,8 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
dataType
:
"json"
,
success
:
function
(
data
)
{
if
(
data
.
code
==
200
)
{
alert
(
'提交成功!'
)
}
else
{
alert
(
data
.
msg
)
}
...
...
@@ -966,6 +975,7 @@ define(['doT', 'text!temp/reportList_template_tpl.html', 'css!style/home.css', '
$
(
".shop-yetai-liu"
).
val
(
''
);
//业态
$
(
".beizhu"
).
val
(
''
);
$
(
".incommission-type"
).
val
(
''
);
$
(
".commission-income-time"
).
val
(
''
);
$
(
".commission-before-zhongjie"
).
val
(
0
);
$
(
".commission-before-anchang"
).
val
(
0
);
$
(
'#container_body_img_area_liu'
).
html
(
''
);
...
...
public/resource/template/reportList_template_tpl.html
View file @
21e89343
...
...
@@ -48,7 +48,7 @@
<
a
class
=
"btn1 btn-success receipt-evidencing-list"
href
=
"#modal-receiptEvidencing"
data
-
toggle
=
"modal"
>
收款入账
<
/a
>
[
%
}
%
]
&
nbsp
;
<
a
class
=
"btn1 btn-success commission-btn"
href
=
"#modal-commission"
data
-
orderid
=
"[%= it['list'][item]['order_id'] %]"
data
-
orderno
=
"[%= it['list'][item]['order_no'] %]"
data
-
bargainid
=
"[%= it['list'][item]['id'] %]"
data
-
price
=
"[%= it['list'][item]['price'] %]"
data
-
toggle
=
"modal"
>
收佣金
<
/a
>
<
a
class
=
"btn1 btn-success commission-btn"
href
=
"#modal-commission"
data
-
orderid
=
"[%= it['list'][item]['order_id'] %]"
data
-
orderno
=
"[%= it['list'][item]['order_no'] %]"
data
-
bargainid
=
"[%= it['list'][item]['id'] %]"
data
-
price
=
"[%= it['list'][item]['price'] %]"
data
-
reportid
=
"[%= it['list'][item]['report_id'] %]"
data
-
toggle
=
"modal"
>
收佣金
<
/a
>
<
/td
>
<
/tr
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment