SalesOrder.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. //安装件
  25. const State_zero = 0;//未派单
  26. const State_one = 1;//已派销售
  27. const State_two = 2;//已派公司或分社
  28. const State_three = 3;//已下施工单
  29. const State_four = 4;//退换货
  30. const State_five = 5;//完结
  31. public static $state = [
  32. self::State_zero => '未派单',
  33. self::State_one => '已派销售',
  34. self::State_two => '已派总设或分社',
  35. self::State_three => '已下施工单',
  36. self::State_four => '退换货',
  37. self::State_five => '完结',
  38. ];
  39. //快递件
  40. const State2_zero = 0;//未发货
  41. const State2_one = 1;//已发货
  42. public static $state2 = [
  43. self::State2_zero => '未发货',
  44. self::State2_one => '已发货',
  45. ];
  46. public static $prefix = [
  47. self::Model_type_one => 'T9XS.',
  48. self::Model_type_two => 'T9SO.',
  49. self::Model_type_three => 'T9XS.'
  50. ];
  51. }