补充核销码

This commit is contained in:
liu 2024-07-10 11:20:29 +08:00
parent 6196e08f81
commit daf05f3314

View File

@ -4,6 +4,7 @@ namespace app\admin\lists\user_product_storage_log;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\store_order\StoreOrder;
use app\common\model\user_product_storage_log\UserProductStorageLog;
use app\common\lists\ListsSearchInterface;
use app\common\model\store_product\StoreProduct;
@ -54,6 +55,7 @@ class UserProductStorageLogLists extends BaseAdminDataLists implements ListsSear
$item['system_store_name']=SystemStore::where('id',$item['store_id'])->value('name');
$item['nickname']=$user['real_name']?$user['real_name'].'|'.$item['uid']:$user['nickname'].'|'.$item['uid'];
$item['store_name']=StoreProduct::where('id',$item['product_id'])->value('store_name');
$item['verify_code'] = StoreOrder::where('id',$item['oid'])->withTrashed()->value('verify_code');
if($item['financial_pm']==1){
$item['financial_pm']='增加';
}else{