This commit is contained in:
mkm 2023-11-03 10:01:20 +08:00
parent 53dcf129fa
commit 1b863887ea
4 changed files with 8 additions and 6 deletions

View File

@ -94,7 +94,7 @@ class StoreMicro extends BaseController
// }
$find['attrValue']=[
['image'=>$find['image'],'price'=>$price,'cost'=>$find['cost'],'ot_price'=>$find['ot_price'],
'svip_price'=>$find['svip_price'],'stock'=>$stock,'bar_code'=>$find['bar_code'],'weight'=>0,'volume'=>0,'detail'=>''
'svip_price'=>0,'stock'=>$stock,'bar_code'=>$find['bar_code'],'weight'=>0,'volume'=>0,'detail'=>''
]];
if($mer['type_id']==12){
$product_type=98;
@ -123,6 +123,8 @@ class StoreMicro extends BaseController
$find['spec_type'] = 0;
$find['delivery_free'] = 0;
$find['cate_id'] = $store_category_id;
$find['svip_price_type'] = 0;
$find['svip_price'] =0;
unset($find['create_time'], $find['id']);
}
$a= app()->make( ProductRepository::class)->create($find,$product_type,1);

View File

@ -26,12 +26,12 @@ class ProductCreate
}
//查询市级供应链
$mer = Db::name('merchant')->where('status', 1)->where('mer_state', 1)->where('category_id', $merchant['category_id'])->where('type_id',Merchant::TypeSupplyChain)->value('mer_id');
$mer = Db::name('merchant')->where('status', 1)->where('mer_state', 1)->where('category_id', $merchant['category_id'])->where('type_id',Merchant::TypePlatform)->value('mer_id');
if($mer==null){
return false;
}
$product_id=Db::name('store_product')->where('mer_id',$mer)->where('bar_code', $product['bar_code'])->value('product_id');
if($product_id==null){
if($product_id){
return false;
}
// 根据支持同步到云商的商户进行同步操作

View File

@ -3,7 +3,7 @@
'name' => 'topthink/think',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '6d8207a27b3d637017e628f972c8353bc6645c03',
'reference' => '53dcf129fabc042c56f7ba8ccb2338c5779fd41b',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
@ -952,7 +952,7 @@
'topthink/think' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '6d8207a27b3d637017e628f972c8353bc6645c03',
'reference' => '53dcf129fabc042c56f7ba8ccb2338c5779fd41b',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2023-11-02 14:54:13
// This file is automatically generated at:2023-11-03 09:17:56
declare (strict_types = 1);
return array (
0 => 'think\\queue\\Service',