Added PreorderStatusflags to PreorderHistory

This commit is contained in:
Frank Schubert
2024-07-29 16:13:04 +02:00
parent 4abaa50f56
commit 0dce17ac25
4 changed files with 33 additions and 2 deletions

View File

@@ -2,4 +2,15 @@
class PreorderStatusflagValue extends mfBaseModel {
protected function afterSave() {
if($this->_old_data->value != $this->value) {
$history = PreorderHistoryModel::create([
"preorder_id" => $this->preorder_id,
"key" => "preorderstatusflag-".$this->flag_id."-value",
"old_value" => $this->_old_data->value,
"new_value" => $this->data->value
]);
$history->save();
}
}
}