截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

GoodsOneSpec.php 3.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\validate\goods;
  20. use app\common\basics\Validate;
  21. use app\common\enum\FreightEnum;
  22. use app\common\model\Freight;
  23. /**
  24. * 单个规格验证
  25. * Class GoodsOneSpec
  26. * @package app\shop\validate\goods
  27. */
  28. class GoodsOneSpec extends Validate
  29. {
  30. protected $rule = [
  31. 'one_market_price' => [],
  32. 'one_price' => 'require|egt:0.01|checkExpress',
  33. 'one_stock' => 'require|integer|egt:0',
  34. 'one_weight' => [],
  35. 'one_volume' => [],
  36. 'one_chengben_price' => [],
  37. ];
  38. protected $message = [
  39. 'one_market_price.require' => '请输入价格',
  40. 'one_market_price.egt' => '价格必须大于或等于0.01',
  41. 'one_price.require' => '请输入价格',
  42. 'one_price.egt' => '价格必须大于或等于0.01',
  43. 'one_chengben_price.require'=> '请输入成本价',
  44. 'one_chengben_price.egt' => '成本价必须大于或等于0.01',
  45. 'one_stock.require' => '请输入库存',
  46. 'one_stock.integer' => '库存必须为整型',
  47. 'one_stock.egt' => '库存必须大于或等于0',
  48. 'one_weight.require' => '请输入重量',
  49. 'one_weight.egt' => '重量必须为大于或等于0',
  50. 'one_volume.require' => '请输入体积',
  51. 'one_volume.egt' => '体积必须为大于或等于0',
  52. ];
  53. function checkExpress($value, $rule, $data)
  54. {
  55. $express_type = input('express_type');
  56. // 运费模版
  57. if ($express_type != 3) {
  58. return true;
  59. }
  60. $freight = Freight::where('id', input('express_template_id/d'))->findOrEmpty();
  61. if (empty($freight['id'])) {
  62. return '运费模板不存在';
  63. }
  64. switch ($freight['charge_way']) {
  65. case FreightEnum::CHARGE_WAY_WEIGHT:
  66. if (empty($data['one_weight']) || $data['one_weight'] <= 0) {
  67. return '当前运费模板是按重量计算运费,请输入重量';
  68. }
  69. break;
  70. case FreightEnum::CHARGE_WAY_VOLUME:
  71. if (empty($data['one_volume']) || $data['one_volume'] <= 0) {
  72. return '当前运费模板是按体积计算运费,请输入体积';
  73. }
  74. break;
  75. default:
  76. break;
  77. }
  78. return true;
  79. }
  80. }