1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
use Illuminate\Database\Capsule\Manager as DB; use Carbon\Carbon as Carbon;
class ShipmentItem extends BaseModel{ protected $table = "shipment_item";
public function shipment(){ return $this->belongsTo('Shipment'); }
public function shipmentWarehouse(){ return $this->belongsTo('ShipmentWarehouse', 'shipment_warehouse_id'); }
public function order(){ return $this->belongsTo('Order'); }
public function supplier(){ return $this->belongsTo('Supplier'); }
public function orderItem(){ return $this->belongsTo('OrderItem'); }
public function proProduct(){ return $this->belongsTo('ProProduct', 'producct_id', 'id'); }
public function proProductSku(){ return $this->belongsTo('ProProductSku', 'sku_id', 'id'); } }
|