(in-package :it.bese.ucw) (defun multiple-value-funcall->list (function &rest args) (multiple-value-call #'list (apply function args))) (defmacro multiple-value-bindf (vars form &body body) `(destructuring-bind ,vars (multiple-value-funcall->list #',(car form) ,@(cdr form)) ,@body)) (defslot-presentation mewa-boolean-slot-presentation (boolean-slot-presentation) ((slot-name :accessor slot-name :initarg :slot-name)) (:type-name mewa-boolean)) (defslot-presentation mewa-string-slot-presentation (string-slot-presentation ) ((slot-name :accessor slot-name :initarg :slot-name)) (:type-name mewa-string)) (defslot-presentation mewa-number-slot-presentation (number-slot-presentation) ((slot-name :accessor slot-name :initarg :slot-name)) (:type-name mewa-number)) (defslot-presentation mewa-integer-slot-presentation (integer-slot-presentation) ((slot-name :accessor slot-name :initarg :slot-name)) (:type-name mewa-integer)) (defslot-presentation mewa-currency-slot-presentation (currency-slot-presentation) ((slot-name :accessor slot-name :initarg :slot-name)) (:type-name mewa-currency)) (defslot-presentation clsql-wall-time-slot-presentation (mewa-relation-slot-presentation) () (:type-name clsql-sys:wall-time)) (defmethod presentation-slot-value ((slot clsql-wall-time-slot-presentation) instance) (let ((date (call-next-method))) (when date (multiple-value-bind (y m d) (clsql:time-ymd date) (format nil "~a/~a/~a" m d y))))) (defmethod (setf presentation-slot-value) ((value string) (slot clsql-wall-time-slot-presentation) instance) (let ((new-time (clsql:parse-date-time (remove #\Space value))) (old-time (when (slot-boundp instance (slot-name slot)) (slot-value instance (slot-name slot))))) (unless (or (eql old-time new-time) (when (and new-time old-time) (equal :equal (clsql:time-compare new-time old-time)))) (setf (presentation-slot-value slot instance) new-time )))) (defmethod label :around ((slot clsql-wall-time-slot-presentation)) (concatenate 'string (call-next-method) " (mm/dd/yyyy)")) (defmethod present-slot ((slot clsql-wall-time-slot-presentation) instance) (let ((date (presentation-slot-value slot instance)) (input-id (string (gensym)))) (if (and date (not (editablep slot))) (<:span (<:as-html date))) (when (editablep slot) ( " (foreign-instance slot) " from " instance ) (let* ((i (foreign-instance slot)) (pres (mewa::make-presentation i :type :one-line :initargs (list :global-properties (list :editablep nil :linkedp nil))))) (when (and (ucw::parent slot) (slot-boundp slot 'ucw::place)) (setf (component.place pres) (component.place (ucw::parent slot)))) (when i ( 0 (current slot)) ;;what to do here is open to debate (setf (current slot) (- (len slot)(number-to-display slot) )))) (defmethod present-slot ((slot has-very-many-slot-presentation) instance) ;;(<:as-html "isance: " instance) (>")) (call-next-method) (<:as-html "total :" (len slot))) (defmethod get-foreign-instances :around ((slot has-very-many-slot-presentation) instance) (let ((f (call-next-method))) (setf (len slot) (length f)) (setf (instances slot) f) (loop for cons on (nthcdr (current slot) f) for i from 0 upto (number-to-display slot) collect (car cons)))) (defslot-presentation has-a-slot-presentation (one-of-presentation) ((key :initarg :key :accessor key)) (:type-name has-a)) (defmethod get-foreign-slot-value ((slot has-a-slot-presentation) (object t) (slot-name t)) (slot-value object slot-name)) (defmethod present-slot ((slot has-a-slot-presentation) instance) (<:as-html (presentation-slot-value slot instance)) (if (editablep slot) (