Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
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
蒋勇
zhichan
Commits
7593175d
Commit
7593175d
authored
Dec 13, 2019
by
赵庆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
ebc1c880
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
17 additions
and
27 deletions
+17
-27
bpo-stat/app/base/controller/impl/all/electronicContractCtl.js
+0
-2
bpo-stat/app/base/controller/impl/all/loadCtl.js
+0
-2
bpo-stat/app/base/controller/impl/all/recruitCtl.js
+0
-2
bpo-stat/app/base/controller/impl/all/taxinfoCtl.js
+0
-2
bpo-stat/app/base/controller/impl/all/transactioninCtl.js
+0
-2
bpo-stat/app/base/db/models/all/recruit.js
+1
-1
bpo-stat/app/base/service/impl/all/electroniccontractSve.js
+3
-3
bpo-stat/app/base/service/impl/all/loadSve.js
+3
-3
bpo-stat/app/base/service/impl/all/merchantSve.js
+1
-1
bpo-stat/app/base/service/impl/all/recruitSve.js
+3
-3
bpo-stat/app/base/service/impl/all/taxinfoSve.js
+3
-3
bpo-stat/app/base/service/impl/all/transactioninSve.js
+3
-3
No files found.
bpo-stat/app/base/controller/impl/all/electronicContractCtl.js
View file @
7593175d
...
...
@@ -4,12 +4,10 @@ const CtlBase = require("../../ctl.base");
class
ElectronicContractCtl
extends
CtlBase
{
constructor
()
{
super
(
"all"
,
CtlBase
.
getServiceName
(
ElectronicContractCtl
));
this
.
body
=
"智薪云公司1"
;
}
async
allList
(
qobj
){
var
params
=
qobj
.
search
||
{};
params
.
sign_body
=
this
.
body
;
this
.
doTimeCondition
(
params
,
[
"signBegin"
,
"signEnd"
]);
try
{
var
page
=
await
this
.
service
.
signPage
(
params
);
...
...
bpo-stat/app/base/controller/impl/all/loadCtl.js
View file @
7593175d
...
...
@@ -4,12 +4,10 @@ const CtlBase = require("../../ctl.base");
class
LoadCtl
extends
CtlBase
{
constructor
()
{
super
(
"all"
,
CtlBase
.
getServiceName
(
LoadCtl
));
this
.
body
=
"智薪云公司1"
;
}
async
allList
(
qobj
){
var
params
=
qobj
.
search
||
{};
params
.
sign_body
=
this
.
body
;
this
.
doTimeCondition
(
params
,
[
"signBegin"
,
"signEnd"
]);
try
{
var
page
=
await
this
.
service
.
signPage
(
params
);
...
...
bpo-stat/app/base/controller/impl/all/recruitCtl.js
View file @
7593175d
...
...
@@ -4,12 +4,10 @@ const CtlBase = require("../../ctl.base");
class
RecruitCtl
extends
CtlBase
{
constructor
()
{
super
(
"all"
,
CtlBase
.
getServiceName
(
RecruitCtl
));
this
.
body
=
"智薪云公司1"
;
}
async
allList
(
qobj
){
var
params
=
qobj
.
search
||
{};
params
.
sign_body
=
this
.
body
;
this
.
doTimeCondition
(
params
,
[
"signBegin"
,
"signEnd"
]);
try
{
var
page
=
await
this
.
service
.
signPage
(
params
);
...
...
bpo-stat/app/base/controller/impl/all/taxinfoCtl.js
View file @
7593175d
...
...
@@ -4,12 +4,10 @@ const CtlBase = require("../../ctl.base");
class
TaxinfoCtl
extends
CtlBase
{
constructor
()
{
super
(
"all"
,
CtlBase
.
getServiceName
(
TaxinfoCtl
));
this
.
body
=
"智薪云公司1"
;
}
async
allList
(
qobj
){
var
params
=
qobj
.
search
||
{};
params
.
sign_body
=
this
.
body
;
this
.
doTimeCondition
(
params
,
[
"signBegin"
,
"signEnd"
]);
try
{
var
page
=
await
this
.
service
.
signPage
(
params
);
...
...
bpo-stat/app/base/controller/impl/all/transactioninCtl.js
View file @
7593175d
...
...
@@ -4,12 +4,10 @@ const CtlBase = require("../../ctl.base");
class
TransactioninCtl
extends
CtlBase
{
constructor
()
{
super
(
"all"
,
CtlBase
.
getServiceName
(
TransactioninCtl
));
this
.
body
=
"智薪云公司1"
;
}
async
allList
(
qobj
){
var
params
=
qobj
.
search
||
{};
params
.
sign_body
=
this
.
body
;
this
.
doTimeCondition
(
params
,
[
"signBegin"
,
"signEnd"
]);
try
{
var
page
=
await
this
.
service
.
signPage
(
params
);
...
...
bpo-stat/app/base/db/models/all/recruit.js
View file @
7593175d
...
...
@@ -21,7 +21,7 @@ module.exports = function(sequelize, DataTypes) {
allowNull
:
true
},
phone_no
:
{
type
:
DataTypes
.
INTEGER
(
11
),
type
:
DataTypes
.
STRING
(
20
),
allowNull
:
true
},
recruit_count
:
{
...
...
bpo-stat/app/base/service/impl/all/electroniccontractSve.js
View file @
7593175d
...
...
@@ -17,9 +17,9 @@ class ElectronicContractService extends ServiceBase {
[
this
.
db
.
Op
.
like
]:
"%"
+
params
.
company_name
+
"%"
};
}
where
.
sign_body
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
sign_body
}
;
if
(
params
.
sign_body
)
{
where
.
sign_body
=
params
.
sign_body
;
}
this
.
addWhereTime
(
where
,
'completed_date'
,
params
.
signBegin
,
params
.
signEnd
,
true
);
var
orderby
=
[
[
"id"
,
'desc'
]
...
...
bpo-stat/app/base/service/impl/all/loadSve.js
View file @
7593175d
...
...
@@ -17,9 +17,9 @@ class LoadService extends ServiceBase {
[
this
.
db
.
Op
.
like
]:
"%"
+
params
.
company_name
+
"%"
};
}
where
.
sign_body
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
sign_body
}
;
if
(
params
.
sign_body
)
{
where
.
sign_body
=
params
.
sign_body
;
}
this
.
addWhereTime
(
where
,
'begin_time'
,
params
.
signBegin
,
params
.
signEnd
,
true
);
var
orderby
=
[
[
"id"
,
'desc'
]
...
...
bpo-stat/app/base/service/impl/all/merchantSve.js
View file @
7593175d
...
...
@@ -18,7 +18,7 @@ class MerchantService extends ServiceBase {
};
}
if
(
params
.
sign_body
)
{
where
.
sign_body
=
params
.
sign_body
where
.
sign_body
=
params
.
sign_body
;
}
this
.
addWhereTime
(
where
,
'begin_time'
,
params
.
signBegin
,
params
.
signEnd
,
true
);
var
orderby
=
[
...
...
bpo-stat/app/base/service/impl/all/recruitSve.js
View file @
7593175d
...
...
@@ -17,9 +17,9 @@ class RecruitService extends ServiceBase {
[
this
.
db
.
Op
.
like
]:
"%"
+
params
.
company_name
+
"%"
};
}
where
.
sign_body
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
sign_body
}
;
if
(
params
.
sign_body
)
{
where
.
sign_body
=
params
.
sign_body
;
}
this
.
addWhereTime
(
where
,
'publish_date'
,
params
.
signBegin
,
params
.
signEnd
,
true
);
var
orderby
=
[
[
"id"
,
'desc'
]
...
...
bpo-stat/app/base/service/impl/all/taxinfoSve.js
View file @
7593175d
...
...
@@ -17,9 +17,9 @@ class TaxinfoService extends ServiceBase {
[
this
.
db
.
Op
.
like
]:
"%"
+
params
.
id_no
+
"%"
};
}
where
.
sign_body
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
sign_body
}
;
if
(
params
.
sign_body
)
{
where
.
sign_body
=
params
.
sign_body
;
}
this
.
addWhereTime
(
where
,
'tax_time'
,
params
.
signBegin
,
params
.
signEnd
,
true
);
var
orderby
=
[
[
"id"
,
'desc'
]
...
...
bpo-stat/app/base/service/impl/all/transactioninSve.js
View file @
7593175d
...
...
@@ -17,9 +17,9 @@ class TransactioninService extends ServiceBase {
[
this
.
db
.
Op
.
like
]:
"%"
+
params
.
company_name
+
"%"
};
}
where
.
sign_body
=
{
[
this
.
db
.
Op
.
eq
]:
params
.
sign_body
}
;
if
(
params
.
sign_body
)
{
where
.
sign_body
=
params
.
sign_body
;
}
this
.
addWhereTime
(
where
,
'transaction_time'
,
params
.
signBegin
,
params
.
signEnd
,
true
);
var
orderby
=
[
[
"id"
,
'desc'
]
...
...
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