Skip to content

Instantly share code, notes, and snippets.

@ejholmes
Created March 12, 2012 21:15
Show Gist options
  • Save ejholmes/2024724 to your computer and use it in GitHub Desktop.
Save ejholmes/2024724 to your computer and use it in GitHub Desktop.
@HttpPost
global static void updateOrder(Order__c order) {
if (order.Id == null && order.NavisionID__c != null) {
upsert order Order__c.NavisionID__c;
} else {
upsert order;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment