草庐IT

php - 创建一个查询,该查询将检查数量是否在数量范围之间,并使用 laravel 中的 jquery 从产品 ID 输出一定数量的基础

coder 2024-04-15 原文

我正在使用具有自动完成 jquery 脚本的销售发票应用程序。

它会自动加载放置在隐藏字段中的产品 ID。这是我的自动完成脚本

//autocomplete script
$(document).on('focus','.autocomplete_txt',function(){
  type = $(this).data('type');

  if(type =='product_code' )autoType='product_code'; 
  if(type =='product_name' )autoType='name'; 
  if(type =='product_price' )autoType='price'; 
  if(type =='product_cost' )autoType='cost'; 
  if(type =='quantity' )autoType='quantity'; 
  if(type =='product_id' )autoType='id'; 

   $(this).autocomplete({
       minLength: 0,
       source: function( request, response ) {
            $.ajax({
                url: "{{ route('searchaSaleItems') }}",
                dataType: "json",
                data: {
                    term : request.term,
                    type : type,
                },

                success: function(data) {
                  if(!data.length){
                    var notFound = [
                      {
                      label: 'No matches found', 
                      value: response.term
                      }
                    ];
                      response(notFound);
                  } else {
                    var array = $.map(data, function (item) {
                      return {
                          label: item[autoType],
                          value: item[autoType],
                          data : item
                      }
                    });
                    response(array)
                  }
                }
            });
       },
        select: function( event, ui ) {
          var data = ui.item.data; 
          var arr = []; 

          id_arr = $(this).attr('id');
          id = id_arr.split("_");
          elementId = id[id.length-1];

          $('.product_code').each(function() {
            arr.push($(this).val());
          });

          // added logic to check if there are duplicates in the array we just populated with product codes, checked against the passed in product code 
          if(arr.includes(data.product_code)) {

            $('#add').prop('disabled', true);
            $('#submit').prop('disabled', true);
            $('#row'+rowCount+'').addClass('danger');
            // $('#duplicate_entry_'+elementId).text('Duplicate entry. Replace product code to continue. ');
            alert('Duplicate entry. Replace product code to continue. ');
          } else {
            $('#add').prop('disabled', false);
            $('#submit').prop('disabled', false);
            $('#row'+rowCount+'').removeClass('danger');

            $('#product_code_'+elementId).val(data.product_code).prop('readonly', true);
            $('#product_name_'+elementId).val(data.name).prop('readonly', true);
            $('#product_cost_'+elementId).val(data.cost);
            $('#product_price_'+elementId).val(data.price).prop('min', data.price);
            $('#product_id_'+elementId).val(data.id);
            $('#quantity_'+elementId).prop('max', data.quantity);
            $('#quantity_warning_'+elementId).text('You have '+data.quantity+' in your stocks');
            $('#price_minimum_'+elementId).text('The minimum price is '+data.price);
          }
        }
   });
});

这是来 self 的 Controller 的查询

public function salesResponse(Request $request){
    $query = $request->get('term','');
    $wh2Summaries=Warehouse2StockSummaries::with('product');

    if($request->type == 'product_code'){
        $wh2Summaries->whereHas('product', function ($q) use ($query) {
            $q->where('product_code', 'LIKE', '%' . $query . '%');
        }); 
    }

    $wh2Summaries=$wh2Summaries->get();        
    $data=array();
    foreach ($wh2Summaries as $wh2Summary) {
        $data[]=array(
            'product_code'=>$wh2Summary->product->product_code,
            'name'=>$wh2Summary->product->name,
            'price'=>$wh2Summary->product->selling_price,
            'cost'=>$wh2Summary->product->price,
            'quantity'=>$wh2Summary->qty_in-$wh2Summary->qty_out,
            'id'=>$wh2Summary->product->id
        );
    }

    if(count($data))
        return $data;
    else
        return [
            'product_code'=>''
        ];    
}

