I’m receiving this Skuid error: Error:expecting a colon, found ‘)’. I’ve narrowed the issue down to the condition where one model date field is compared to the value of another model’s date field. The error is only displayed when the ‘value’ model date field is null. This was not an error received before upgrading to Banzai. Any ideas?
You can see the very last condition in the SOQL is CheetahBMS__Out_Date__c <= ), I’m assuming that’s the problem.
An error occurred while attempting to perform the following SOQL query: SELECT SUM(CheetahBMS__Quantity__c) AggQuantity,MAX(CheetahBMS__Product_Group__r.Name) maxCheetahBMSProductGroup,CheetahBMS__Product_Group__r.Id ProductAggId FROM CheetahBMS__Order_Line__c WHERE (CheetahBMS__Status__c != ‘Checked In’)AND(CheetahBMS__Status__c != ‘Checked Out’)AND(CheetahBMS__Product_Group__r.CheetahBMS__Consumable__c = false)AND((CheetahBMS__In_Date__c = null)OR(((CheetahBMS__Out_Date__c <= 2015-10-02T05:00:00.000+0000)AND(CheetahBMS__In_Date__c >= 2015-10-02T05:00:00.000+0000))OR((CheetahBMS__Out_Date__c >= 2015-10-02T05:00:00.000+0000)AND(CheetahBMS__Out_Date__c <= )))) GROUP BY CheetahBMS__Product_Group__r.Id Error:expecting a colon, found ‘)’

