优化了一些问题
This commit is contained in:
parent
4d72ebc303
commit
8d7a7f6777
@ -406,7 +406,6 @@ public class InvoiceController {
|
||||
new Filter("IN", "sync_status__c", Arrays.asList(syncStatus)),
|
||||
//new Filter("IS", "field_UB1hE__c", Arrays.asList("")),
|
||||
//new Filter("EQ", "name", Arrays.asList("HCFP2505-0003")),
|
||||
new Filter("N", "is_initial__c", Arrays.asList("yes")),
|
||||
new Filter("GT", "create_time", Arrays.asList("1748923200000")),
|
||||
new Filter("EQ", "life_status", Arrays.asList("normal"))
|
||||
), "custom_object_example1__c");
|
||||
|
@ -101,6 +101,8 @@ public class VendorController {
|
||||
vendorMap.put("tx_register_no", vendorData.getString("tax_identification_number") != null ? vendorData.getString("tax_identification_number") : "");
|
||||
//U8C编码
|
||||
vendorMap.put("f9w5_u8cnumber", vendorData.getString("historical_code__c") != null ? vendorData.getString("historical_code__c") : "");
|
||||
//是否施工单位
|
||||
vendorMap.put("f9w5_isconstruction", true);
|
||||
|
||||
// //联系人封装
|
||||
// Map contactMap = new HashMap<>();
|
||||
|
@ -46,6 +46,12 @@ public class DeviceInstallController {
|
||||
JSONObject getDeviceInstall = crmRequestUtil.getCRMList(Arrays.asList(
|
||||
new Filter("GT", "last_modified_time", Arrays.asList("1748923200000")),
|
||||
new Filter("EQ", "life_status", Arrays.asList("normal")),
|
||||
new Filter("ISN", "voltage_level__c", Arrays.asList("")),
|
||||
new Filter("ISN", "line_name__c", Arrays.asList("")),
|
||||
new Filter("ISN", "pole_number__c", Arrays.asList("")),
|
||||
new Filter("ISN", "install_time", Arrays.asList("")),
|
||||
new Filter("ISN", "is_maintenance_mode_enable__c", Arrays.asList("")),
|
||||
new Filter("ISN", "run_platform__c", Arrays.asList("")),
|
||||
//new Filter("EQ", "name", Arrays.asList("DEV202505260012"))
|
||||
new Filter("IN", "ledger_sync_status__c", Arrays.asList(syncStatus))
|
||||
), "DeviceObj");
|
||||
|
Loading…
x
Reference in New Issue
Block a user