整个过程一直在进行,直到我的老板想要添加另一个他称之为“数量范围”的功能,在某个范围内有自己的价格并且该价格应该动态出现在价格字段中,所以假设 1-10 件价格是 100 美元,11-20 的价格将是 200 美元,依此类推...所以我创建了另一个表,我称之为“价格范围”,它为特定产品提供了多个数量范围

然后我在产品和价格范围之间建立关系

产品型号

class Products extends Model
{
    // use SoftDeletes;

    protected $fillable = [
        'product_code',
        'name',
        'categories_id',
        'wh1_limit_warning',
        'wh2_limit_warning',
        'price',
        'selling_price',
        'user_id'
    ];

    // protected $dates = ['deleted_at'];

    public function priceRanges()
    {
        return $this->hasMany('App\Priceranges', 'product_id', 'id');
    }
}

定价范围模型

class Priceranges extends Model
{
    protected $table = 'priceranges';
    protected $fillable = [
        'product_id',
        'qty_from',
        'qty_to',
        'amount',
    ];

    public function products()
    {
        return $this->belongsTo('App\Products', 'id', 'product_id');
    }    
}

从那里我不知道下一步该做什么:(

我要实现的条件是,一旦用户输入数量,检查隐藏字段中的 product_id(由自动完成提供) 在 priceranges 表中可用,如果是,请检查数量属于哪个范围,然后输出金额。

你能帮我用 jQuery 完成这个吗?我对 jQuery 了解不多。非常感谢您!

最佳答案

我认为您应该在模型中修改的第一件事是产品表中的价格,您应该将其删除。这样一来,所有产品的价格都将集中在一个地方:Priceranges 表。因此,您可以将默认的“qty_from”设置为 0,将“qty_to”设置为“nullable ()”。如果“qty_to”为空,则表示价格为“qty_from”和无穷大之间的“X”。

改变那个,让我们转到 Controller 。

public function salesResponse(Request $request){
    $query = $request->get('term','');
    $wh2Summaries=Warehouse2StockSummaries::with('product');

    if($request->type == 'product_code'){
        $wh2Summaries->whereHas('product', function ($q) use ($query) {
            $q->where('product_code', 'LIKE', '%' . $query . '%');
        }); 
    }

    $wh2Summaries=$wh2Summaries->get();        
    $data=array();
    foreach ($wh2Summaries as $wh2Summary) {

        $qty = $wh2Summary->qty_out;

        $price = $wh2Summary->product->priceRanges()
                 ->where('qty_from', '<=', $qty)
                 ->where(function ($q) use($qty){
                     $q->where('qty_to', '>=', $qty)->orWhere('qty_to', null);
                  })->first();
        //in this way, you need every product has their priceRange
        if(isset($price->id)){
            $price = $price->amount; // the price in range chosen 
        }else{ //get the price from original table, if you does not has removed that
            $price = $wh2Summary->product->selling_price;
        }

        $data[]=array(
            'product_code'=>$wh2Summary->product->product_code,
            'name'=>$wh2Summary->product->name,
            'price'=> $price,
            'cost'=>$wh2Summary->product->price,
            'quantity'=>$wh2Summary->qty_in-$wh2Summary->qty_out,
            'id'=>$wh2Summary->product->id
        );
    }

    if(count($data))
        return $data;
    else
        return [
            'product_code'=>''
        ];    
}

这样,您只需要更改 Controller,无需更改您的 JQuery。

希望对你有帮助!

关于php - 创建一个查询,该查询将检查数量是否在数量范围之间,并使用 laravel 中的 jquery 从产品 ID 输出一定数量的基础,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55561848/

有关php - 创建一个查询,该查询将检查数量是否在数量范围之间,并使用 laravel 中的 jquery 从产品 ID 输出一定数量的基础的更多相关文章

  1. ruby - 如何在 Ruby 中顺序创建 PI - 2

    出于纯粹的兴趣,我很好奇如何按顺序创建PI,而不是在过程结果之后生成数字,而是让数字在过程本身生成时显示。如果是这种情况,那么数字可以自行产生,我可以对以前看到的数字实现垃圾收集,从而创建一个无限系列。结果只是在Pi系列之后每秒生成一个数字。这是我通过互联网筛选的结果:这是流行的计算机友好算法,类机器算法:defarccot(x,unity)xpow=unity/xn=1sign=1sum=0loopdoterm=xpow/nbreakifterm==0sum+=sign*(xpow/n)xpow/=x*xn+=2sign=-signendsumenddefcalc_pi(digits

  2. python - 如何使用 Ruby 或 Python 创建一系列高音调和低音调的蜂鸣声? - 2

    关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。

  3. ruby - ECONNRESET (Whois::ConnectionError) - 尝试在 Ruby 中查询 Whois 时出错 - 2

    我正在用Ruby编写一个简单的程序来检查域列表是否被占用。基本上它循环遍历列表,并使用以下函数进行检查。require'rubygems'require'whois'defcheck_domain(domain)c=Whois::Client.newc.query("google.com").available?end程序不断出错(即使我在google.com中进行硬编码),并打印以下消息。鉴于该程序非常简单,我已经没有什么想法了-有什么建议吗?/Library/Ruby/Gems/1.8/gems/whois-2.0.2/lib/whois/server/adapters/base.

  4. ruby - 使用 Vim Rails,您可以创建一个新的迁移文件并一次性打开它吗? - 2

    使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta

  5. ruby-on-rails - Rails - 一个 View 中的多个模型 - 2

    我需要从一个View访问多个模型。以前,我的links_controller仅用于提供以不同方式排序的链接资源。现在我想包括一个部分(我假设)显示按分数排序的顶级用户(@users=User.all.sort_by(&:score))我知道我可以将此代码插入每个链接操作并从View访问它,但这似乎不是“ruby方式”,我将需要在不久的将来访问更多模型。这可能会变得很脏,是否有针对这种情况的任何技术?注意事项:我认为我的应用程序正朝着单一格式和动态页面内容的方向发展,本质上是一个典型的网络应用程序。我知道before_filter但考虑到我希望应用程序进入的方向,这似乎很麻烦。最终从任何

  6. ruby-on-rails - 渲染另一个 Controller 的 View - 2

    我想要做的是有2个不同的Controller,client和test_client。客户端Controller已经构建,我想创建一个test_clientController,我可以使用它来玩弄客户端的UI并根据需要进行调整。我主要是想绕过我在客户端中内置的验证及其对加载数据的管理Controller的依赖。所以我希望test_clientController加载示例数据集,然后呈现客户端Controller的索引View,以便我可以调整客户端UI。就是这样。我在test_clients索引方法中试过这个:classTestClientdefindexrender:template=>

  7. ruby - 检查 "command"的输出应该包含 NilClass 的意外崩溃 - 2

    为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar

  8. ruby-on-rails - 无法使用 Rails 3.2 创建插件? - 2

    我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby​​1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在

  9. ruby - 通过 erb 模板输出 ruby​​ 数组 - 2

    我正在使用puppet为ruby​​程序提供一组常量。我需要提供一组主机名,我的程序将对其进行迭代。在我之前使用的bash脚本中,我只是将它作为一个puppet变量hosts=>"host1,host2"我将其提供给bash脚本作为HOSTS=显然这对ruby​​不太适用——我需要它的格式hosts=["host1","host2"]自从phosts和putsmy_array.inspect提供输出["host1","host2"]我希望使用其中之一。不幸的是,我终其一生都无法弄清楚如何让它发挥作用。我尝试了以下各项:我发现某处他们指出我需要在函数调用前放置“function_”……这

  10. ruby - 如何使用 RSpec::Core::RakeTask 创建 RSpec Rake 任务? - 2

    如何使用RSpec::Core::RakeTask初始化RSpecRake任务?require'rspec/core/rake_task'RSpec::Core::RakeTask.newdo|t|#whatdoIputinhere?endInitialize函数记录在http://rubydoc.info/github/rspec/rspec-core/RSpec/Core/RakeTask#initialize-instance_method没有很好的记录;它只是说:-(RakeTask)initialize(*args,&task_block)AnewinstanceofRake

随机推荐