SalesOrder.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. public static $state = [
  37. self::State_zero => '未派单',
  38. self::State_one => '已派销售',
  39. self::State_two => '已派总设或分社',
  40. self::State_three => '已下施工单',
  41. self::State_four => '退换货',
  42. self::State_five => '完结',
  43. ];
  44. //快递件
  45. const State2_zero = 0;//未发货
  46. const State2_one = 1;//已发货
  47. public static $state2 = [
  48. self::State2_zero => '未发货',
  49. self::State2_one => '已发货',
  50. ];
  51. public static $prefix = [
  52. self::Model_type_one => 'T9XS.',
  53. self::Model_type_two => 'T9SO.',
  54. self::Model_type_three => 'T9XS.'
  55. ];
  56. }