opt:越南富佳优化增导出功能
This commit is contained in:
@@ -440,7 +440,8 @@ public class BigScreenServiceImpl implements BigScreenService {
|
||||
// 库位数量
|
||||
QueryWrapper<Structattr> structattrWrapper = new QueryWrapper<>();
|
||||
structattrWrapper.lambda().eq(Structattr::getStor_code, storCode)
|
||||
.eq(Structattr::getIs_used, Boolean.TRUE);
|
||||
.eq(Structattr::getIs_used, Boolean.TRUE)
|
||||
.ne(Structattr::getSect_code,"SSX");
|
||||
stats.put("locationCount", iStructattrService.count(structattrWrapper));
|
||||
|
||||
// 在库数量
|
||||
|
||||
@@ -480,7 +480,8 @@ public class PdaBigScreenServiceImpl implements PdaBigScreenService {
|
||||
// 库位数量
|
||||
QueryWrapper<Structattr> structattrWrapper = new QueryWrapper<>();
|
||||
structattrWrapper.lambda().eq(Structattr::getStor_code, storCode)
|
||||
.eq(Structattr::getIs_used, Boolean.TRUE);
|
||||
.eq(Structattr::getIs_used, Boolean.TRUE)
|
||||
.ne(Structattr::getSect_code,"SSX");
|
||||
stats.put("locationCount", iStructattrService.count(structattrWrapper));
|
||||
|
||||
// 在库数量
|
||||
|
||||
@@ -27,21 +27,21 @@ export function edit(data) {
|
||||
export function getFormType() {
|
||||
return request({
|
||||
url: 'api/bmFormStruc/getTypes',
|
||||
method: 'get',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
export function getParentFormTypes() {
|
||||
return request({
|
||||
url: 'api/bmFormStruc/getParentFormTypes',
|
||||
method: 'get',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
export function getSonFormData(id) {
|
||||
return request({
|
||||
url: 'api/pmFormData/getSonFormData/' + id,
|
||||
method: 'get',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user