Compare commits
3 Commits
5d47ccf7a5
...
1f012e2c5d
| Author | SHA1 | Date |
|---|---|---|
|
|
1f012e2c5d | |
|
|
f14a8a0da3 | |
|
|
a64f6b8d59 |
|
|
@ -34,7 +34,7 @@
|
|||
assess_type NUMBER(2) not null,
|
||||
pk_awards NUMBER(6) default 1 not null,
|
||||
assess_target NUMBER(17,6) default 0 not null,
|
||||
assess_pk_awards NUMBER(6) default 1 not null,,
|
||||
assess_pk_awards NUMBER(6) default 1 not null,
|
||||
is_examine NUMBER(1) default 1 not null,
|
||||
assess_status NUMBER(2) not null,
|
||||
month_balance NUMBER(17,6) default 0 not null,
|
||||
|
|
|
|||
|
|
@ -106,6 +106,10 @@ public class SaDeliverUnhandledController extends BaseController {
|
|||
param.setAreaScopeList(userAuthorityDTO.getRoleAreaScopeList());
|
||||
param.setVertexIdList(userAuthorityDTO.getVertexIdList());
|
||||
param.setTeamList(userAuthorityDTO.getUserTeamList());
|
||||
// 兼容调换货产品
|
||||
if (CollectionUtil.isEmpty(param.getPkWaresList())) {
|
||||
param.setPkWaresList(Collections.singletonList(0));
|
||||
}
|
||||
|
||||
startPage();
|
||||
List<DeliverUnhandledVO> resultList = iSaOrderItemsService.queryDeliverUnhandledList(param, pkCountry);
|
||||
|
|
@ -149,6 +153,10 @@ public class SaDeliverUnhandledController extends BaseController {
|
|||
param.setAreaScopeList(userAuthorityDTO.getRoleAreaScopeList());
|
||||
param.setVertexIdList(userAuthorityDTO.getVertexIdList());
|
||||
param.setTeamList(userAuthorityDTO.getUserTeamList());
|
||||
// 兼容调换货产品
|
||||
if (CollectionUtil.isEmpty(param.getPkWaresList())) {
|
||||
param.setPkWaresList(Collections.singletonList(0));
|
||||
}
|
||||
|
||||
List<DeliverUnhandledVO> resultList = iSaOrderItemsService.queryDeliverUnhandledList(param, pkCountry);
|
||||
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@
|
|||
from sa_order so
|
||||
where so.del_flag = 0
|
||||
and so.order_status = 1
|
||||
and so.order_type in (3, 26, 10)
|
||||
and so.order_type in (3, 14, 26, 10)
|
||||
and to_char(so.pay_time, 'yyyy-mm-dd') =
|
||||
to_char(sysdate, 'yyyy-mm-dd')
|
||||
) b on 1 = 1
|
||||
|
|
@ -141,7 +141,7 @@
|
|||
from sa_order so
|
||||
where so.del_flag = 0
|
||||
and so.order_status = 1
|
||||
and so.order_type in (3, 26, 10)
|
||||
and so.order_type in (3, 14, 26, 10)
|
||||
and to_char(so.pay_time, 'yyyy-mm-dd') =
|
||||
to_char(sysdate - 1, 'yyyy-mm-dd')
|
||||
) b on 1 = 1
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
from sa_order so
|
||||
where so.del_flag = 0
|
||||
and so.order_status = 1
|
||||
and so.order_type in (3, 26, 10)
|
||||
and so.order_type in (3, 14, 26, 10)
|
||||
and to_char(so.pay_time, 'yyyy-mm') =
|
||||
to_char(sysdate, 'yyyy-mm')
|
||||
) b on 1 = 1
|
||||
|
|
|
|||
Loading…
Reference in New Issue