SalesOrder.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace App\Model;
  3. class SalesOrder extends UseScopeBaseModel
  4. {
  5. protected $table = "sales_order"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. const range_function = 'salesOrderRange';
  10. const Order_type_one = 1;//安装件
  11. const Order_type_two = 2;//快递件
  12. public static $order_type = [
  13. self::Order_type_one => '安装件',
  14. self::Order_type_two => '快递件',
  15. ];
  16. const Model_type_one = 1; // 线下订单合同
  17. const Model_type_two = 2; // 分社订货合同
  18. const Model_type_three = 3; // 二手车精品加装合同
  19. public static $model_type = [
  20. self::Model_type_one,
  21. self::Model_type_two,
  22. self::Model_type_three
  23. ];
  24. public static $model_type_title = [
  25. self::Model_type_one => '线下订单合同',
  26. self::Model_type_two => '分社订货合同',
  27. self::Model_type_three => '二手车精品加装合同',
  28. ];
  29. //安装件
  30. const State_zero = 0;//未确认
  31. const State_one = 1;//待确认
  32. const State_two = 2;//已确认
  33. const State_three = 3;//已派销售
  34. const State_four = 4;//已派总设或分社
  35. const State_five = 5;//已下施工单
  36. const State_six = 6;//退换货
  37. const State_seven = 7;//完结
  38. public static $state = [
  39. self::State_zero => '未确认',
  40. self::State_one => '待确认',
  41. self::State_two => '已确认',
  42. self::State_three => '已派销售',
  43. self::State_four => '已派总设或分社',
  44. self::State_five => '已下施工单',
  45. self::State_six => '退换货',
  46. self::State_seven => '完结',
  47. ];
  48. //快递件
  49. const State2_zero = 0;//未发货
  50. const State2_one = 1;//已发货
  51. public static $state2 = [
  52. self::State2_zero => '未发货',
  53. self::State2_one => '已发货',
  54. ];
  55. public static $prefix = [
  56. self::Model_type_one => 'T9XS.',
  57. self::Model_type_two => 'T9SO.',
  58. self::Model_type_three => 'T9XS.'
  59. ];
  60. }