Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. # Filter rules
  2.  
  3. 1. Filter **can be** generated by system
  4. 2. Operator decides which filters should be applied
  5.  
  6. # Product filter sources
  7.  
  8. | Filter group | Field | Attribute | Option | Yarn | Patterns | Hooks | Needles |
  9. |--------------|-------|-----------|--------|------|----------|-------|---------|
  10. | color | | | ✔ | ✔ | | | |
  11. | yarn-length | | Length | | ✔ | | | |
  12. | pin-sze, pin-size-uk, pin-size-us | | Recommended needles | | ✔ | | | |
  13. | gauge | | Gauge | | ✔ | ✔ | | |
  14. | brand | brand | | | ✔ | ✔ | ✔ | ✔ |
  15. | category | category | | | ✔ | ✔ | ✔ | ✔ |
  16. | quality | category | | | ✔ | | | |
  17. | group | | Yarn Weight | | ✔ | | | |
  18. | type | | Type |️ | | ✔ | | |
  19. | designer | | Designer | | | ✔ | | |
  20. | wear-size | | Size | | | ✔ | | |
  21. | size | | | ✔ | | | ✔ | ✔ |
  22. | difficulty | | Difficulty level | | | ✔ | | |
  23. | material | | Material | | | | ✔ | |
  24.  
  25. # Materialized tables dependencies
  26.  
  27. | # | Table |
  28. |----|-------|
  29. | T1 | oc_category |
  30. | T2 | oc_filter |
  31. | T3 | oc_option_value_filter |
  32. | T4 | oc_product |
  33. | T5 | oc_product_filter |
  34. | T6 | oc_product_option_value |
  35. | T7 | oc_product_option_value_to_category |
  36. | T8 | oc_product_to_category |
  37.  
  38.  
  39. | # | Materialized table | Dependencies |
  40. |---|--------------------|--------------|
  41. | M1 | oc_product_category | oc_product_to_category <br>oc_product <br>oc_product_option_value_to_category <br>oc_product_option_value |
  42. | M2 | oc_product_category_filter_mode_to_filter | oc_product_category_filter_mode <br>oc_product_filter <br>oc_product_option_value_to_filter |
  43. | M3 | oc_product_category_filter_mode | oc_product_to_category_depth <br>oc_product_to_category <br>oc_product <br>oc_product_option_value_to_category <br>oc_product_option_value |
  44. | M4 | oc_product_category_to_filter | oc_product_category <br>oc_product_filter <br>oc_product_option_value_to_filter |
  45. | M5 | oc_product_option_value_to_filter | oc_product_option_value <br>oc_product <br>oc_option_value_filter <br>oc_filter |
  46. | M6 | oc_product_to_category_depth | oc_product_to_category <br>oc_category <br> |
  47.  
  48. | # | T1 | T2 | T3 | T4 | T5 | T6 | T7 | T8 | M1 | M3 | M5 |
  49. |----|----|----|----|----|----|----|----|----|----|----|----|
  50. | M1 | | | | ✔ | | ✔ | ✔ | ✔ | | | |
  51. | M2 | | | | | ✔ | | | | | ✔ | ✔ |
  52. | M3 | | | | ✔ | | ✔ | ✔ | ✔ | | | |
  53. | M4 | | | | | ✔ | | | | ✔ | | ✔ |
  54. | M5 | | ✔ | ✔ | ✔ | | ✔ | | | | | |
  55. | M6 | ✔ | | | | | | | ✔ | | | |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement