gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-10-31 23:00:39 25 4
gpt4 key购买 nike

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

enter image description here

它会自动加载放置在隐藏字段中的产品 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 美元,依此类推...所以我创建了另一个表,我称之为“价格范围”,它为特定产品提供了多个数量范围

enter image description here

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

产品型号

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com