|
@@ -257,8 +257,6 @@ class Activity extends Base
|
|
|
$value['stock_total'] = Db::name("good_stock")
|
|
|
->where(['spuCode'=>$value['spuCode'],"is_del"=>0])
|
|
|
->sum("usable_stock");
|
|
|
- $value['good_info_img']=$value['good_info_img'];
|
|
|
- $value['good_img']=$value['good_img'];
|
|
|
$value['orderCode']=$orderCoderArr[$value['spuCode']]??'';
|
|
|
$spec = Db::name("good_spec")->where(["spuCode"=>$value['spuCode'],"is_del"=>0])->select()->toArray();
|
|
|
$speclist=[];
|
|
@@ -282,55 +280,6 @@ class Activity extends Base
|
|
|
return app_show(0,"获取成功",['list'=>$data,'count'=>$count]);
|
|
|
}
|
|
|
|
|
|
- public function SetZixunTax(){
|
|
|
- $param =$this->request->param(["spuCode"=>"","out_tax_id"=>"","out_tax"=>""],"post","trim");
|
|
|
- $valid = Validate::rule( [
|
|
|
- 'spuCode' => 'require',
|
|
|
- 'out_tax_id' => 'require|number|gt:0',
|
|
|
- 'out_tax' => 'require',
|
|
|
- ]);
|
|
|
- if(!$valid->check($param))$this->error($valid->getError());
|
|
|
- $goodinfo = GoodZixun::where(["spuCode"=>$param['spuCode']])->findOrEmpty();
|
|
|
- if($goodinfo->isEmpty()){
|
|
|
- $this->error('商品不存在');
|
|
|
- }
|
|
|
- $catgery=TaxCategory::where(["id"=>$param['out_tax_id']])->findOrEmpty();
|
|
|
- $goodTax = GoodTax::where(["spuCode"=>$param['spuCode']])->findOrEmpty();
|
|
|
- if($goodTax->isEmpty())$this->error("商品进项税目未设置");
|
|
|
- $order= \app\admin\model\Sale::where(["good_code"=>$param['spuCode']])->findOrEmpty();
|
|
|
- Db::startTrans();
|
|
|
- try{
|
|
|
- $goodTax->out_tax_id=$param['out_tax_id'];
|
|
|
- $goodTax->out_tax=$param['out_tax'];
|
|
|
- $goodTax->status=2;
|
|
|
- if($goodTax->save()){
|
|
|
- if(!$order->isEmpty()){
|
|
|
- $orderTax=OrderTax::where(['code'=>$order->orderCode,'spuCode'=>$param['spuCode']])->findOrEmpty();
|
|
|
- $Tax=[
|
|
|
- 'code'=>$order->orderCode,
|
|
|
- 'spuCode'=>$param['spuCode'],
|
|
|
- 'tax_code'=>$catgery->merge_code,
|
|
|
- 'tax_name'=>$catgery->cat_name,
|
|
|
- 'tax_short_name'=>$catgery->short_name,
|
|
|
- 'inv_tax'=>str_replace("%","",$param['out_tax']),
|
|
|
- 'inv_good_name'=>$goodTax->inv_good_name,
|
|
|
- ];
|
|
|
- if($orderTax->isEmpty()){
|
|
|
- OrderTax::create($Tax);
|
|
|
- }else {
|
|
|
- $orderTax->save($Tax);
|
|
|
- }
|
|
|
- $order->save(['updatetime'=>date("Y-m-d H:i:s")]);
|
|
|
- };
|
|
|
- Db::commit();
|
|
|
- } else throw new \Exception("设置失败");
|
|
|
- }catch (\Exception $e){
|
|
|
- Db::rollback();
|
|
|
- $this->error($e->getMessage());
|
|
|
- }
|
|
|
- return app_show(0,"设置成功");
|
|
|
- }
|
|
|
-
|
|
|
//创建活动
|
|
|
public function create(){
|
|
|
$activity_name = isset($this->post['activity_name'])&&$this->post['activity_name']!="" ? trim($this->post['activity_name']):"";
|