Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvsuo-pc
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhilin
lvsuo-pc
Commits
f919ce34
Commit
f919ce34
authored
Dec 25, 2024
by
lizhilin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新
parent
137aac13
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
30 deletions
+30
-30
app/Admin/Controllers/CovenantController.php
+1
-1
app/Admin/Controllers/CovenantReceivePaymentController.php
+4
-4
app/Admin/Controllers/LawyerCollectController.php
+25
-25
public/vendor/dcat-admin/dcat/css/dcat-app.css
+0
-0
No files found.
app/Admin/Controllers/CovenantController.php
View file @
f919ce34
...
...
@@ -29,7 +29,7 @@ protected function grid()
$grid
->
model
()
->
orderBy
(
'id'
,
'DESC'
);
//$grid->column('id')->sortable();
$grid
->
column
(
'number'
);
$grid
->
column
(
'cname'
);
$grid
->
column
(
'cname'
)
->
width
(
200
)
;
$grid
->
column
(
'ctype'
)
->
display
(
function
(
$val
)
{
return
Covenant
::
CTYPE
[
$val
];
});
...
...
app/Admin/Controllers/CovenantReceivePaymentController.php
View file @
f919ce34
...
...
@@ -61,10 +61,10 @@ protected function grid()
<th width="90"></th>
<th width="90">合计</th>
<th width="90"></th>
<th width="
105
"></th>
<th width="90">
'
.
sprintf
(
'%.2f'
,
$invoicedMoney
)
.
'</th>
<th width="90">
'
.
sprintf
(
'%.2f'
,
$receivedMoney
)
.
'</th>
<th width="90">
'
.
$receiptNoinvoice
.
'</th>
<th width="
90
"></th>
<th width="90">'
.
sprintf
(
'%.2f'
,
$invoicedMoney
)
.
'</th>
<th width="90">'
.
sprintf
(
'%.2f'
,
$receivedMoney
)
.
'</th>
<th width="90">'
.
$receiptNoinvoice
.
'</th>
<th width="90"> '
.
$invoiceNoreceipt
.
'</th>
</tr>
</thead>
...
...
app/Admin/Controllers/LawyerCollectController.php
View file @
f919ce34
...
...
@@ -78,18 +78,18 @@ protected function grid()
<tr>
<th width="100" style="text-align:right;">合计</th>
<th width="90"> </th>
<th width="
100" style="text-align:center
;">'
.
sprintf
(
'%.2f'
,
$received_amount
)
.
'</th>
<th width="80" style="text-align:
center
;">'
.
sprintf
(
'%.2f'
,
$commissionAmount
)
.
'</th>
<th width="90" style="text-align:
center
;">'
.
sprintf
(
'%.2f'
,
$received_noinvoiced
)
.
'</th>
<th width="90" style="text-align:
center
;">'
.
sprintf
(
'%.2f'
,
$invoiced_noreceived
)
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$costTotal
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$basicSalary
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$special_additional
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$social
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$accumulation_fund
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$posting_tickets
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$advance_fee
.
'</th>
<th width="90" style="text-align:
center
;">'
.
$payable_amount
.
'</th>
<th width="
90" style="text-align:left
;">'
.
sprintf
(
'%.2f'
,
$received_amount
)
.
'</th>
<th width="80" style="text-align:
left
;">'
.
sprintf
(
'%.2f'
,
$commissionAmount
)
.
'</th>
<th width="90" style="text-align:
left
;">'
.
sprintf
(
'%.2f'
,
$received_noinvoiced
)
.
'</th>
<th width="90" style="text-align:
left
;">'
.
sprintf
(
'%.2f'
,
$invoiced_noreceived
)
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$costTotal
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$basicSalary
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$special_additional
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$social
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$accumulation_fund
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$posting_tickets
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$advance_fee
.
'</th>
<th width="90" style="text-align:
left
;">'
.
$payable_amount
.
'</th>
</tr>
</thead>
...
...
@@ -120,43 +120,43 @@ protected function grid()
// 'text-align:center',
// ]);
$grid
->
column
(
'lname'
,
'律师名称'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'commission_ratio'
,
'提成比例(%)'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'receipt_money'
,
'创收已收款'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'commission_amount'
,
'提成金额'
)
->
width
(
80
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'receipt_noinvoice'
,
'已收款未开票'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'invoice_noreceipt'
,
'已开票未收款'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'cost'
,
'成本合计'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'basic_salary'
,
'基本工资'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'special_additional'
,
'专项附加'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'social'
,
'社保'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'accumulation_fund'
,
'公积金'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'posting_tickets_fee'
,
'贴票金额'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'advance_fee'
,
'预支款'
)
->
width
(
90
)
->
style
([
'text-align:
center
'
,
'text-align:
left
'
,
]);
$grid
->
column
(
'payable_commission'
,
'可结算提成'
)
->
width
(
90
);
...
...
public/vendor/dcat-admin/dcat/css/dcat-app.css
View file @
f919ce34
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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