Signed-off-by: Bill Erickson <berickxx@gmail.com>
SET label = oils_i18n_gettext(1,'Delayed: Backorder', 'acqcr', 'label')
WHERE id = 1283 AND label = 'Backorder quantity';
+-- KCLS CUSTOM
+-- Go ahead and update all cancel reasons
+
+UPDATE acq.cancel_reason SET label = 'Canceled: ' || label
+ WHERE keep_debits is FALSE AND label NOT ILIKE 'cancel%';
+
+UPDATE acq.cancel_reason SET label = 'Delayed: ' || label
+ WHERE keep_debits is TRUE AND label NOT ILIKE 'delay%';
-- PO template mods used to live here.