public virtual void KCBulkProductSyncConfig_SyncType_FieldUpdated(PXCache sender, PXFieldUpdatedEventArgs e)
 {
     if (!(e.Row is KCBulkProductSyncConfig row))
     {
         return;
     }
     foreach (var store in Stores.Select().RowCast <KCStore>())
     {
         store.SyncType = row.SyncType;
         Stores.Update(store);
     }
 }
예제 #2
0
 public virtual void UpdateProcessed(LUM3DCartProcessOrder processOrder)
 {
     ImportOrderList.Cache.SetValue <LUM3DCartProcessOrder.processed>(processOrder, true);
     ImportOrderList.Update(processOrder);
 }